summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrent Baude <bbaude@redhat.com>2020-04-16 12:25:26 -0500
committerBrent Baude <bbaude@redhat.com>2020-04-16 15:53:58 -0500
commit241326a9a8c20ad7f2bcf651416b836e7778e090 (patch)
tree4001e8e47a022bb1b9bfbf2332c42e1aeb802f9e
parent88c6fd06cd54fb9a8826306dfdf1a77e400de5de (diff)
downloadpodman-241326a9a8c20ad7f2bcf651416b836e7778e090.tar.gz
podman-241326a9a8c20ad7f2bcf651416b836e7778e090.tar.bz2
podman-241326a9a8c20ad7f2bcf651416b836e7778e090.zip
Podman V2 birth
remote podman v1 and replace with podman v2. Signed-off-by: Brent Baude <bbaude@redhat.com>
-rw-r--r--.cirrus.yml45
-rw-r--r--.gitignore1
-rw-r--r--Makefile4
-rw-r--r--cmd/podman/README.md128
-rw-r--r--cmd/podman/attach.go56
-rw-r--r--cmd/podman/autoupdate.go56
-rw-r--r--cmd/podman/build.go432
-rw-r--r--cmd/podman/checkpoint.go65
-rw-r--r--cmd/podman/cleanup.go64
-rw-r--r--cmd/podman/cliconfig/commands.go167
-rw-r--r--cmd/podman/cliconfig/config.go717
-rw-r--r--cmd/podman/cliconfig/create.go35
-rw-r--r--cmd/podman/cliconfig/defaults.go14
-rw-r--r--cmd/podman/commands.go196
-rw-r--r--cmd/podman/commands_remoteclient.go135
-rw-r--r--cmd/podman/commit.go82
-rw-r--r--cmd/podman/common.go593
-rw-r--r--cmd/podman/common/create.go (renamed from cmd/podmanV2/common/create.go)2
-rw-r--r--cmd/podman/common/create_opts.go (renamed from cmd/podmanV2/common/create_opts.go)0
-rw-r--r--cmd/podman/common/createparse.go (renamed from cmd/podmanV2/common/createparse.go)2
-rw-r--r--cmd/podman/common/default.go (renamed from cmd/podmanV2/common/default.go)0
-rw-r--r--cmd/podman/common/inspect.go (renamed from cmd/podmanV2/common/inspect.go)0
-rw-r--r--cmd/podman/common/netflags.go (renamed from cmd/podmanV2/common/netflags.go)0
-rw-r--r--cmd/podman/common/ports.go (renamed from cmd/podmanV2/common/ports.go)0
-rw-r--r--cmd/podman/common/specgen.go (renamed from cmd/podmanV2/common/specgen.go)2
-rw-r--r--cmd/podman/common/types.go (renamed from cmd/podmanV2/common/types.go)0
-rw-r--r--cmd/podman/common/util.go (renamed from cmd/podmanV2/common/util.go)0
-rw-r--r--cmd/podman/common_libpod.go66
-rw-r--r--cmd/podman/container.go93
-rw-r--r--cmd/podman/containers/attach.go (renamed from cmd/podmanV2/containers/attach.go)4
-rw-r--r--cmd/podman/containers/checkpoint.go (renamed from cmd/podmanV2/containers/checkpoint.go)6
-rw-r--r--cmd/podman/containers/cleanup.go (renamed from cmd/podmanV2/containers/cleanup.go)6
-rw-r--r--cmd/podman/containers/commit.go (renamed from cmd/podmanV2/containers/commit.go)2
-rw-r--r--cmd/podman/containers/container.go (renamed from cmd/podmanV2/containers/container.go)2
-rw-r--r--cmd/podman/containers/create.go (renamed from cmd/podmanV2/containers/create.go)4
-rw-r--r--cmd/podman/containers/diff.go (renamed from cmd/podmanV2/containers/diff.go)4
-rw-r--r--cmd/podman/containers/exec.go (renamed from cmd/podmanV2/containers/exec.go)4
-rw-r--r--cmd/podman/containers/exists.go (renamed from cmd/podmanV2/containers/exists.go)2
-rw-r--r--cmd/podman/containers/export.go (renamed from cmd/podmanV2/containers/export.go)4
-rw-r--r--cmd/podman/containers/init.go (renamed from cmd/podmanV2/containers/init.go)6
-rw-r--r--cmd/podman/containers/inspect.go (renamed from cmd/podmanV2/containers/inspect.go)4
-rw-r--r--cmd/podman/containers/kill.go (renamed from cmd/podmanV2/containers/kill.go)6
-rw-r--r--cmd/podman/containers/list.go (renamed from cmd/podmanV2/containers/list.go)2
-rw-r--r--cmd/podman/containers/logs.go (renamed from cmd/podmanV2/containers/logs.go)2
-rw-r--r--cmd/podman/containers/mount.go (renamed from cmd/podmanV2/containers/mount.go)6
-rw-r--r--cmd/podman/containers/pause.go (renamed from cmd/podmanV2/containers/pause.go)4
-rw-r--r--cmd/podman/containers/prune.go (renamed from cmd/podmanV2/containers/prune.go)4
-rw-r--r--cmd/podman/containers/ps.go (renamed from cmd/podmanV2/containers/ps.go)2
-rw-r--r--cmd/podman/containers/restart.go (renamed from cmd/podmanV2/containers/restart.go)6
-rw-r--r--cmd/podman/containers/restore.go (renamed from cmd/podmanV2/containers/restore.go)6
-rw-r--r--cmd/podman/containers/rm.go (renamed from cmd/podmanV2/containers/rm.go)6
-rw-r--r--cmd/podman/containers/run.go (renamed from cmd/podmanV2/containers/run.go)4
-rw-r--r--cmd/podman/containers/start.go (renamed from cmd/podmanV2/containers/start.go)6
-rw-r--r--cmd/podman/containers/stop.go (renamed from cmd/podmanV2/containers/stop.go)6
-rw-r--r--cmd/podman/containers/top.go (renamed from cmd/podmanV2/containers/top.go)2
-rw-r--r--cmd/podman/containers/unmount.go (renamed from cmd/podmanV2/containers/unmount.go)6
-rw-r--r--cmd/podman/containers/unpause.go (renamed from cmd/podmanV2/containers/unpause.go)4
-rw-r--r--cmd/podman/containers/utils.go (renamed from cmd/podmanV2/containers/utils.go)0
-rw-r--r--cmd/podman/containers/wait.go (renamed from cmd/podmanV2/containers/wait.go)4
-rw-r--r--cmd/podman/containers_prune.go86
-rw-r--r--cmd/podman/cp.go490
-rw-r--r--cmd/podman/create.go100
-rw-r--r--cmd/podman/diff.go154
-rw-r--r--cmd/podman/errors.go39
-rw-r--r--cmd/podman/errors_remote.go65
-rw-r--r--cmd/podman/events.go50
-rw-r--r--cmd/podman/exec.go75
-rw-r--r--cmd/podman/exists.go142
-rw-r--r--cmd/podman/export.go75
-rw-r--r--cmd/podman/generate.go32
-rw-r--r--cmd/podman/generate_kube.go110
-rw-r--r--cmd/podman/generate_systemd.go65
-rw-r--r--cmd/podman/healthcheck.go27
-rw-r--r--cmd/podman/healthcheck/healthcheck.go (renamed from cmd/podmanV2/healthcheck/healthcheck.go)2
-rw-r--r--cmd/podman/healthcheck/run.go (renamed from cmd/podmanV2/healthcheck/run.go)2
-rw-r--r--cmd/podman/healthcheck_run.go52
-rw-r--r--cmd/podman/history.go199
-rw-r--r--cmd/podman/image.go94
-rw-r--r--cmd/podman/images.go405
-rw-r--r--cmd/podman/images/diff.go (renamed from cmd/podmanV2/images/diff.go)4
-rw-r--r--cmd/podman/images/exists.go (renamed from cmd/podmanV2/images/exists.go)2
-rw-r--r--cmd/podman/images/history.go (renamed from cmd/podmanV2/images/history.go)2
-rw-r--r--cmd/podman/images/image.go (renamed from cmd/podmanV2/images/image.go)2
-rw-r--r--cmd/podman/images/images.go (renamed from cmd/podmanV2/images/images.go)2
-rw-r--r--cmd/podman/images/import.go (renamed from cmd/podmanV2/images/import.go)4
-rw-r--r--cmd/podman/images/inspect.go (renamed from cmd/podmanV2/images/inspect.go)4
-rw-r--r--cmd/podman/images/list.go (renamed from cmd/podmanV2/images/list.go)2
-rw-r--r--cmd/podman/images/load.go (renamed from cmd/podmanV2/images/load.go)4
-rw-r--r--cmd/podman/images/prune.go (renamed from cmd/podmanV2/images/prune.go)2
-rw-r--r--cmd/podman/images/pull.go (renamed from cmd/podmanV2/images/pull.go)2
-rw-r--r--cmd/podman/images/push.go (renamed from cmd/podmanV2/images/push.go)2
-rw-r--r--cmd/podman/images/rm.go (renamed from cmd/podmanV2/images/rm.go)2
-rw-r--r--cmd/podman/images/rmi.go (renamed from cmd/podmanV2/images/rmi.go)2
-rw-r--r--cmd/podman/images/save.go (renamed from cmd/podmanV2/images/save.go)4
-rw-r--r--cmd/podman/images/search.go (renamed from cmd/podmanV2/images/search.go)2
-rw-r--r--cmd/podman/images/tag.go (renamed from cmd/podmanV2/images/tag.go)2
-rw-r--r--cmd/podman/images/untag.go (renamed from cmd/podmanV2/images/untag.go)2
-rw-r--r--cmd/podman/images_prune.go73
-rw-r--r--cmd/podman/import.go88
-rw-r--r--cmd/podman/info.go146
-rw-r--r--cmd/podman/init.go64
-rw-r--r--cmd/podman/inspect.go204
-rw-r--r--cmd/podman/kill.go73
-rw-r--r--cmd/podman/libpodruntime/runtime.go216
-rw-r--r--cmd/podman/load.go110
-rw-r--r--cmd/podman/login.go210
-rw-r--r--cmd/podman/logout.go104
-rw-r--r--cmd/podman/logs.go93
-rw-r--r--cmd/podman/main.go198
-rw-r--r--cmd/podman/main_local.go294
-rw-r--r--cmd/podman/main_local_unsupported.go44
-rw-r--r--cmd/podman/main_remote.go74
-rw-r--r--cmd/podman/main_remote_supported.go57
-rw-r--r--cmd/podman/main_remote_windows.go7
-rw-r--r--cmd/podman/mount.go165
-rw-r--r--cmd/podman/network.go31
-rw-r--r--cmd/podman/network_create.go83
-rw-r--r--cmd/podman/network_inspect.go48
-rw-r--r--cmd/podman/network_list.go54
-rw-r--r--cmd/podman/network_rm.go62
-rw-r--r--cmd/podman/networks/network.go (renamed from cmd/podmanV2/networks/network.go)2
-rw-r--r--cmd/podman/parse/common.go (renamed from cmd/podmanV2/parse/common.go)0
-rw-r--r--cmd/podman/parse/net.go (renamed from cmd/podmanV2/parse/net.go)0
-rw-r--r--cmd/podman/parse/net_test.go (renamed from cmd/podmanV2/parse/net_test.go)0
-rw-r--r--cmd/podman/pause.go70
-rw-r--r--cmd/podman/platform_linux.go29
-rw-r--r--cmd/podman/platform_unsupported.go6
-rw-r--r--cmd/podman/play.go24
-rw-r--r--cmd/podman/play_kube.go81
-rw-r--r--cmd/podman/pod.go42
-rw-r--r--cmd/podman/pod_create.go111
-rw-r--r--cmd/podman/pod_inspect.go80
-rw-r--r--cmd/podman/pod_kill.go86
-rw-r--r--cmd/podman/pod_pause.go77
-rw-r--r--cmd/podman/pod_ps.go462
-rw-r--r--cmd/podman/pod_restart.go78
-rw-r--r--cmd/podman/pod_rm.go74
-rw-r--r--cmd/podman/pod_start.go70
-rw-r--r--cmd/podman/pod_stats.go286
-rw-r--r--cmd/podman/pod_stop.go75
-rw-r--r--cmd/podman/pod_top.go92
-rw-r--r--cmd/podman/pod_unpause.go77
-rw-r--r--cmd/podman/pods/create.go (renamed from cmd/podmanV2/pods/create.go)6
-rw-r--r--cmd/podman/pods/exists.go (renamed from cmd/podmanV2/pods/exists.go)2
-rw-r--r--cmd/podman/pods/inspect.go (renamed from cmd/podmanV2/pods/inspect.go)2
-rw-r--r--cmd/podman/pods/kill.go (renamed from cmd/podmanV2/pods/kill.go)6
-rw-r--r--cmd/podman/pods/pause.go (renamed from cmd/podmanV2/pods/pause.go)6
-rw-r--r--cmd/podman/pods/pod.go (renamed from cmd/podmanV2/pods/pod.go)2
-rw-r--r--cmd/podman/pods/ps.go (renamed from cmd/podmanV2/pods/ps.go)2
-rw-r--r--cmd/podman/pods/restart.go (renamed from cmd/podmanV2/pods/restart.go)6
-rw-r--r--cmd/podman/pods/rm.go (renamed from cmd/podmanV2/pods/rm.go)6
-rw-r--r--cmd/podman/pods/start.go (renamed from cmd/podmanV2/pods/start.go)6
-rw-r--r--cmd/podman/pods/stop.go (renamed from cmd/podmanV2/pods/stop.go)6
-rw-r--r--cmd/podman/pods/top.go (renamed from cmd/podmanV2/pods/top.go)2
-rw-r--r--cmd/podman/pods/unpause.go (renamed from cmd/podmanV2/pods/unpause.go)6
-rw-r--r--cmd/podman/pods_prune.go50
-rw-r--r--cmd/podman/port.go135
-rw-r--r--cmd/podman/ps.go410
-rw-r--r--cmd/podman/pull.go200
-rw-r--r--cmd/podman/push.go155
-rw-r--r--cmd/podman/refresh.go65
-rw-r--r--cmd/podman/registry/config.go (renamed from cmd/podmanV2/registry/config.go)0
-rw-r--r--cmd/podman/registry/registry.go (renamed from cmd/podmanV2/registry/registry.go)0
-rw-r--r--cmd/podman/registry/remote.go (renamed from cmd/podmanV2/registry/remote.go)0
-rw-r--r--cmd/podman/remoteclientconfig/config.go24
-rw-r--r--cmd/podman/remoteclientconfig/config_darwin.go12
-rw-r--r--cmd/podman/remoteclientconfig/config_linux.go17
-rw-r--r--cmd/podman/remoteclientconfig/config_windows.go12
-rw-r--r--cmd/podman/remoteclientconfig/configfile.go64
-rw-r--r--cmd/podman/remoteclientconfig/configfile_test.go212
-rw-r--r--cmd/podman/remoteclientconfig/errors.go14
-rw-r--r--cmd/podman/report/diff.go (renamed from cmd/podmanV2/report/diff.go)0
-rw-r--r--cmd/podman/reset.go71
-rw-r--r--cmd/podman/restart.go77
-rw-r--r--cmd/podman/restore.go96
-rw-r--r--cmd/podman/rm.go90
-rw-r--r--cmd/podman/rmi.go156
-rw-r--r--cmd/podman/root.go (renamed from cmd/podmanV2/root.go)2
-rw-r--r--cmd/podman/run.go78
-rw-r--r--cmd/podman/runlabel.go224
-rw-r--r--cmd/podman/save.go94
-rw-r--r--cmd/podman/search.go125
-rw-r--r--cmd/podman/service.go190
-rw-r--r--cmd/podman/service_dummy.go12
-rw-r--r--cmd/podman/shared/create_cli.go192
-rw-r--r--cmd/podman/shared/create_cli_test.go19
-rw-r--r--cmd/podman/shared/funcs_linux_test.go119
-rw-r--r--cmd/podman/shared/funcs_test.go53
-rw-r--r--cmd/podman/shared/intermediate.go479
-rw-r--r--cmd/podman/shared/intermediate_novarlink.go70
-rw-r--r--cmd/podman/shared/parallel.go112
-rw-r--r--cmd/podman/shared/parse/parse.go188
-rw-r--r--cmd/podman/shared/parse/parse_test.go152
-rw-r--r--cmd/podman/shared/pod.go279
-rw-r--r--cmd/podman/shared/volumes_shared.go109
-rw-r--r--cmd/podman/shared/workers.go138
-rw-r--r--cmd/podman/sign.go226
-rw-r--r--cmd/podman/start.go78
-rw-r--r--cmd/podman/stats.go305
-rw-r--r--cmd/podman/stop.go71
-rw-r--r--cmd/podman/system.go31
-rw-r--r--cmd/podman/system/events.go (renamed from cmd/podmanV2/system/events.go)2
-rw-r--r--cmd/podman/system/info.go (renamed from cmd/podmanV2/system/info.go)2
-rw-r--r--cmd/podman/system/service.go (renamed from cmd/podmanV2/system/service.go)2
-rw-r--r--cmd/podman/system/system.go (renamed from cmd/podmanV2/system/system.go)2
-rw-r--r--cmd/podman/system/varlink.go (renamed from cmd/podmanV2/system/varlink.go)2
-rw-r--r--cmd/podman/system/version.go (renamed from cmd/podmanV2/system/version.go)2
-rw-r--r--cmd/podman/system_df.go650
-rw-r--r--cmd/podman/system_migrate.go52
-rw-r--r--cmd/podman/system_prune.go134
-rw-r--r--cmd/podman/system_renumber.go50
-rw-r--r--cmd/podman/tag.go58
-rw-r--r--cmd/podman/top.go99
-rw-r--r--cmd/podman/tree.go57
-rw-r--r--cmd/podman/trust.go25
-rw-r--r--cmd/podman/trust_set_show.go339
-rw-r--r--cmd/podman/umount.go62
-rw-r--r--cmd/podman/unpause.go69
-rw-r--r--cmd/podman/unshare.go75
-rw-r--r--cmd/podman/untag.go67
-rw-r--r--cmd/podman/utils.go90
-rw-r--r--cmd/podman/utils/alias.go (renamed from cmd/podmanV2/utils/alias.go)0
-rw-r--r--cmd/podman/utils/error.go (renamed from cmd/podmanV2/utils/error.go)0
-rw-r--r--cmd/podman/varlink.go119
-rw-r--r--cmd/podman/varlink_dummy.go12
-rw-r--r--cmd/podman/version.go129
-rw-r--r--cmd/podman/volume.go30
-rw-r--r--cmd/podman/volume_create.go69
-rw-r--r--cmd/podman/volume_inspect.go79
-rw-r--r--cmd/podman/volume_ls.go293
-rw-r--r--cmd/podman/volume_prune.go86
-rw-r--r--cmd/podman/volume_rm.go58
-rw-r--r--cmd/podman/volumes/create.go (renamed from cmd/podmanV2/volumes/create.go)4
-rw-r--r--cmd/podman/volumes/inspect.go (renamed from cmd/podmanV2/volumes/inspect.go)2
-rw-r--r--cmd/podman/volumes/list.go (renamed from cmd/podmanV2/volumes/list.go)2
-rw-r--r--cmd/podman/volumes/prune.go (renamed from cmd/podmanV2/volumes/prune.go)4
-rw-r--r--cmd/podman/volumes/rm.go (renamed from cmd/podmanV2/volumes/rm.go)4
-rw-r--r--cmd/podman/volumes/volume.go (renamed from cmd/podmanV2/volumes/volume.go)2
-rw-r--r--cmd/podman/wait.go65
-rw-r--r--cmd/podmanV2/Makefile12
-rw-r--r--cmd/podmanV2/README.md113
-rw-r--r--cmd/podmanV2/diff.go61
-rw-r--r--cmd/podmanV2/inspect.go52
-rw-r--r--cmd/podmanV2/main.go50
-rw-r--r--go.mod1
-rw-r--r--pkg/adapter/autoupdate.go11
-rw-r--r--pkg/adapter/autoupdate_remote.go11
-rw-r--r--pkg/adapter/client.go115
-rw-r--r--pkg/adapter/client_config.go39
-rw-r--r--pkg/adapter/client_unix.go27
-rw-r--r--pkg/adapter/client_windows.go26
-rw-r--r--pkg/adapter/containers.go1394
-rw-r--r--pkg/adapter/containers_remote.go1139
-rw-r--r--pkg/adapter/errors.go31
-rw-r--r--pkg/adapter/images_remote.go24
-rw-r--r--pkg/adapter/info_remote.go64
-rw-r--r--pkg/adapter/network.go277
-rw-r--r--pkg/adapter/pods.go1065
-rw-r--r--pkg/adapter/pods_remote.go576
-rw-r--r--pkg/adapter/reset.go13
-rw-r--r--pkg/adapter/reset_remote.go12
-rw-r--r--pkg/adapter/runtime.go477
-rw-r--r--pkg/adapter/runtime_remote.go1108
-rw-r--r--pkg/adapter/runtime_remote_supported.go1
-rw-r--r--pkg/adapter/sigproxy_linux.go45
-rw-r--r--pkg/adapter/terminal.go101
-rw-r--r--pkg/adapter/terminal_linux.go121
-rw-r--r--pkg/adapter/terminal_unsupported.go23
-rw-r--r--pkg/adapter/volumes_remote.go33
-rw-r--r--pkg/api/handlers/utils/containers.go3
-rw-r--r--pkg/domain/infra/runtime_image_proxy.go2
-rw-r--r--pkg/domain/infra/runtime_proxy.go2
-rw-r--r--pkg/spec/createconfig.go18
-rw-r--r--pkg/varlinkapi/container.go (renamed from cmd/podman/shared/container.go)43
-rw-r--r--pkg/varlinkapi/containers.go24
-rw-r--r--pkg/varlinkapi/containers_create.go5
-rw-r--r--pkg/varlinkapi/create.go (renamed from cmd/podman/shared/create.go)177
-rw-r--r--pkg/varlinkapi/funcs.go (renamed from cmd/podman/shared/funcs.go)2
-rw-r--r--pkg/varlinkapi/generate.go3
-rw-r--r--pkg/varlinkapi/images.go5
-rw-r--r--pkg/varlinkapi/intermediate.go289
-rw-r--r--pkg/varlinkapi/intermediate_varlink.go (renamed from cmd/podman/shared/intermediate_varlink.go)37
-rw-r--r--pkg/varlinkapi/pods.go56
-rw-r--r--pkg/varlinkapi/shortcuts.go (renamed from pkg/adapter/shortcuts/shortcuts.go)10
-rw-r--r--pkg/varlinkapi/util.go17
-rw-r--r--pkg/varlinkapi/volumes.go47
286 files changed, 1054 insertions, 24478 deletions
diff --git a/.cirrus.yml b/.cirrus.yml
index 01cecd5a8..d8b0a3bf9 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -134,11 +134,14 @@ gating_task:
# not break. It also verifies all sub-commands have man pages.
build_script:
- '/usr/local/bin/entrypoint.sh podman |& ${TIMESTAMP}'
- - 'cd $GOSRC && ./hack/podman-commands.sh |& ${TIMESTAMP}'
+ # FIXME
+ #- 'cd $GOSRC && ./hack/podman-commands.sh |& ${TIMESTAMP}'
# N/B: need 'clean' so some committed files are re-generated.
- - '/usr/local/bin/entrypoint.sh clean podman-remote |& ${TIMESTAMP}'
- - '/usr/local/bin/entrypoint.sh clean podman xref_helpmsgs_manpages BUILDTAGS="exclude_graphdriver_devicemapper selinux seccomp" |& ${TIMESTAMP}'
- - '/usr/local/bin/entrypoint.sh local-cross |& ${TIMESTAMP}'
+ # FIXME
+ #- '/usr/local/bin/entrypoint.sh clean podman-remote |& ${TIMESTAMP}'
+ #- '/usr/local/bin/entrypoint.sh clean podman xref_helpmsgs_manpages BUILDTAGS="exclude_graphdriver_devicemapper selinux seccomp" |& ${TIMESTAMP}'
+ # FIXME
+ #- '/usr/local/bin/entrypoint.sh local-cross |& ${TIMESTAMP}'
# Verify some aspects of ci/related scripts
ci_script:
@@ -157,6 +160,7 @@ gating_task:
# source code using contrib/rpm/podman.spec.in
rpmbuild_task:
+ skip: $CI == 'true'
only_if: >-
$CIRRUS_CHANGE_MESSAGE !=~ '.*CI:IMG.*' &&
$CIRRUS_CHANGE_MESSAGE !=~ '.*CI:DOCS.*' &&
@@ -217,6 +221,7 @@ vendor_task:
# whether the git tree is clean.
varlink_api_task:
+ skip: $CI == 'true'
only_if: >-
$CIRRUS_CHANGE_MESSAGE !=~ '.*CI:IMG.*' &&
$CIRRUS_CHANGE_MESSAGE !=~ '.*CI:DOCS.*'
@@ -282,6 +287,8 @@ build_each_commit_task:
build_without_cgo_task:
+ skip: $CI == 'true'
+
depends_on:
- "gating"
- "vendor"
@@ -374,6 +381,8 @@ image_prune_task:
# This task does the unit and integration testing for every platform
testing_task:
+
+ skip: $CI == 'true'
alias: "testing"
depends_on:
- "gating"
@@ -391,23 +400,26 @@ testing_task:
- name: "test ${FEDORA_NAME}"
gce_instance:
image_name: "${FEDORA_CACHE_IMAGE_NAME}"
- - name: "test ${PRIOR_FEDORA_NAME}"
- gce_instance:
- image_name: "${PRIOR_FEDORA_CACHE_IMAGE_NAME}"
+ # FIXME
+ #- name: "test ${PRIOR_FEDORA_NAME}"
+ # gce_instance:
+ # image_name: "${PRIOR_FEDORA_CACHE_IMAGE_NAME}"
# Multiple test failures on Ubuntu 19 - Fixes TBD in future PR
# TODO: image_name: "${UBUNTU_CACHE_IMAGE_NAME}"
- - name: "test ${PRIOR_UBUNTU_NAME}"
- gce_instance:
- image_name: "${PRIOR_UBUNTU_CACHE_IMAGE_NAME}"
+ # FIXME
+ #- name: "test ${PRIOR_UBUNTU_NAME}"
+ # gce_instance:
+ # image_name: "${PRIOR_UBUNTU_CACHE_IMAGE_NAME}"
timeout_in: 120m
env:
ADD_SECOND_PARTITION: 'true'
matrix:
- - name: remote
- env:
- TEST_REMOTE_CLIENT: 'true'
+ # FIXME
+ #- name: remote
+ # env:
+ # TEST_REMOTE_CLIENT: 'true'
- name: local
env:
TEST_REMOTE_CLIENT: 'false'
@@ -443,6 +455,7 @@ testing_task:
# This task executes tests under unique environments/conditions
special_testing_rootless_task:
+ skip: $CI == 'true'
depends_on:
- "gating"
- "varlink_api"
@@ -481,6 +494,8 @@ special_testing_rootless_task:
special_testing_in_podman_task:
+
+ skip: $CI == 'true'
alias: "special_testing_in_podman"
depends_on:
- "gating"
@@ -524,6 +539,8 @@ special_testing_in_podman_task:
special_testing_cross_task:
+
+ skip: $CI == 'true'
alias: "special_testing_cross"
depends_on:
- "gating"
@@ -563,6 +580,7 @@ special_testing_cross_task:
special_testing_bindings_task:
+ skip: $CI == 'true'
depends_on:
- "gating"
- "varlink_api"
@@ -589,6 +607,7 @@ special_testing_bindings_task:
special_testing_endpoint_task:
+ skip: $CI == 'true'
depends_on:
- "gating"
- "varlink_api"
diff --git a/.gitignore b/.gitignore
index 37950a448..d5d1206b5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -30,4 +30,3 @@ podman*.tar.gz
contrib/spec/podman.spec
*.rpm
*.coverprofile
-/cmd/podmanV2/podmanV2*
diff --git a/Makefile b/Makefile
index e22d74f5d..5b6bcc42f 100644
--- a/Makefile
+++ b/Makefile
@@ -182,14 +182,14 @@ ifeq (,$(findstring systemd,$(BUILDTAGS)))
@echo "Podman is being compiled without the systemd build tag. Install libsystemd on \
Ubuntu or systemd-devel on rpm based distro for journald support."
endif
- $(GO_BUILD) $(BUILDFLAGS) -gcflags '$(GCFLAGS)' -asmflags '$(ASMFLAGS)' -ldflags '$(LDFLAGS_PODMAN)' -tags "$(BUILDTAGS)" -o $@ $(PROJECT)/cmd/podman
+ $(GO_BUILD) $(BUILDFLAGS) -gcflags '$(GCFLAGS)' -asmflags '$(ASMFLAGS)' -ldflags '$(LDFLAGS_PODMAN)' -tags "ABISupport $(BUILDTAGS)" -o $@ $(PROJECT)/cmd/podman
.PHONY: podman
podman: bin/podman
.PHONY: bin/podman-remote
bin/podman-remote: .gopathok $(SOURCES) go.mod go.sum $(PODMAN_VARLINK_DEPENDENCIES) ## Build with podman on remote environment
- $(GO_BUILD) $(BUILDFLAGS) -gcflags '$(GCFLAGS)' -asmflags '$(ASMFLAGS)' -ldflags '$(LDFLAGS_PODMAN)' -tags "$(BUILDTAGS) remoteclient" -o $@ $(PROJECT)/cmd/podman
+ $(GO_BUILD) $(BUILDFLAGS) -gcflags '$(GCFLAGS)' -asmflags '$(ASMFLAGS)' -ldflags '$(LDFLAGS_PODMAN)' -tags "!ABISupport $(BUILDTAGS) remoteclient" -o $@ $(PROJECT)/cmd/podman
.PHONY: podman-remote
podman-remote: bin/podman-remote
diff --git a/cmd/podman/README.md b/cmd/podman/README.md
index 937eef510..c1b8f48a7 100644
--- a/cmd/podman/README.md
+++ b/cmd/podman/README.md
@@ -1,15 +1,113 @@
-# Podman - Simple debugging tool for pods and images
-Podman is a daemonless container runtime for managing containers, pods, and container images.
-It is intended as a counterpart to CRI-O, to provide low-level debugging not available through the CRI interface used by Kubernetes.
-It can also act as a container runtime independent of CRI-O, creating and managing its own set of containers.
-
-## Use cases
-1. Create containers
-2. Start, stop, signal, attach to, and inspect existing containers
-3. Run new commands in existing containers
-4. Push and pull images
-5. List and inspect existing images
-6. Create new images by committing changes within a container
-7. Create pods
-8. Start, stop, signal, and inspect existing pods
-9. Populate pods with containers
+# Adding a podman V2 commands
+
+## Build podman V2
+
+```shell script
+$ cd $GOPATH/src/github.com/containers/libpod/cmd/podmanV2
+```
+If you wish to include the libpod library in your program,
+```shell script
+$ go build -tags 'ABISupport' .
+```
+The `--remote` flag may be used to connect to the Podman service using the API.
+Otherwise, direct calls will be made to the Libpod library.
+```shell script
+$ go build -tags '!ABISupport' .
+```
+The Libpod library is not linked into the executable.
+All calls are made via the API and `--remote=False` is an error condition.
+
+## Adding a new command `podman manifests`
+```shell script
+$ mkdir -p $GOPATH/src/github.com/containers/libpod/cmd/podmanV2/manifests
+```
+Create the file ```$GOPATH/src/github.com/containers/libpod/cmd/podmanV2/manifests/manifest.go```
+```go
+package manifests
+
+import (
+ "github.com/containers/libpod/cmd/podman/registry"
+ "github.com/containers/libpod/pkg/domain/entities"
+ "github.com/spf13/cobra"
+)
+
+var (
+ // podman _manifests_
+ manifestCmd = &cobra.Command{
+ Use: "manifest",
+ Short: "Manage manifests",
+ Long: "Manage manifests",
+ Example: "podman manifests IMAGE",
+ TraverseChildren: true,
+ PersistentPreRunE: preRunE,
+ RunE: registry.SubCommandExists, // Report error if there is no sub command given
+ }
+)
+func init() {
+ // Subscribe command to podman
+ registry.Commands = append(registry.Commands, registry.CliCommand{
+ // _podman manifest_ will support both ABIMode and TunnelMode
+ Mode: []entities.EngineMode{entities.ABIMode, entities.TunnelMode},
+ // The definition for this command
+ Command: manifestCmd,
+ })
+ // Setup cobra templates, sub commands will inherit
+ manifestCmd.SetHelpTemplate(registry.HelpTemplate())
+ manifestCmd.SetUsageTemplate(registry.UsageTemplate())
+}
+
+// preRunE populates the image engine for sub commands
+func preRunE(cmd *cobra.Command, args []string) error {
+ _, err := registry.NewImageEngine(cmd, args)
+ return err
+}
+```
+To "wire" in the `manifest` command, edit the file ```$GOPATH/src/github.com/containers/libpod/cmd/podmanV2/main.go``` to add:
+```go
+package main
+
+import _ "github.com/containers/libpod/cmd/podman/manifests"
+```
+
+## Adding a new sub command `podman manifests list`
+Create the file ```$GOPATH/src/github.com/containers/libpod/cmd/podmanV2/manifests/inspect.go```
+```go
+package manifests
+
+import (
+ "github.com/containers/libpod/cmd/podman/registry"
+ "github.com/containers/libpod/pkg/domain/entities"
+ "github.com/spf13/cobra"
+)
+
+var (
+ // podman manifests _inspect_
+ inspectCmd = &cobra.Command{
+ Use: "inspect IMAGE",
+ Short: "Display manifest from image",
+ Long: "Displays the low-level information on a manifest identified by image name or ID",
+ RunE: inspect,
+ Example: "podman manifest DEADBEEF",
+ }
+)
+
+func init() {
+ // Subscribe inspect sub command to manifest command
+ registry.Commands = append(registry.Commands, registry.CliCommand{
+ // _podman manifest inspect_ will support both ABIMode and TunnelMode
+ Mode: []entities.EngineMode{entities.ABIMode, entities.TunnelMode},
+ // The definition for this command
+ Command: inspectCmd,
+ Parent: manifestCmd,
+ })
+
+ // This is where you would configure the cobra flags using inspectCmd.Flags()
+}
+
+// Business logic: cmd is inspectCmd, args is the positional arguments from os.Args
+func inspect(cmd *cobra.Command, args []string) error {
+ // Business logic using registry.ImageEngine
+ // Do not pull from libpod directly use the domain objects and types
+ return nil
+}
+```
diff --git a/cmd/podman/attach.go b/cmd/podman/attach.go
deleted file mode 100644
index 6f08cc396..000000000
--- a/cmd/podman/attach.go
+++ /dev/null
@@ -1,56 +0,0 @@
-package main
-
-import (
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- attachCommand cliconfig.AttachValues
- attachDescription = "The podman attach command allows you to attach to a running container using the container's ID or name, either to view its ongoing output or to control it interactively."
- _attachCommand = &cobra.Command{
- Use: "attach [flags] CONTAINER",
- Short: "Attach to a running container",
- Long: attachDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- attachCommand.InputArgs = args
- attachCommand.GlobalFlags = MainGlobalOpts
- attachCommand.Remote = remoteclient
- return attachCmd(&attachCommand)
- },
- Example: `podman attach ctrID
- podman attach 1234
- podman attach --no-stdin foobar`,
- }
-)
-
-func init() {
- attachCommand.Command = _attachCommand
- attachCommand.SetHelpTemplate(HelpTemplate())
- attachCommand.SetUsageTemplate(UsageTemplate())
- flags := attachCommand.Flags()
- flags.StringVar(&attachCommand.DetachKeys, "detach-keys", getDefaultDetachKeys(), "Select the key sequence for detaching a container. Format is a single character `[a-Z]` or a comma separated sequence of `ctrl-<value>`, where `<value>` is one of: `a-z`, `@`, `^`, `[`, `\\`, `]`, `^` or `_`")
- flags.BoolVar(&attachCommand.NoStdin, "no-stdin", false, "Do not attach STDIN. The default is false")
- flags.BoolVar(&attachCommand.SigProxy, "sig-proxy", true, "Proxy received signals to the process")
- flags.BoolVarP(&attachCommand.Latest, "latest", "l", false, "Act on the latest container podman is aware of")
- markFlagHiddenForRemoteClient("latest", flags)
- // TODO allow for passing of a new detach keys
- markFlagHiddenForRemoteClient("detach-keys", flags)
-}
-
-func attachCmd(c *cliconfig.AttachValues) error {
- if len(c.InputArgs) > 1 || (len(c.InputArgs) == 0 && !c.Latest) {
- return errors.Errorf("attach requires the name or id of one running container or the latest flag")
- }
- if remoteclient && len(c.InputArgs) != 1 {
- return errors.Errorf("attach requires the name or id of one running container")
- }
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "error creating runtime")
- }
- defer runtime.DeferredShutdown(false)
- return runtime.Attach(getContext(), c)
-}
diff --git a/cmd/podman/autoupdate.go b/cmd/podman/autoupdate.go
deleted file mode 100644
index 2cc1ae72e..000000000
--- a/cmd/podman/autoupdate.go
+++ /dev/null
@@ -1,56 +0,0 @@
-package main
-
-import (
- "fmt"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- autoUpdateCommand cliconfig.AutoUpdateValues
- autoUpdateDescription = `Auto update containers according to their auto-update policy.
-
-Auto-update policies are specified with the "io.containers.autoupdate" label.`
- _autoUpdateCommand = &cobra.Command{
- Use: "auto-update [flags]",
- Short: "Auto update containers according to their auto-update policy",
- Args: noSubArgs,
- Long: autoUpdateDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- restartCommand.InputArgs = args
- restartCommand.GlobalFlags = MainGlobalOpts
- return autoUpdateCmd(&restartCommand)
- },
- Example: `podman auto-update`,
- }
-)
-
-func init() {
- autoUpdateCommand.Command = _autoUpdateCommand
- autoUpdateCommand.SetHelpTemplate(HelpTemplate())
- autoUpdateCommand.SetUsageTemplate(UsageTemplate())
-}
-
-func autoUpdateCmd(c *cliconfig.RestartValues) error {
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "error creating libpod runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- units, failures := runtime.AutoUpdate()
- for _, unit := range units {
- fmt.Println(unit)
- }
- var finalErr error
- if len(failures) > 0 {
- finalErr = failures[0]
- for _, e := range failures[1:] {
- finalErr = errors.Errorf("%v\n%v", finalErr, e)
- }
- }
- return finalErr
-}
diff --git a/cmd/podman/build.go b/cmd/podman/build.go
deleted file mode 100644
index 04bc56ab0..000000000
--- a/cmd/podman/build.go
+++ /dev/null
@@ -1,432 +0,0 @@
-package main
-
-import (
- "fmt"
- "os"
- "path/filepath"
- "strings"
-
- "github.com/containers/buildah"
- "github.com/containers/buildah/imagebuildah"
- buildahcli "github.com/containers/buildah/pkg/cli"
- "github.com/containers/buildah/pkg/parse"
- "github.com/containers/common/pkg/config"
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/docker/go-units"
- "github.com/opencontainers/runtime-spec/specs-go"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- "github.com/spf13/cobra"
- "github.com/spf13/pflag"
-)
-
-var (
- buildCommand cliconfig.BuildValues
- buildDescription = "Builds an OCI or Docker image using instructions from one or more Containerfiles and a specified build context directory."
- layerValues buildahcli.LayerResults
- budFlagsValues buildahcli.BudResults
- fromAndBudValues buildahcli.FromAndBudResults
- userNSValues buildahcli.UserNSResults
- namespaceValues buildahcli.NameSpaceResults
- podBuildValues cliconfig.PodmanBuildResults
-
- _buildCommand = &cobra.Command{
- Use: "build [flags] CONTEXT",
- Short: "Build an image using instructions from Containerfiles",
- Long: buildDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- buildCommand.InputArgs = args
- buildCommand.GlobalFlags = MainGlobalOpts
- buildCommand.BudResults = &budFlagsValues
- buildCommand.UserNSResults = &userNSValues
- buildCommand.FromAndBudResults = &fromAndBudValues
- buildCommand.LayerResults = &layerValues
- buildCommand.NameSpaceResults = &namespaceValues
- buildCommand.PodmanBuildResults = &podBuildValues
- buildCommand.Remote = remoteclient
- return buildCmd(&buildCommand)
- },
- Example: `podman build .
- podman build --creds=username:password -t imageName -f Containerfile.simple .
- podman build --layers --force-rm --tag imageName .`,
- }
-)
-
-func initBuild() {
- buildCommand.Command = _buildCommand
- buildCommand.SetHelpTemplate(HelpTemplate())
- buildCommand.SetUsageTemplate(UsageTemplate())
- flags := buildCommand.Flags()
- flags.SetInterspersed(true)
- budFlags := buildahcli.GetBudFlags(&budFlagsValues)
- flag := budFlags.Lookup("pull")
- if err := flag.Value.Set("true"); err != nil {
- logrus.Error("unable to set pull flag to true")
- }
- flag.DefValue = "true"
- layerFlags := buildahcli.GetLayerFlags(&layerValues)
- flag = layerFlags.Lookup("layers")
- if err := flag.Value.Set(useLayers()); err != nil {
- logrus.Error("unable to set uselayers")
- }
- flag.DefValue = useLayers()
- flag = layerFlags.Lookup("force-rm")
- if err := flag.Value.Set("true"); err != nil {
- logrus.Error("unable to set force-rm flag to true")
- }
- flag.DefValue = "true"
- podmanBuildFlags := GetPodmanBuildFlags(&podBuildValues)
- flag = podmanBuildFlags.Lookup("squash-all")
- if err := flag.Value.Set("false"); err != nil {
- logrus.Error("unable to set squash-all flag to false")
- }
-
- flag.DefValue = "true"
- fromAndBugFlags, err := buildahcli.GetFromAndBudFlags(&fromAndBudValues, &userNSValues, &namespaceValues)
- if err != nil {
- logrus.Errorf("failed to setup podman build flags: %v", err)
- os.Exit(1)
- }
-
- flags.AddFlagSet(&budFlags)
- flags.AddFlagSet(&fromAndBugFlags)
- flags.AddFlagSet(&layerFlags)
- flags.AddFlagSet(&podmanBuildFlags)
- markFlagHidden(flags, "signature-policy")
-}
-
-// GetPodmanBuildFlags flags used only by `podman build` and not by
-// `buildah bud`.
-func GetPodmanBuildFlags(flags *cliconfig.PodmanBuildResults) pflag.FlagSet {
- fs := pflag.FlagSet{}
- fs.BoolVar(&flags.SquashAll, "squash-all", false, "Squash all layers into a single layer.")
- return fs
-}
-
-func getContainerfiles(files []string) []string {
- var containerfiles []string
- for _, f := range files {
- if f == "-" {
- containerfiles = append(containerfiles, "/dev/stdin")
- } else {
- containerfiles = append(containerfiles, f)
- }
- }
- return containerfiles
-}
-
-func getNsValues(c *cliconfig.BuildValues) ([]buildah.NamespaceOption, error) {
- var ret []buildah.NamespaceOption
- if c.Network != "" {
- switch {
- case c.Network == "host":
- ret = append(ret, buildah.NamespaceOption{
- Name: string(specs.NetworkNamespace),
- Host: true,
- })
- case c.Network == "container":
- ret = append(ret, buildah.NamespaceOption{
- Name: string(specs.NetworkNamespace),
- })
- case c.Network[0] == '/':
- ret = append(ret, buildah.NamespaceOption{
- Name: string(specs.NetworkNamespace),
- Path: c.Network,
- })
- default:
- return nil, fmt.Errorf("unsupported configuration network=%s", c.Network)
- }
- }
- return ret, nil
-}
-
-func buildCmd(c *cliconfig.BuildValues) error {
- if (c.Flags().Changed("squash") && c.Flags().Changed("layers")) ||
- (c.Flags().Changed("squash-all") && c.Flags().Changed("layers")) ||
- (c.Flags().Changed("squash-all") && c.Flags().Changed("squash")) {
- return fmt.Errorf("cannot specify squash, squash-all and layers options together")
- }
-
- // The following was taken directly from containers/buildah/cmd/bud.go
- // TODO Find a away to vendor more of this in rather than copy from bud
- output := ""
- tags := []string{}
- if c.Flag("tag").Changed {
- tags = c.Tag
- if len(tags) > 0 {
- output = tags[0]
- tags = tags[1:]
- }
- }
- if c.BudResults.Authfile != "" {
- if _, err := os.Stat(c.BudResults.Authfile); err != nil {
- return errors.Wrapf(err, "error getting authfile %s", c.BudResults.Authfile)
- }
- }
-
- pullPolicy := imagebuildah.PullNever
- if c.Pull {
- pullPolicy = imagebuildah.PullIfMissing
- }
- if c.PullAlways {
- pullPolicy = imagebuildah.PullAlways
- }
-
- args := make(map[string]string)
- if c.Flag("build-arg").Changed {
- for _, arg := range c.BuildArg {
- av := strings.SplitN(arg, "=", 2)
- if len(av) > 1 {
- args[av[0]] = av[1]
- } else {
- delete(args, av[0])
- }
- }
- }
-
- containerfiles := getContainerfiles(c.File)
- format, err := getFormat(&c.PodmanCommand)
- if err != nil {
- return nil
- }
- contextDir := ""
- cliArgs := c.InputArgs
-
- layers := c.Layers // layers for podman defaults to true
- // Check to see if the BUILDAH_LAYERS environment variable is set and override command-line
- if _, ok := os.LookupEnv("BUILDAH_LAYERS"); ok {
- layers = buildahcli.UseLayers()
- }
-
- if len(cliArgs) > 0 {
- // The context directory could be a URL. Try to handle that.
- tempDir, subDir, err := imagebuildah.TempDirForURL("", "buildah", cliArgs[0])
- if err != nil {
- return errors.Wrapf(err, "error prepping temporary context directory")
- }
- if tempDir != "" {
- // We had to download it to a temporary directory.
- // Delete it later.
- defer func() {
- if err = os.RemoveAll(tempDir); err != nil {
- logrus.Errorf("error removing temporary directory %q: %v", contextDir, err)
- }
- }()
- contextDir = filepath.Join(tempDir, subDir)
- } else {
- // Nope, it was local. Use it as is.
- absDir, err := filepath.Abs(cliArgs[0])
- if err != nil {
- return errors.Wrapf(err, "error determining path to directory %q", cliArgs[0])
- }
- contextDir = absDir
- }
- } else {
- // No context directory or URL was specified. Try to use the
- // home of the first locally-available Containerfile.
- for i := range containerfiles {
- if strings.HasPrefix(containerfiles[i], "http://") ||
- strings.HasPrefix(containerfiles[i], "https://") ||
- strings.HasPrefix(containerfiles[i], "git://") ||
- strings.HasPrefix(containerfiles[i], "github.com/") {
- continue
- }
- absFile, err := filepath.Abs(containerfiles[i])
- if err != nil {
- return errors.Wrapf(err, "error determining path to file %q", containerfiles[i])
- }
- contextDir = filepath.Dir(absFile)
- break
- }
- }
- if contextDir == "" {
- return errors.Errorf("no context directory specified, and no containerfile specified")
- }
- if !fileIsDir(contextDir) {
- return errors.Errorf("context must be a directory: %v", contextDir)
- }
- if len(containerfiles) == 0 {
- if checkIfFileExists(filepath.Join(contextDir, "Containerfile")) {
- containerfiles = append(containerfiles, filepath.Join(contextDir, "Containerfile"))
- } else {
- containerfiles = append(containerfiles, filepath.Join(contextDir, "Dockerfile"))
- }
- }
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
-
- runtimeFlags := []string{}
- for _, arg := range c.RuntimeFlags {
- runtimeFlags = append(runtimeFlags, "--"+arg)
- }
-
- conf, err := runtime.GetConfig()
- if err != nil {
- return err
- }
- if conf != nil && conf.Engine.CgroupManager == config.SystemdCgroupsManager {
- runtimeFlags = append(runtimeFlags, "--systemd-cgroup")
- }
- // end from buildah
-
- defer runtime.DeferredShutdown(false)
-
- var stdin, stdout, stderr, reporter *os.File
- stdin = os.Stdin
- stdout = os.Stdout
- stderr = os.Stderr
- reporter = os.Stderr
- if c.Flag("logfile").Changed {
- f, err := os.OpenFile(c.Logfile, os.O_CREATE|os.O_TRUNC|os.O_WRONLY, 0600)
- if err != nil {
- return errors.Errorf("error opening logfile %q: %v", c.Logfile, err)
- }
- defer f.Close()
- logrus.SetOutput(f)
- stdout = f
- stderr = f
- reporter = f
- }
-
- var memoryLimit, memorySwap int64
- if c.Flags().Changed("memory") {
- memoryLimit, err = units.RAMInBytes(c.Memory)
- if err != nil {
- return err
- }
- }
-
- if c.Flags().Changed("memory-swap") {
- memorySwap, err = units.RAMInBytes(c.MemorySwap)
- if err != nil {
- return err
- }
- }
-
- nsValues, err := getNsValues(c)
- if err != nil {
- return err
- }
-
- networkPolicy := buildah.NetworkDefault
- for _, ns := range nsValues {
- if ns.Name == "none" {
- networkPolicy = buildah.NetworkDisabled
- break
- } else if !filepath.IsAbs(ns.Path) {
- networkPolicy = buildah.NetworkEnabled
- break
- }
- }
-
- buildOpts := buildah.CommonBuildOptions{
- AddHost: c.AddHost,
- CgroupParent: c.CgroupParent,
- CPUPeriod: c.CPUPeriod,
- CPUQuota: c.CPUQuota,
- CPUShares: c.CPUShares,
- CPUSetCPUs: c.CPUSetCPUs,
- CPUSetMems: c.CPUSetMems,
- Memory: memoryLimit,
- MemorySwap: memorySwap,
- ShmSize: c.ShmSize,
- Ulimit: c.Ulimit,
- Volumes: c.Volumes,
- }
-
- // `buildah bud --layers=false` acts like `docker build --squash` does.
- // That is all of the new layers created during the build process are
- // condensed into one, any layers present prior to this build are retained
- // without condensing. `buildah bud --squash` squashes both new and old
- // layers down into one. Translate Podman commands into Buildah.
- // Squash invoked, retain old layers, squash new layers into one.
- if c.Flags().Changed("squash") && c.Squash {
- c.Squash = false
- layers = false
- }
- // Squash-all invoked, squash both new and old layers into one.
- if c.Flags().Changed("squash-all") {
- c.Squash = true
- layers = false
- }
-
- compression := imagebuildah.Gzip
- if c.DisableCompression {
- compression = imagebuildah.Uncompressed
- }
-
- isolation, err := parse.IsolationOption(c.Isolation)
- if err != nil {
- return errors.Wrapf(err, "error parsing ID mapping options")
- }
-
- usernsOption, idmappingOptions, err := parse.IDMappingOptions(c.PodmanCommand.Command, isolation)
- if err != nil {
- return errors.Wrapf(err, "error parsing ID mapping options")
- }
- nsValues = append(nsValues, usernsOption...)
-
- systemContext, err := parse.SystemContextFromOptions(c.PodmanCommand.Command)
- if err != nil {
- return errors.Wrapf(err, "error building system context")
- }
-
- options := imagebuildah.BuildOptions{
- AddCapabilities: c.CapAdd,
- AdditionalTags: tags,
- Annotations: c.Annotation,
- Architecture: c.Arch,
- Args: args,
- BlobDirectory: c.BlobCache,
- CNIConfigDir: c.CNIConfigDir,
- CNIPluginPath: c.CNIPlugInPath,
- CommonBuildOpts: &buildOpts,
- Compression: compression,
- ConfigureNetwork: networkPolicy,
- ContextDirectory: contextDir,
- DefaultMountsFilePath: c.GlobalFlags.DefaultMountsFile,
- Devices: c.Devices,
- DropCapabilities: c.CapDrop,
- Err: stderr,
- ForceRmIntermediateCtrs: c.ForceRm,
- IDMappingOptions: idmappingOptions,
- IIDFile: c.Iidfile,
- In: stdin,
- Isolation: isolation,
- Labels: c.Label,
- Layers: layers,
- NamespaceOptions: nsValues,
- NoCache: c.NoCache,
- OS: c.OS,
- Out: stdout,
- Output: output,
- OutputFormat: format,
- PullPolicy: pullPolicy,
- Quiet: c.Quiet,
- RemoveIntermediateCtrs: c.Rm,
- ReportWriter: reporter,
- RuntimeArgs: runtimeFlags,
- SignBy: c.SignBy,
- SignaturePolicyPath: c.SignaturePolicy,
- Squash: c.Squash,
- SystemContext: systemContext,
- Target: c.Target,
- TransientMounts: c.Volumes,
- }
- _, _, err = runtime.Build(getContext(), c, options, containerfiles)
- return err
-}
-
-// useLayers returns false if BUILDAH_LAYERS is set to "0" or "false"
-// otherwise it returns true
-func useLayers() string {
- layers := os.Getenv("BUILDAH_LAYERS")
- if strings.ToLower(layers) == "false" || layers == "0" {
- return "false"
- }
- return "true"
-}
diff --git a/cmd/podman/checkpoint.go b/cmd/podman/checkpoint.go
deleted file mode 100644
index 07db519f8..000000000
--- a/cmd/podman/checkpoint.go
+++ /dev/null
@@ -1,65 +0,0 @@
-package main
-
-import (
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/containers/libpod/pkg/rootless"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- checkpointCommand cliconfig.CheckpointValues
- checkpointDescription = `
- podman container checkpoint
-
- Checkpoints one or more running containers. The container name or ID can be used.
-`
- _checkpointCommand = &cobra.Command{
- Use: "checkpoint [flags] CONTAINER [CONTAINER...]",
- Short: "Checkpoints one or more containers",
- Long: checkpointDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- checkpointCommand.InputArgs = args
- checkpointCommand.GlobalFlags = MainGlobalOpts
- checkpointCommand.Remote = remoteclient
- return checkpointCmd(&checkpointCommand)
- },
- Args: func(cmd *cobra.Command, args []string) error {
- return checkAllLatestAndCIDFile(cmd, args, false, false)
- },
- Example: `podman container checkpoint --keep ctrID
- podman container checkpoint --all
- podman container checkpoint --leave-running --latest`,
- }
-)
-
-func init() {
- checkpointCommand.Command = _checkpointCommand
- checkpointCommand.SetHelpTemplate(HelpTemplate())
- checkpointCommand.SetUsageTemplate(UsageTemplate())
-
- flags := checkpointCommand.Flags()
- flags.BoolVarP(&checkpointCommand.Keep, "keep", "k", false, "Keep all temporary checkpoint files")
- flags.BoolVarP(&checkpointCommand.LeaveRunning, "leave-running", "R", false, "Leave the container running after writing checkpoint to disk")
- flags.BoolVar(&checkpointCommand.TcpEstablished, "tcp-established", false, "Checkpoint a container with established TCP connections")
- flags.BoolVarP(&checkpointCommand.All, "all", "a", false, "Checkpoint all running containers")
- flags.BoolVarP(&checkpointCommand.Latest, "latest", "l", false, "Act on the latest container podman is aware of")
- flags.StringVarP(&checkpointCommand.Export, "export", "e", "", "Export the checkpoint image to a tar.gz")
- flags.BoolVar(&checkpointCommand.IgnoreRootfs, "ignore-rootfs", false, "Do not include root file-system changes when exporting")
- markFlagHiddenForRemoteClient("latest", flags)
-}
-
-func checkpointCmd(c *cliconfig.CheckpointValues) error {
- if rootless.IsRootless() {
- return errors.New("checkpointing a container requires root")
- }
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
-
- defer runtime.DeferredShutdown(false)
- return runtime.Checkpoint(c)
-}
diff --git a/cmd/podman/cleanup.go b/cmd/podman/cleanup.go
deleted file mode 100644
index 80a19b000..000000000
--- a/cmd/podman/cleanup.go
+++ /dev/null
@@ -1,64 +0,0 @@
-//+build !remoteclient
-
-package main
-
-import (
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- cleanupCommand cliconfig.CleanupValues
- cleanupDescription = `
- podman container cleanup
-
- Cleans up mount points and network stacks on one or more containers from the host. The container name or ID can be used. This command is used internally when running containers, but can also be used if container cleanup has failed when a container exits.
-`
- _cleanupCommand = &cobra.Command{
- Use: "cleanup [flags] CONTAINER [CONTAINER...]",
- Short: "Cleanup network and mountpoints of one or more containers",
- Long: cleanupDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- cleanupCommand.InputArgs = args
- cleanupCommand.GlobalFlags = MainGlobalOpts
- cleanupCommand.Remote = remoteclient
- return cleanupCmd(&cleanupCommand)
- },
- Args: func(cmd *cobra.Command, args []string) error {
- return checkAllLatestAndCIDFile(cmd, args, false, false)
- },
- Example: `podman container cleanup --latest
- podman container cleanup ctrID1 ctrID2 ctrID3
- podman container cleanup --all`,
- }
-)
-
-func init() {
- cleanupCommand.Command = _cleanupCommand
- cleanupCommand.SetHelpTemplate(HelpTemplate())
- cleanupCommand.SetUsageTemplate(UsageTemplate())
- flags := cleanupCommand.Flags()
-
- flags.BoolVarP(&cleanupCommand.All, "all", "a", false, "Cleans up all containers")
- flags.BoolVarP(&cleanupCommand.Latest, "latest", "l", false, "Act on the latest container podman is aware of")
- flags.BoolVar(&cleanupCommand.Remove, "rm", false, "After cleanup, remove the container entirely")
- flags.BoolVar(&cleanupCommand.RemoveImage, "rmi", false, "After cleanup, remove the image entirely")
- markFlagHiddenForRemoteClient("latest", flags)
-}
-
-func cleanupCmd(c *cliconfig.CleanupValues) error {
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- ok, failures, err := runtime.CleanupContainers(getContext(), c)
- if err != nil {
- return err
- }
-
- return printCmdResults(ok, failures)
-}
diff --git a/cmd/podman/cliconfig/commands.go b/cmd/podman/cliconfig/commands.go
deleted file mode 100644
index f6d92611f..000000000
--- a/cmd/podman/cliconfig/commands.go
+++ /dev/null
@@ -1,167 +0,0 @@
-package cliconfig
-
-import (
- "github.com/sirupsen/logrus"
-)
-
-// GlobalIsSet is a compatibility method for urfave
-func (p *PodmanCommand) GlobalIsSet(opt string) bool {
- flag := p.PersistentFlags().Lookup(opt)
- if flag == nil {
- return false
- }
- return flag.Changed
-}
-
-// IsSet is a compatibility method for urfave
-func (p *PodmanCommand) IsSet(opt string) bool {
- flag := p.Flags().Lookup(opt)
- if flag == nil {
- return false
- }
- return flag.Changed
-}
-
-// Bool is a compatibility method for urfave
-func (p *PodmanCommand) Bool(opt string) bool {
- flag := p.Flags().Lookup(opt)
- if flag == nil {
- if !p.Remote {
- logrus.Errorf("Could not find flag %s", opt)
- }
- return false
- }
- val, err := p.Flags().GetBool(opt)
- if err != nil {
- logrus.Errorf("Error getting flag %s: %v", opt, err)
- }
- return val
-}
-
-// String is a compatibility method for urfave
-func (p *PodmanCommand) String(opt string) string {
- flag := p.Flags().Lookup(opt)
- if flag == nil {
- if !p.Remote {
- logrus.Errorf("Could not find flag %s", opt)
- }
- return ""
- }
- val, err := p.Flags().GetString(opt)
- if err != nil {
- logrus.Errorf("Error getting flag %s: %v", opt, err)
- }
- return val
-}
-
-// StringArray is a compatibility method for urfave
-func (p *PodmanCommand) StringArray(opt string) []string {
- flag := p.Flags().Lookup(opt)
- if flag == nil {
- if !p.Remote {
- logrus.Errorf("Could not find flag %s", opt)
- }
- return []string{}
- }
- val, err := p.Flags().GetStringArray(opt)
- if err != nil {
- logrus.Errorf("Error getting flag %s: %v", opt, err)
- }
- return val
-}
-
-// StringSlice is a compatibility method for urfave
-func (p *PodmanCommand) StringSlice(opt string) []string {
- flag := p.Flags().Lookup(opt)
- if flag == nil {
- if !p.Remote {
- logrus.Errorf("Could not find flag %s", opt)
- }
- return []string{}
- }
- val, err := p.Flags().GetStringSlice(opt)
- if err != nil {
- logrus.Errorf("Error getting flag %s: %v", opt, err)
- }
- return val
-}
-
-// Int is a compatibility method for urfave
-func (p *PodmanCommand) Int(opt string) int {
- flag := p.Flags().Lookup(opt)
- if flag == nil {
- if !p.Remote {
- logrus.Errorf("Could not find flag %s", opt)
- }
- return 0
- }
- val, err := p.Flags().GetInt(opt)
- if err != nil {
- logrus.Errorf("Error getting flag %s: %v", opt, err)
- }
- return val
-}
-
-// Unt is a compatibility method for urfave
-func (p *PodmanCommand) Uint(opt string) uint {
- flag := p.Flags().Lookup(opt)
- if flag == nil {
- if !p.Remote {
- logrus.Errorf("Could not find flag %s", opt)
- }
- return 0
- }
- val, err := p.Flags().GetUint(opt)
- if err != nil {
- logrus.Errorf("Error getting flag %s: %v", opt, err)
- }
- return val
-}
-
-// Int64 is a compatibility method for urfave
-func (p *PodmanCommand) Int64(opt string) int64 {
- flag := p.Flags().Lookup(opt)
- if flag == nil {
- if !p.Remote {
- logrus.Errorf("Could not find flag %s", opt)
- }
- return 0
- }
- val, err := p.Flags().GetInt64(opt)
- if err != nil {
- logrus.Errorf("Error getting flag %s: %v", opt, err)
- }
- return val
-}
-
-// Unt64 is a compatibility method for urfave
-func (p *PodmanCommand) Uint64(opt string) uint64 {
- flag := p.Flags().Lookup(opt)
- if flag == nil {
- if !p.Remote {
- logrus.Errorf("Could not find flag %s", opt)
- }
- return 0
- }
- val, err := p.Flags().GetUint64(opt)
- if err != nil {
- logrus.Errorf("Error getting flag %s: %v", opt, err)
- }
- return val
-}
-
-// Float64 is a compatibility method for urfave
-func (p *PodmanCommand) Float64(opt string) float64 {
- flag := p.Flags().Lookup(opt)
- if flag == nil {
- if !p.Remote {
- logrus.Errorf("Could not find flag %s", opt)
- }
- return 0
- }
- val, err := p.Flags().GetFloat64(opt)
- if err != nil {
- logrus.Errorf("Error getting flag %s: %v", opt, err)
- }
- return val
-}
diff --git a/cmd/podman/cliconfig/config.go b/cmd/podman/cliconfig/config.go
deleted file mode 100644
index 6d98aaf0e..000000000
--- a/cmd/podman/cliconfig/config.go
+++ /dev/null
@@ -1,717 +0,0 @@
-package cliconfig
-
-import (
- "net"
- "os"
-
- "github.com/containers/common/pkg/config"
- "github.com/sirupsen/logrus"
- "github.com/spf13/cobra"
-)
-
-type PodmanCommand struct {
- *cobra.Command
- InputArgs []string
- GlobalFlags MainFlags
- Remote bool
-}
-
-type MainFlags struct {
- CGroupManager string
- CniConfigDir string
- ConmonPath string
- DefaultMountsFile string
- EventsBackend string
- HooksDir []string
- MaxWorks int
- Namespace string
- Root string
- Runroot string
- Runtime string
- StorageDriver string
- StorageOpts []string
- Syslog bool
- Trace bool
- NetworkCmdPath string
-
- Config string
- CpuProfile string
- LogLevel string
- TmpDir string
-
- RemoteUserName string
- RemoteHost string
- VarlinkAddress string
- ConnectionName string
- RemoteConfigFilePath string
- Port int
- IdentityFile string
- IgnoreHosts bool
-}
-
-type AttachValues struct {
- PodmanCommand
- DetachKeys string
- Latest bool
- NoStdin bool
- SigProxy bool
-}
-
-type AutoUpdateValues struct {
- PodmanCommand
-}
-
-type ImagesValues struct {
- PodmanCommand
- All bool
- Digests bool
- Filter []string
- Format string
- Noheading bool
- NoTrunc bool
- Quiet bool
- Sort string
- History bool
-}
-
-type EventValues struct {
- PodmanCommand
- Filter []string
- Format string
- Since string
- Stream bool
- Until string
-}
-
-type TagValues struct {
- PodmanCommand
-}
-
-type TreeValues struct {
- PodmanCommand
- WhatRequires bool
-}
-
-type WaitValues struct {
- PodmanCommand
- Interval uint
- Latest bool
-}
-
-type CheckpointValues struct {
- PodmanCommand
- Keep bool
- LeaveRunning bool
- TcpEstablished bool
- All bool
- Latest bool
- Export string
- IgnoreRootfs bool
-}
-
-type CommitValues struct {
- PodmanCommand
- Change []string
- Format string
- Message string
- Author string
- Pause bool
- Quiet bool
- IncludeVolumes bool
- ImageIDFile string
-}
-
-type ContainersPrune struct {
- PodmanCommand
-}
-
-type DiffValues struct {
- PodmanCommand
- Archive bool
- Format string
- Latest bool
-}
-
-type ExecValues struct {
- PodmanCommand
- DetachKeys string
- Env []string
- EnvFile []string
- Privileged bool
- Interactive bool
- Tty bool
- User string
- Latest bool
- Workdir string
- PreserveFDs int
-}
-
-type ImageExistsValues struct {
- PodmanCommand
-}
-
-type ContainerExistsValues struct {
- PodmanCommand
-}
-
-type PodExistsValues struct {
- PodmanCommand
-}
-
-type ExportValues struct {
- PodmanCommand
- Output string
-}
-type GenerateKubeValues struct {
- PodmanCommand
- Service bool
- Filename string
-}
-
-type GenerateSystemdValues struct {
- PodmanCommand
- Name bool
- New bool
- Files bool
- RestartPolicy string
- StopTimeout uint
-}
-
-type HistoryValues struct {
- PodmanCommand
- Human bool
- NoTrunc bool
- Quiet bool
- Format string
-}
-type PruneImagesValues struct {
- PodmanCommand
- All bool
- Force bool
- Filter []string
-}
-
-type PruneContainersValues struct {
- PodmanCommand
- Force bool
- Filter []string
-}
-
-type PodPruneValues struct {
- PodmanCommand
- Force bool
-}
-
-type ImportValues struct {
- PodmanCommand
- Change []string
- Message string
- Quiet bool
-}
-
-type InfoValues struct {
- PodmanCommand
- Debug bool
- Format string
-}
-
-type InitValues struct {
- PodmanCommand
- All bool
- Latest bool
-}
-
-type InspectValues struct {
- PodmanCommand
- TypeObject string
- Format string
- Size bool
- Latest bool
-}
-
-type KillValues struct {
- PodmanCommand
- All bool
- Signal string
- Latest bool
-}
-
-type LoadValues struct {
- PodmanCommand
- Input string
- Quiet bool
- SignaturePolicy string
-}
-
-type LoginValues struct {
- PodmanCommand
- Password string
- StdinPassword bool
- Username string
- Authfile string
- CertDir string
- GetLogin bool
- TlsVerify bool
-}
-
-type LogoutValues struct {
- PodmanCommand
- Authfile string
- All bool
-}
-
-type LogsValues struct {
- PodmanCommand
- Details bool
- Follow bool
- Since string
- Tail int64
- Timestamps bool
- Latest bool
- UseName bool
-}
-
-type MountValues struct {
- PodmanCommand
- All bool
- Format string
- NoTrunc bool
- Latest bool
-}
-
-type NetworkCreateValues struct {
- PodmanCommand
- Driver string
- DisableDNS bool
- Gateway net.IP
- Internal bool
- IPamDriver string
- IPRange net.IPNet
- IPV6 bool
- Network net.IPNet
- MacVLAN string
-}
-
-type NetworkListValues struct {
- PodmanCommand
- Filter []string
- Quiet bool
-}
-
-type NetworkRmValues struct {
- PodmanCommand
- Force bool
-}
-
-type NetworkInspectValues struct {
- PodmanCommand
-}
-
-type PauseValues struct {
- PodmanCommand
- All bool
-}
-
-type HealthCheckValues struct {
- PodmanCommand
-}
-
-type KubePlayValues struct {
- PodmanCommand
- Authfile string
- CertDir string
- Creds string
- Network string
- Quiet bool
- SignaturePolicy string
- TlsVerify bool
- SeccompProfileRoot string
-}
-
-type PodCreateValues struct {
- PodmanCommand
- CgroupParent string
- Infra bool
- InfraImage string
- InfraCommand string
- LabelFile []string
- Labels []string
- Name string
- Hostname string
- PodIDFile string
- Publish []string
- Share string
-}
-
-type PodInspectValues struct {
- PodmanCommand
- Latest bool
-}
-
-type PodKillValues struct {
- PodmanCommand
- All bool
- Signal string
- Latest bool
-}
-
-type PodPauseValues struct {
- PodmanCommand
- All bool
- Latest bool
-}
-
-type PodPsValues struct {
- PodmanCommand
- CtrNames bool
- CtrIDs bool
- CtrStatus bool
- Filter string
- Format string
- Latest bool
- Namespace bool
- NoTrunc bool
- Quiet bool
- Sort string
-}
-
-type PodRestartValues struct {
- PodmanCommand
- All bool
- Latest bool
-}
-
-type PodRmValues struct {
- PodmanCommand
- All bool
- Ignore bool
- Force bool
- Latest bool
-}
-
-type PodStartValues struct {
- PodmanCommand
- All bool
- Latest bool
-}
-type PodStatsValues struct {
- PodmanCommand
- All bool
- NoStream bool
- NoReset bool
- Format string
- Latest bool
-}
-
-type PodStopValues struct {
- PodmanCommand
- All bool
- Ignore bool
- Latest bool
- Timeout uint
-}
-
-type PodTopValues struct {
- PodmanCommand
- Latest bool
- ListDescriptors bool
-}
-type PodUnpauseValues struct {
- PodmanCommand
- All bool
- Latest bool
-}
-
-type PortValues struct {
- PodmanCommand
- All bool
- Latest bool
-}
-
-type PsValues struct {
- PodmanCommand
- All bool
- Filter []string
- Format string
- Last int
- Latest bool
- Namespace bool
- NoTrunct bool
- Pod bool
- Quiet bool
- Size bool
- Sort string
- Sync bool
- Watch uint
-}
-
-type PullValues struct {
- PodmanCommand
- AllTags bool
- Authfile string
- CertDir string
- Creds string
- OverrideArch string
- OverrideOS string
- Quiet bool
- SignaturePolicy string
- TlsVerify bool
-}
-
-type PushValues struct {
- PodmanCommand
- Authfile string
- CertDir string
- Compress bool
- Creds string
- Digestfile string
- Format string
- Quiet bool
- RemoveSignatures bool
- SignBy string
- SignaturePolicy string
- TlsVerify bool
-}
-
-type RefreshValues struct {
- PodmanCommand
-}
-
-type RestartValues struct {
- PodmanCommand
- All bool
- AutoUpdate bool
- Latest bool
- Running bool
- Timeout uint
-}
-
-type RestoreValues struct {
- PodmanCommand
- All bool
- Keep bool
- Latest bool
- TcpEstablished bool
- Import string
- Name string
- IgnoreRootfs bool
- IgnoreStaticIP bool
- IgnoreStaticMAC bool
-}
-
-type RmValues struct {
- PodmanCommand
- All bool
- Force bool
- Ignore bool
- Latest bool
- Storage bool
- Volumes bool
- CIDFiles []string
-}
-
-type RmiValues struct {
- PodmanCommand
- All bool
- Force bool
-}
-
-type RunlabelValues struct {
- PodmanCommand
- Authfile string
- CertDir string
- Creds string
- Display bool
- Name string
- Opt1 string
- Opt2 string
- Opt3 string
- Quiet bool
- Replace bool
- SignaturePolicy string
- TlsVerify bool
-}
-type SaveValues struct {
- PodmanCommand
- Compress bool
- Format string
- Output string
- Quiet bool
-}
-
-type SearchValues struct {
- PodmanCommand
- Authfile string
- Filter []string
- Format string
- Limit int
- NoTrunc bool
- TlsVerify bool
-}
-
-type TrustValues struct {
- PodmanCommand
-}
-
-type SignValues struct {
- PodmanCommand
- Directory string
- SignBy string
- CertDir string
-}
-
-type StartValues struct {
- PodmanCommand
- Attach bool
- DetachKeys string
- Interactive bool
- Latest bool
- SigProxy bool
-}
-
-type StatsValues struct {
- PodmanCommand
- All bool
- Format string
- Latest bool
- NoReset bool
- NoStream bool
-}
-
-type StopValues struct {
- PodmanCommand
- All bool
- Ignore bool
- Latest bool
- Timeout uint
- CIDFiles []string
-}
-
-type TopValues struct {
- PodmanCommand
- Latest bool
- ListDescriptors bool
-}
-
-type UmountValues struct {
- PodmanCommand
- All bool
- Force bool
- Latest bool
-}
-
-type UnpauseValues struct {
- PodmanCommand
- All bool
-}
-
-type VarlinkValues struct {
- PodmanCommand
- Timeout int64
-}
-
-type ServiceValues struct {
- PodmanCommand
- Varlink bool
- Timeout int64
-}
-
-type SetTrustValues struct {
- PodmanCommand
- PolicyPath string
- PubKeysFile []string
- TrustType string
-}
-
-type ShowTrustValues struct {
- PodmanCommand
- Json bool
- PolicyPath string
- Raw bool
- RegistryPath string
-}
-
-type VersionValues struct {
- PodmanCommand
- Format string
-}
-
-type VolumeCreateValues struct {
- PodmanCommand
- Driver string
- Label []string
- Opt []string
-}
-type VolumeInspectValues struct {
- PodmanCommand
- All bool
- Format string
-}
-
-type VolumeLsValues struct {
- PodmanCommand
- Filter string
- Format string
- Quiet bool
-}
-
-type VolumePruneValues struct {
- PodmanCommand
- Force bool
-}
-
-type VolumeRmValues struct {
- PodmanCommand
- All bool
- Force bool
-}
-
-type CleanupValues struct {
- PodmanCommand
- All bool
- Latest bool
- Remove bool
- RemoveImage bool
-}
-
-type SystemPruneValues struct {
- PodmanCommand
- All bool
- Force bool
- Volume bool
-}
-
-type SystemResetValues struct {
- PodmanCommand
- Force bool
-}
-
-type SystemRenumberValues struct {
- PodmanCommand
-}
-
-type SystemMigrateValues struct {
- PodmanCommand
- NewRuntime string
-}
-
-type SystemDfValues struct {
- PodmanCommand
- Verbose bool
- Format string
-}
-
-type UntagValues struct {
- PodmanCommand
-}
-
-func GetDefaultConfig() *config.Config {
- var err error
- conf, err := config.NewConfig("")
- conf.CheckCgroupsAndAdjustConfig()
- if err != nil {
- logrus.Errorf("Error loading container config %v\n", err)
- os.Exit(1)
- }
- return conf
-}
diff --git a/cmd/podman/cliconfig/create.go b/cmd/podman/cliconfig/create.go
deleted file mode 100644
index c27dfbbee..000000000
--- a/cmd/podman/cliconfig/create.go
+++ /dev/null
@@ -1,35 +0,0 @@
-package cliconfig
-
-import (
- buildahcli "github.com/containers/buildah/pkg/cli"
-)
-
-type CreateValues struct {
- PodmanCommand
-}
-
-type RunValues struct {
- PodmanCommand
-}
-
-// PodmanBuildResults represents the results for Podman Build flags
-// that are unique to Podman.
-type PodmanBuildResults struct {
- SquashAll bool
-}
-
-type BuildValues struct {
- PodmanCommand
- *buildahcli.BudResults
- *buildahcli.UserNSResults
- *buildahcli.FromAndBudResults
- *buildahcli.LayerResults
- *buildahcli.NameSpaceResults
- *PodmanBuildResults
-}
-
-type CpValues struct {
- PodmanCommand
- Extract bool
- Pause bool
-}
diff --git a/cmd/podman/cliconfig/defaults.go b/cmd/podman/cliconfig/defaults.go
deleted file mode 100644
index 3082207e0..000000000
--- a/cmd/podman/cliconfig/defaults.go
+++ /dev/null
@@ -1,14 +0,0 @@
-package cliconfig
-
-var (
- // DefaultHealthCheckInterval default value
- DefaultHealthCheckInterval = "30s"
- // DefaultHealthCheckRetries default value
- DefaultHealthCheckRetries uint = 3
- // DefaultHealthCheckStartPeriod default value
- DefaultHealthCheckStartPeriod = "0s"
- // DefaultHealthCheckTimeout default value
- DefaultHealthCheckTimeout = "30s"
- // DefaultImageVolume default value
- DefaultImageVolume = "bind"
-)
diff --git a/cmd/podman/commands.go b/cmd/podman/commands.go
deleted file mode 100644
index 2ee31b643..000000000
--- a/cmd/podman/commands.go
+++ /dev/null
@@ -1,196 +0,0 @@
-// +build !remoteclient
-
-package main
-
-import (
- "fmt"
- "os"
-
- "github.com/containers/buildah/pkg/parse"
- "github.com/containers/libpod/pkg/apparmor"
- "github.com/containers/libpod/pkg/cgroups"
- "github.com/containers/libpod/pkg/rootless"
- "github.com/containers/libpod/pkg/sysinfo"
- "github.com/opencontainers/selinux/go-selinux"
- "github.com/spf13/cobra"
-)
-
-const remoteclient = false
-
-// Commands that the local client implements
-func getMainCommands() []*cobra.Command {
- rootCommands := []*cobra.Command{
- _autoUpdateCommand,
- _cpCommand,
- _playCommand,
- _loginCommand,
- _logoutCommand,
- _mountCommand,
- _refreshCommand,
- _searchCommand,
- _statsCommand,
- _umountCommand,
- _unshareCommand,
- }
-
- if len(_varlinkCommand.Use) > 0 {
- rootCommands = append(rootCommands, _varlinkCommand)
- }
- return rootCommands
-}
-
-// Commands that the local client implements
-func getImageSubCommands() []*cobra.Command {
- return []*cobra.Command{
- _signCommand,
- _trustCommand,
- }
-}
-
-// Commands that the local client implements
-func getContainerSubCommands() []*cobra.Command {
-
- return []*cobra.Command{
- _cpCommand,
- _cleanupCommand,
- _mountCommand,
- _refreshCommand,
- _runlabelCommand,
- _statsCommand,
- _umountCommand,
- }
-}
-
-// Commands that the local client implements
-func getPlaySubCommands() []*cobra.Command {
- return []*cobra.Command{
- _playKubeCommand,
- }
-}
-
-// Commands that the local client implements
-func getTrustSubCommands() []*cobra.Command {
- return []*cobra.Command{
- _setTrustCommand,
- _showTrustCommand,
- }
-}
-
-// Commands that the local client implements
-func getSystemSubCommands() []*cobra.Command {
- systemCommands := []*cobra.Command{
- _renumberCommand,
- _dfSystemCommand,
- _migrateCommand,
- }
-
- if len(_serviceCommand.Use) > 0 {
- systemCommands = append(systemCommands, _serviceCommand)
- }
-
- return systemCommands
-}
-
-func getDefaultSecurityOptions() []string {
- securityOpts := []string{}
- if defaultContainerConfig.Containers.SeccompProfile != "" && defaultContainerConfig.Containers.SeccompProfile != parse.SeccompDefaultPath {
- securityOpts = append(securityOpts, fmt.Sprintf("seccomp=%s", defaultContainerConfig.Containers.SeccompProfile))
- }
- if apparmor.IsEnabled() && defaultContainerConfig.Containers.ApparmorProfile != "" {
- securityOpts = append(securityOpts, fmt.Sprintf("apparmor=%s", defaultContainerConfig.Containers.ApparmorProfile))
- }
- if selinux.GetEnabled() && !defaultContainerConfig.Containers.EnableLabeling {
- securityOpts = append(securityOpts, fmt.Sprintf("label=%s", selinux.DisableSecOpt()[0]))
- }
- return securityOpts
-}
-
-// getDefaultSysctls
-func getDefaultSysctls() []string {
- return defaultContainerConfig.Containers.DefaultSysctls
-}
-
-func getDefaultVolumes() []string {
- return defaultContainerConfig.Containers.Volumes
-}
-
-func getDefaultDevices() []string {
- return defaultContainerConfig.Containers.Devices
-}
-
-func getDefaultDNSServers() []string {
- return defaultContainerConfig.Containers.DNSServers
-}
-
-func getDefaultDNSSearches() []string {
- return defaultContainerConfig.Containers.DNSSearches
-}
-
-func getDefaultDNSOptions() []string {
- return defaultContainerConfig.Containers.DNSOptions
-}
-
-func getDefaultEnv() []string {
- return defaultContainerConfig.Containers.Env
-}
-
-func getDefaultInitPath() string {
- return defaultContainerConfig.Containers.InitPath
-}
-
-func getDefaultIPCNS() string {
- return defaultContainerConfig.Containers.IPCNS
-}
-
-func getDefaultPidNS() string {
- return defaultContainerConfig.Containers.PidNS
-}
-
-func getDefaultNetNS() string {
- if defaultContainerConfig.Containers.NetNS == "private" && rootless.IsRootless() {
- return "slirp4netns"
- }
- return defaultContainerConfig.Containers.NetNS
-}
-
-func getDefaultCgroupNS() string {
- return defaultContainerConfig.Containers.CgroupNS
-}
-
-func getDefaultUTSNS() string {
- return defaultContainerConfig.Containers.UTSNS
-}
-
-func getDefaultShmSize() string {
- return defaultContainerConfig.Containers.ShmSize
-}
-
-func getDefaultUlimits() []string {
- return defaultContainerConfig.Containers.DefaultUlimits
-}
-
-func getDefaultUserNS() string {
- userns := os.Getenv("PODMAN_USERNS")
- if userns != "" {
- return userns
- }
- return defaultContainerConfig.Containers.UserNS
-}
-
-func getDefaultPidsLimit() int64 {
- if rootless.IsRootless() {
- cgroup2, _ := cgroups.IsCgroup2UnifiedMode()
- if cgroup2 {
- return defaultContainerConfig.Containers.PidsLimit
- }
- }
- return sysinfo.GetDefaultPidsLimit()
-}
-
-func getDefaultPidsDescription() string {
- return "Tune container pids limit (set 0 for unlimited)"
-}
-
-func getDefaultDetachKeys() string {
- return defaultContainerConfig.Engine.DetachKeys
-}
diff --git a/cmd/podman/commands_remoteclient.go b/cmd/podman/commands_remoteclient.go
deleted file mode 100644
index 11baeb4ae..000000000
--- a/cmd/podman/commands_remoteclient.go
+++ /dev/null
@@ -1,135 +0,0 @@
-// +build remoteclient
-
-package main
-
-import (
- "github.com/spf13/cobra"
-)
-
-const remoteclient = true
-
-// commands that only the remoteclient implements
-func getMainCommands() []*cobra.Command {
- return []*cobra.Command{}
-}
-
-// commands that only the remoteclient implements
-func getAppCommands() []*cobra.Command { // nolint:varcheck,deadcode,unused
- return []*cobra.Command{}
-}
-
-// commands that only the remoteclient implements
-func getImageSubCommands() []*cobra.Command {
- return []*cobra.Command{}
-}
-
-// commands that only the remoteclient implements
-func getContainerSubCommands() []*cobra.Command {
- return []*cobra.Command{}
-}
-
-// commands that only the remoteclient implements
-func getGenerateSubCommands() []*cobra.Command { // nolint:varcheck,deadcode,unused
- return []*cobra.Command{}
-}
-
-// commands that only the remoteclient implements
-func getPlaySubCommands() []*cobra.Command {
- return []*cobra.Command{}
-}
-
-// commands that only the remoteclient implements
-func getTrustSubCommands() []*cobra.Command {
- return []*cobra.Command{}
-}
-
-// commands that only the remoteclient implements
-func getSystemSubCommands() []*cobra.Command {
- return []*cobra.Command{}
-}
-
-func getDefaultSecurityOptions() []string {
- return []string{}
-}
-
-// getDefaultSysctls
-func getDefaultSysctls() []string {
- return []string{}
-}
-
-// getDefaultDevices
-func getDefaultDevices() []string {
- return []string{}
-}
-
-func getDefaultVolumes() []string {
- return []string{}
-}
-
-func getDefaultDNSServers() []string {
- return []string{}
-}
-
-func getDefaultDNSSearches() []string {
- return []string{}
-}
-
-func getDefaultDNSOptions() []string {
- return []string{}
-}
-
-func getDefaultEnv() []string {
- return []string{}
-}
-
-func getDefaultInitPath() string {
- return ""
-}
-
-func getDefaultIPCNS() string {
- return ""
-}
-
-func getDefaultPidNS() string {
- return ""
-}
-
-func getDefaultNetNS() string {
- return ""
-}
-
-func getDefaultCgroupNS() string {
- return ""
-}
-
-func getDefaultUTSNS() string {
- return ""
-}
-
-func getDefaultShmSize() string {
- return ""
-}
-
-func getDefaultUlimits() []string {
- return []string{}
-}
-
-func getDefaultUserNS() string {
- return ""
-}
-
-func getDefaultPidsLimit() int64 {
- return -1
-}
-
-func getDefaultPidsDescription() string {
- return "Tune container pids limit (set 0 for unlimited, -1 for server defaults)"
-}
-
-func getDefaultShareNetwork() string { // nolint:varcheck,deadcode,unused
- return ""
-}
-
-func getDefaultDetachKeys() string {
- return ""
-}
diff --git a/cmd/podman/commit.go b/cmd/podman/commit.go
deleted file mode 100644
index 3ad3bd275..000000000
--- a/cmd/podman/commit.go
+++ /dev/null
@@ -1,82 +0,0 @@
-package main
-
-import (
- "fmt"
- "io/ioutil"
- "strings"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- commitCommand cliconfig.CommitValues
- commitDescription = `Create an image from a container's changes. Optionally tag the image created, set the author with the --author flag, set the commit message with the --message flag, and make changes to the instructions with the --change flag.`
-
- _commitCommand = &cobra.Command{
- Use: "commit [flags] CONTAINER [IMAGE]",
- Short: "Create new image based on the changed container",
- Long: commitDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- commitCommand.InputArgs = args
- commitCommand.GlobalFlags = MainGlobalOpts
- commitCommand.Remote = remoteclient
- return commitCmd(&commitCommand)
- },
- Example: `podman commit -q --message "committing container to image" reverent_golick image-committed
- podman commit -q --author "firstName lastName" reverent_golick image-committed
- podman commit -q --pause=false containerID image-committed
- podman commit containerID`,
- }
-
- // ChangeCmds is the list of valid Changes commands to passed to the Commit call
- ChangeCmds = []string{"CMD", "ENTRYPOINT", "ENV", "EXPOSE", "LABEL", "ONBUILD", "STOPSIGNAL", "USER", "VOLUME", "WORKDIR"}
-)
-
-func init() {
- commitCommand.Command = _commitCommand
- commitCommand.SetHelpTemplate(HelpTemplate())
- commitCommand.SetUsageTemplate(UsageTemplate())
- flags := commitCommand.Flags()
- flags.StringArrayVarP(&commitCommand.Change, "change", "c", []string{}, fmt.Sprintf("Apply the following possible instructions to the created image (default []): %s", strings.Join(ChangeCmds, " | ")))
- flags.StringVarP(&commitCommand.Format, "format", "f", "oci", "`Format` of the image manifest and metadata")
- flags.StringVarP(&commitCommand.ImageIDFile, "iidfile", "", "", "`file` to write the image ID to")
- flags.StringVarP(&commitCommand.Message, "message", "m", "", "Set commit message for imported image")
- flags.StringVarP(&commitCommand.Author, "author", "a", "", "Set the author for the image committed")
- flags.BoolVarP(&commitCommand.Pause, "pause", "p", false, "Pause container during commit")
- flags.BoolVarP(&commitCommand.Quiet, "quiet", "q", false, "Suppress output")
- flags.BoolVar(&commitCommand.IncludeVolumes, "include-volumes", false, "Include container volumes as image volumes")
-}
-
-func commitCmd(c *cliconfig.CommitValues) error {
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- args := c.InputArgs
- if len(args) < 1 {
- return errors.Errorf("you must provide a container name or ID and optionally a target image name")
- }
-
- container := args[0]
- reference := ""
- if len(args) > 1 {
- reference = args[1]
- }
-
- iid, err := runtime.Commit(getContext(), c, container, reference)
- if err != nil {
- return err
- }
- if c.ImageIDFile != "" {
- if err = ioutil.WriteFile(c.ImageIDFile, []byte(iid), 0644); err != nil {
- return errors.Wrapf(err, "failed to write image ID to file %q", c.ImageIDFile)
- }
- }
- fmt.Println(iid)
- return nil
-}
diff --git a/cmd/podman/common.go b/cmd/podman/common.go
deleted file mode 100644
index 9aa9a63fe..000000000
--- a/cmd/podman/common.go
+++ /dev/null
@@ -1,593 +0,0 @@
-package main
-
-import (
- "context"
- "fmt"
- "strings"
-
- "github.com/containers/buildah"
- buildahcli "github.com/containers/buildah/pkg/cli"
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/util/camelcase"
- jsoniter "github.com/json-iterator/go"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
- "github.com/spf13/pflag"
-)
-
-var (
- json = jsoniter.ConfigCompatibleWithStandardLibrary
-)
-
-const (
- idTruncLength = 12
- sizeWithUnitFormat = "(format: `<number>[<unit>]`, where unit = b (bytes), k (kilobytes), m (megabytes), or g (gigabytes))"
-)
-
-func splitCamelCase(src string) string {
- entries := camelcase.Split(src)
- return strings.Join(entries, " ")
-}
-
-func shortID(id string) string {
- if len(id) > idTruncLength {
- return id[:idTruncLength]
- }
- return id
-}
-
-// checkAllLatestAndCIDFile checks that --all and --latest are used correctly.
-// If cidfile is set, also check for the --cidfile flag.
-func checkAllLatestAndCIDFile(c *cobra.Command, args []string, ignoreArgLen bool, cidfile bool) error {
- argLen := len(args)
- if c.Flags().Lookup("all") == nil || c.Flags().Lookup("latest") == nil {
- if !cidfile {
- return errors.New("unable to lookup values for 'latest' or 'all'")
- } else if c.Flags().Lookup("cidfile") == nil {
- return errors.New("unable to lookup values for 'latest', 'all' or 'cidfile'")
- }
- }
-
- specifiedAll, _ := c.Flags().GetBool("all")
- specifiedLatest, _ := c.Flags().GetBool("latest")
- specifiedCIDFile := false
- if cid, _ := c.Flags().GetStringArray("cidfile"); len(cid) > 0 {
- specifiedCIDFile = true
- }
-
- if specifiedCIDFile && (specifiedAll || specifiedLatest) {
- return errors.Errorf("--all, --latest and --cidfile cannot be used together")
- } else if specifiedAll && specifiedLatest {
- return errors.Errorf("--all and --latest cannot be used together")
- }
-
- if ignoreArgLen {
- return nil
- }
- if (argLen > 0) && (specifiedAll || specifiedLatest) {
- return errors.Errorf("no arguments are needed with --all or --latest")
- } else if cidfile && (argLen > 0) && (specifiedAll || specifiedLatest || specifiedCIDFile) {
- return errors.Errorf("no arguments are needed with --all, --latest or --cidfile")
- }
-
- if specifiedCIDFile {
- return nil
- }
-
- if argLen < 1 && !specifiedAll && !specifiedLatest && !specifiedCIDFile {
- return errors.Errorf("you must provide at least one name or id")
- }
- return nil
-}
-
-// noSubArgs checks that there are no further positional parameters
-func noSubArgs(c *cobra.Command, args []string) error {
- if len(args) > 0 {
- return errors.Errorf("`%s` takes no arguments", c.CommandPath())
- }
- return nil
-}
-
-func commandRunE() func(*cobra.Command, []string) error {
- return func(cmd *cobra.Command, args []string) error {
- if len(args) > 0 {
- return errors.Errorf("unrecognized command `%s %s`\nTry '%s --help' for more information.", cmd.CommandPath(), args[0], cmd.CommandPath())
- } else {
- return errors.Errorf("missing command '%s COMMAND'\nTry '%s --help' for more information.", cmd.CommandPath(), cmd.CommandPath())
- }
- }
-}
-
-// getContext returns a non-nil, empty context
-func getContext() context.Context {
- if Ctx != nil {
- return Ctx
- }
- return context.TODO()
-}
-
-func getNetFlags() *pflag.FlagSet {
- netFlags := pflag.FlagSet{}
- netFlags.StringSlice(
- "add-host", []string{},
- "Add a custom host-to-IP mapping (host:ip)",
- )
- netFlags.StringSlice(
- "dns", getDefaultDNSServers(),
- "Set custom DNS servers",
- )
- netFlags.StringSlice(
- "dns-opt", getDefaultDNSOptions(),
- "Set custom DNS options",
- )
- netFlags.StringSlice(
- "dns-search", getDefaultDNSSearches(),
- "Set custom DNS search domains",
- )
- netFlags.String(
- "ip", "",
- "Specify a static IPv4 address for the container",
- )
- netFlags.String(
- "mac-address", "",
- "Container MAC address (e.g. 92:d0:c6:0a:29:33)",
- )
- netFlags.String(
- "network", getDefaultNetNS(),
- "Connect a container to a network",
- )
- netFlags.StringSliceP(
- "publish", "p", []string{},
- "Publish a container's port, or a range of ports, to the host (default [])",
- )
- netFlags.Bool(
- "no-hosts", false,
- "Do not create /etc/hosts within the container, instead use the version from the image",
- )
- return &netFlags
-}
-
-func getCreateFlags(c *cliconfig.PodmanCommand) {
- createFlags := c.Flags()
- createFlags.StringSlice(
- "annotation", []string{},
- "Add annotations to container (key:value)",
- )
- createFlags.StringSliceP(
- "attach", "a", []string{},
- "Attach to STDIN, STDOUT or STDERR",
- )
- createFlags.String(
- "authfile", buildahcli.GetDefaultAuthFile(),
- "Path of the authentication file. Use REGISTRY_AUTH_FILE environment variable to override",
- )
- createFlags.String(
- "blkio-weight", "",
- "Block IO weight (relative weight) accepts a weight value between 10 and 1000.",
- )
- createFlags.StringSlice(
- "blkio-weight-device", []string{},
- "Block IO weight (relative device weight, format: `DEVICE_NAME:WEIGHT`)",
- )
- createFlags.StringSlice(
- "cap-add", []string{},
- "Add capabilities to the container",
- )
- createFlags.StringSlice(
- "cap-drop", []string{},
- "Drop capabilities from the container",
- )
- createFlags.String(
- "cgroupns", getDefaultCgroupNS(),
- "cgroup namespace to use",
- )
- createFlags.String(
- "cgroups", "enabled",
- `control container cgroup configuration ("enabled"|"disabled"|"no-conmon")`,
- )
- createFlags.String(
- "cgroup-parent", "",
- "Optional parent cgroup for the container",
- )
- createFlags.String(
- "cidfile", "",
- "Write the container ID to the file",
- )
- createFlags.String(
- "conmon-pidfile", "",
- "Path to the file that will receive the PID of conmon",
- )
- createFlags.Uint64(
- "cpu-period", 0,
- "Limit the CPU CFS (Completely Fair Scheduler) period",
- )
- createFlags.Int64(
- "cpu-quota", 0,
- "Limit the CPU CFS (Completely Fair Scheduler) quota",
- )
- createFlags.Uint64(
- "cpu-rt-period", 0,
- "Limit the CPU real-time period in microseconds",
- )
- createFlags.Int64(
- "cpu-rt-runtime", 0,
- "Limit the CPU real-time runtime in microseconds",
- )
- createFlags.Uint64(
- "cpu-shares", 0,
- "CPU shares (relative weight)",
- )
- createFlags.Float64(
- "cpus", 0,
- "Number of CPUs. The default is 0.000 which means no limit",
- )
- createFlags.String(
- "cpuset-cpus", "",
- "CPUs in which to allow execution (0-3, 0,1)",
- )
- createFlags.String(
- "cpuset-mems", "",
- "Memory nodes (MEMs) in which to allow execution (0-3, 0,1). Only effective on NUMA systems.",
- )
- createFlags.BoolP(
- "detach", "d", false,
- "Run container in background and print container ID",
- )
- createFlags.String(
- "detach-keys", getDefaultDetachKeys(),
- "Override the key sequence for detaching a container. Format is a single character `[a-Z]` or a comma separated sequence of `ctrl-<value>`, where `<value>` is one of: `a-z`, `@`, `^`, `[`, `\\`, `]`, `^` or `_`",
- )
- createFlags.StringSlice(
- "device", getDefaultDevices(),
- fmt.Sprintf("Add a host device to the container"),
- )
- createFlags.StringSlice(
- "device-cgroup-rule", []string{},
- "Add a rule to the cgroup allowed devices list",
- )
- createFlags.StringSlice(
- "device-read-bps", []string{},
- "Limit read rate (bytes per second) from a device (e.g. --device-read-bps=/dev/sda:1mb)",
- )
- createFlags.StringSlice(
- "device-read-iops", []string{},
- "Limit read rate (IO per second) from a device (e.g. --device-read-iops=/dev/sda:1000)",
- )
- createFlags.StringSlice(
- "device-write-bps", []string{},
- "Limit write rate (bytes per second) to a device (e.g. --device-write-bps=/dev/sda:1mb)",
- )
- createFlags.StringSlice(
- "device-write-iops", []string{},
- "Limit write rate (IO per second) to a device (e.g. --device-write-iops=/dev/sda:1000)",
- )
- createFlags.String(
- "entrypoint", "",
- "Overwrite the default ENTRYPOINT of the image",
- )
- createFlags.StringArrayP(
- "env", "e", getDefaultEnv(),
- "Set environment variables in container",
- )
- createFlags.Bool(
- "env-host", false, "Use all current host environment variables in container",
- )
- createFlags.StringSlice(
- "env-file", []string{},
- "Read in a file of environment variables",
- )
- createFlags.StringSlice(
- "expose", []string{},
- "Expose a port or a range of ports",
- )
- createFlags.StringSlice(
- "gidmap", []string{},
- "GID map to use for the user namespace",
- )
- createFlags.StringSlice(
- "group-add", []string{},
- "Add additional groups to join",
- )
- createFlags.Bool(
- "help", false, "",
- )
- createFlags.String(
- "health-cmd", "",
- "set a healthcheck command for the container ('none' disables the existing healthcheck)",
- )
- createFlags.String(
- "health-interval", cliconfig.DefaultHealthCheckInterval,
- "set an interval for the healthchecks (a value of disable results in no automatic timer setup)",
- )
- createFlags.Uint(
- "health-retries", cliconfig.DefaultHealthCheckRetries,
- "the number of retries allowed before a healthcheck is considered to be unhealthy",
- )
- createFlags.String(
- "health-start-period", cliconfig.DefaultHealthCheckStartPeriod,
- "the initialization time needed for a container to bootstrap",
- )
- createFlags.String(
- "health-timeout", cliconfig.DefaultHealthCheckTimeout,
- "the maximum time allowed to complete the healthcheck before an interval is considered failed",
- )
- createFlags.StringP(
- "hostname", "h", "",
- "Set container hostname",
- )
- createFlags.Bool(
- "http-proxy", true,
- "Set proxy environment variables in the container based on the host proxy vars",
- )
- createFlags.String(
- "image-volume", cliconfig.DefaultImageVolume,
- `Tells podman how to handle the builtin image volumes ("bind"|"tmpfs"|"ignore")`,
- )
- createFlags.Bool(
- "init", false,
- "Run an init binary inside the container that forwards signals and reaps processes",
- )
- createFlags.String(
- "init-path", getDefaultInitPath(),
- // Do not use the Value field for setting the default value to determine user input (i.e., non-empty string)
- fmt.Sprintf("Path to the container-init binary"),
- )
- createFlags.BoolP(
- "interactive", "i", false,
- "Keep STDIN open even if not attached",
- )
- createFlags.String(
- "ipc", getDefaultIPCNS(),
- "IPC namespace to use",
- )
- createFlags.String(
- "kernel-memory", "",
- "Kernel memory limit "+sizeWithUnitFormat,
- )
- createFlags.StringArrayP(
- "label", "l", []string{},
- "Set metadata on container",
- )
- createFlags.StringSlice(
- "label-file", []string{},
- "Read in a line delimited file of labels",
- )
- createFlags.String(
- "log-driver", "",
- "Logging driver for the container",
- )
- createFlags.StringSlice(
- "log-opt", []string{},
- "Logging driver options",
- )
- createFlags.StringP(
- "memory", "m", "",
- "Memory limit "+sizeWithUnitFormat,
- )
- createFlags.String(
- "memory-reservation", "",
- "Memory soft limit "+sizeWithUnitFormat,
- )
- createFlags.String(
- "memory-swap", "",
- "Swap limit equal to memory plus swap: '-1' to enable unlimited swap",
- )
- createFlags.Int64(
- "memory-swappiness", -1,
- "Tune container memory swappiness (0 to 100, or -1 for system default)",
- )
- createFlags.String(
- "name", "",
- "Assign a name to the container",
- )
- createFlags.Bool(
- "no-healthcheck", false,
- "Disable healthchecks on container",
- )
- createFlags.Bool(
- "oom-kill-disable", false,
- "Disable OOM Killer",
- )
- createFlags.Int(
- "oom-score-adj", 0,
- "Tune the host's OOM preferences (-1000 to 1000)",
- )
- createFlags.String(
- "override-arch", "",
- "use `ARCH` instead of the architecture of the machine for choosing images",
- )
- markFlagHidden(createFlags, "override-arch")
- createFlags.String(
- "override-os", "",
- "use `OS` instead of the running OS for choosing images",
- )
- markFlagHidden(createFlags, "override-os")
- createFlags.String(
- "pid", getDefaultPidNS(),
- "PID namespace to use",
- )
- createFlags.Int64(
- "pids-limit", getDefaultPidsLimit(),
- getDefaultPidsDescription(),
- )
- createFlags.String(
- "pod", "",
- "Run container in an existing pod",
- )
- createFlags.Bool(
- "privileged", false,
- "Give extended privileges to container",
- )
- createFlags.BoolP(
- "publish-all", "P", false,
- "Publish all exposed ports to random ports on the host interface",
- )
- createFlags.String(
- "pull", "missing",
- `Pull image before creating ("always"|"missing"|"never")`,
- )
- createFlags.BoolP(
- "quiet", "q", false,
- "Suppress output information when pulling images",
- )
- createFlags.Bool(
- "read-only", false,
- "Make containers root filesystem read-only",
- )
- createFlags.Bool(
- "read-only-tmpfs", true,
- "When running containers in read-only mode mount a read-write tmpfs on /run, /tmp and /var/tmp",
- )
- createFlags.String(
- "restart", "",
- `Restart policy to apply when a container exits ("always"|"no"|"on-failure")`,
- )
- createFlags.Bool(
- "rm", false,
- "Remove container (and pod if created) after exit",
- )
- createFlags.Bool(
- "rootfs", false,
- "The first argument is not an image but the rootfs to the exploded container",
- )
- createFlags.StringArray(
- "security-opt", getDefaultSecurityOptions(),
- fmt.Sprintf("Security Options"),
- )
- createFlags.String(
- "shm-size", getDefaultShmSize(),
- "Size of /dev/shm "+sizeWithUnitFormat,
- )
- createFlags.String(
- "stop-signal", "",
- "Signal to stop a container. Default is SIGTERM",
- )
- createFlags.Uint(
- "stop-timeout", defaultContainerConfig.Engine.StopTimeout,
- "Timeout (in seconds) to stop a container. Default is 10",
- )
- createFlags.StringSlice(
- "storage-opt", []string{},
- "Storage driver options per container",
- )
- createFlags.String(
- "subgidname", "",
- "Name of range listed in /etc/subgid for use in user namespace",
- )
- createFlags.String(
- "subuidname", "",
- "Name of range listed in /etc/subuid for use in user namespace",
- )
-
- createFlags.StringSlice(
- "sysctl", getDefaultSysctls(),
- "Sysctl options",
- )
- createFlags.String(
- "systemd", "true",
- `Run container in systemd mode ("true"|"false"|"always")`,
- )
- createFlags.StringArray(
- "tmpfs", []string{},
- "Mount a temporary filesystem (`tmpfs`) into a container",
- )
- createFlags.BoolP(
- "tty", "t", false,
- "Allocate a pseudo-TTY for container",
- )
- createFlags.StringSlice(
- "uidmap", []string{},
- "UID map to use for the user namespace",
- )
- createFlags.StringSlice(
- "ulimit", getDefaultUlimits(),
- "Ulimit options",
- )
- createFlags.StringP(
- "user", "u", "",
- "Username or UID (format: <name|uid>[:<group|gid>])",
- )
- createFlags.String(
- "userns", getDefaultUserNS(),
- "User namespace to use",
- )
- createFlags.String(
- "uts", getDefaultUTSNS(),
- "UTS namespace to use",
- )
- createFlags.StringArray(
- "mount", []string{},
- "Attach a filesystem mount to the container",
- )
- createFlags.StringArrayP(
- "volume", "v", getDefaultVolumes(),
- "Bind mount a volume into the container",
- )
- createFlags.StringSlice(
- "volumes-from", []string{},
- "Mount volumes from the specified container(s)",
- )
- createFlags.StringP(
- "workdir", "w", "",
- "Working directory inside the container",
- )
- createFlags.String(
- "seccomp-policy", "default",
- "Policy for selecting a seccomp profile (experimental)",
- )
-}
-
-func getFormat(c *cliconfig.PodmanCommand) (string, error) {
- format := strings.ToLower(c.String("format"))
- if strings.HasPrefix(format, buildah.OCI) {
- return buildah.OCIv1ImageManifest, nil
- }
-
- if strings.HasPrefix(format, buildah.DOCKER) {
- return buildah.Dockerv2ImageManifest, nil
- }
- return "", errors.Errorf("unrecognized image type %q", format)
-}
-
-// scrubServer removes 'http://' or 'https://' from the front of the
-// server/registry string if either is there. This will be mostly used
-// for user input from 'podman login' and 'podman logout'.
-func scrubServer(server string) string {
- server = strings.TrimPrefix(server, "https://")
- return strings.TrimPrefix(server, "http://")
-}
-
-// HelpTemplate returns the help template for podman commands
-// This uses the short and long options.
-// command should not use this.
-func HelpTemplate() string {
- return `{{.Short}}
-
-Description:
- {{.Long}}
-
-{{if or .Runnable .HasSubCommands}}{{.UsageString}}{{end}}`
-}
-
-// UsageTemplate returns the usage template for podman commands
-// This blocks the desplaying of the global options. The main podman
-// command should not use this.
-func UsageTemplate() string {
- return `Usage:{{if (and .Runnable (not .HasAvailableSubCommands))}}
- {{.UseLine}}{{end}}{{if .HasAvailableSubCommands}}
- {{.CommandPath}} [command]{{end}}{{if gt (len .Aliases) 0}}
-
-Aliases:
- {{.NameAndAliases}}{{end}}{{if .HasExample}}
-
-Examples:
- {{.Example}}{{end}}{{if .HasAvailableSubCommands}}
-
-Available Commands:{{range .Commands}}{{if (or .IsAvailableCommand (eq .Name "help"))}}
- {{rpad .Name .NamePadding }} {{.Short}}{{end}}{{end}}{{end}}{{if .HasAvailableLocalFlags}}
-
-Flags:
-{{.LocalFlags.FlagUsages | trimTrailingWhitespaces}}{{end}}{{if .HasAvailableInheritedFlags}}
-{{end}}
-`
-}
diff --git a/cmd/podmanV2/common/create.go b/cmd/podman/common/create.go
index 0b2f4532c..a7c8435c9 100644
--- a/cmd/podmanV2/common/create.go
+++ b/cmd/podman/common/create.go
@@ -4,7 +4,7 @@ import (
"fmt"
buildahcli "github.com/containers/buildah/pkg/cli"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/spf13/pflag"
)
diff --git a/cmd/podmanV2/common/create_opts.go b/cmd/podman/common/create_opts.go
index 9d12e4b26..9d12e4b26 100644
--- a/cmd/podmanV2/common/create_opts.go
+++ b/cmd/podman/common/create_opts.go
diff --git a/cmd/podmanV2/common/createparse.go b/cmd/podman/common/createparse.go
index 89524a04b..aca6f752e 100644
--- a/cmd/podmanV2/common/createparse.go
+++ b/cmd/podman/common/createparse.go
@@ -1,7 +1,7 @@
package common
import (
- "github.com/containers/libpod/cmd/podmanV2/parse"
+ "github.com/containers/libpod/cmd/podman/parse"
"github.com/containers/libpod/pkg/util"
"github.com/pkg/errors"
)
diff --git a/cmd/podmanV2/common/default.go b/cmd/podman/common/default.go
index 853f87ab6..853f87ab6 100644
--- a/cmd/podmanV2/common/default.go
+++ b/cmd/podman/common/default.go
diff --git a/cmd/podmanV2/common/inspect.go b/cmd/podman/common/inspect.go
index dfc6fe679..dfc6fe679 100644
--- a/cmd/podmanV2/common/inspect.go
+++ b/cmd/podman/common/inspect.go
diff --git a/cmd/podmanV2/common/netflags.go b/cmd/podman/common/netflags.go
index 41eed2988..41eed2988 100644
--- a/cmd/podmanV2/common/netflags.go
+++ b/cmd/podman/common/netflags.go
diff --git a/cmd/podmanV2/common/ports.go b/cmd/podman/common/ports.go
index 7e2b1e79d..7e2b1e79d 100644
--- a/cmd/podmanV2/common/ports.go
+++ b/cmd/podman/common/ports.go
diff --git a/cmd/podmanV2/common/specgen.go b/cmd/podman/common/specgen.go
index 2232fb4ba..87194a9fb 100644
--- a/cmd/podmanV2/common/specgen.go
+++ b/cmd/podman/common/specgen.go
@@ -10,7 +10,7 @@ import (
"time"
"github.com/containers/image/v5/manifest"
- "github.com/containers/libpod/cmd/podmanV2/parse"
+ "github.com/containers/libpod/cmd/podman/parse"
"github.com/containers/libpod/libpod/define"
ann "github.com/containers/libpod/pkg/annotations"
envLib "github.com/containers/libpod/pkg/env"
diff --git a/cmd/podmanV2/common/types.go b/cmd/podman/common/types.go
index 2427ae975..2427ae975 100644
--- a/cmd/podmanV2/common/types.go
+++ b/cmd/podman/common/types.go
diff --git a/cmd/podmanV2/common/util.go b/cmd/podman/common/util.go
index 47bbe12fa..47bbe12fa 100644
--- a/cmd/podmanV2/common/util.go
+++ b/cmd/podman/common/util.go
diff --git a/cmd/podman/common_libpod.go b/cmd/podman/common_libpod.go
deleted file mode 100644
index b97ff5986..000000000
--- a/cmd/podman/common_libpod.go
+++ /dev/null
@@ -1,66 +0,0 @@
-//build !remoteclient
-
-package main
-
-import (
- "fmt"
- "os"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/libpod"
- "github.com/containers/libpod/libpod/define"
- "github.com/pkg/errors"
-)
-
-// getAllOrLatestContainers tries to return the correct list of containers
-// depending if --all, --latest or <container-id> is used.
-// It requires the Context (c) and the Runtime (runtime). As different
-// commands are using different container state for the --all option
-// the desired state has to be specified in filterState. If no filter
-// is desired a -1 can be used to get all containers. For a better
-// error message, if the filter fails, a corresponding verb can be
-// specified which will then appear in the error message.
-func getAllOrLatestContainers(c *cliconfig.PodmanCommand, runtime *libpod.Runtime, filterState define.ContainerStatus, verb string) ([]*libpod.Container, error) {
- var containers []*libpod.Container
- var lastError error
- var err error
- switch {
- case c.Bool("all"):
- if filterState != -1 {
- var filterFuncs []libpod.ContainerFilter
- filterFuncs = append(filterFuncs, func(c *libpod.Container) bool {
- state, _ := c.State()
- return state == filterState
- })
- containers, err = runtime.GetContainers(filterFuncs...)
- } else {
- containers, err = runtime.GetContainers()
- }
- if err != nil {
- return nil, errors.Wrapf(err, "unable to get %s containers", verb)
- }
- case c.Bool("latest"):
- lastCtr, err := runtime.GetLatestContainer()
- if err != nil {
- return nil, errors.Wrapf(err, "unable to get latest container")
- }
- containers = append(containers, lastCtr)
- default:
- args := c.InputArgs
- for _, i := range args {
- container, err := runtime.LookupContainer(i)
- if err != nil {
- if lastError != nil {
- fmt.Fprintln(os.Stderr, lastError)
- }
- lastError = errors.Wrapf(err, "unable to find container %s", i)
- }
- if container != nil {
- // This is here to make sure this does not return [<nil>] but only nil
- containers = append(containers, container)
- }
- }
- }
-
- return containers, lastError
-}
diff --git a/cmd/podman/container.go b/cmd/podman/container.go
deleted file mode 100644
index 66b58f06e..000000000
--- a/cmd/podman/container.go
+++ /dev/null
@@ -1,93 +0,0 @@
-package main
-
-import (
- "strings"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/spf13/cobra"
-)
-
-var (
- containerDescription = "Manage containers"
- containerCommand = cliconfig.PodmanCommand{
- Command: &cobra.Command{
- Use: "container",
- Short: "Manage Containers",
- Long: containerDescription,
- TraverseChildren: true,
- RunE: commandRunE(),
- },
- }
-
- contInspectSubCommand cliconfig.InspectValues
- _contInspectSubCommand = &cobra.Command{
- Use: strings.Replace(_inspectCommand.Use, "| IMAGE", "", 1),
- Short: "Display the configuration of a container",
- Long: `Displays the low-level information on a container identified by name or ID.`,
- RunE: func(cmd *cobra.Command, args []string) error {
- contInspectSubCommand.InputArgs = args
- contInspectSubCommand.GlobalFlags = MainGlobalOpts
- return inspectCmd(&contInspectSubCommand)
- },
- Example: `podman container inspect myCtr
- podman container inspect -l --format '{{.Id}} {{.Config.Labels}}'`,
- }
-
- listSubCommand cliconfig.PsValues
- _listSubCommand = &cobra.Command{
- Use: strings.Replace(_psCommand.Use, "ps", "list", 1),
- Args: noSubArgs,
- Short: _psCommand.Short,
- Long: _psCommand.Long,
- Aliases: []string{"ls"},
- RunE: func(cmd *cobra.Command, args []string) error {
- listSubCommand.InputArgs = args
- listSubCommand.GlobalFlags = MainGlobalOpts
- return psCmd(&listSubCommand)
- },
- Example: strings.Replace(_psCommand.Example, "podman ps", "podman container list", -1),
- }
-
- // Commands that are universally implemented.
- containerCommands = []*cobra.Command{
- _attachCommand,
- _checkpointCommand,
- _commitCommand,
- _containerExistsCommand,
- _contInspectSubCommand,
- _diffCommand,
- _execCommand,
- _exportCommand,
- _createCommand,
- _initCommand,
- _killCommand,
- _listSubCommand,
- _logsCommand,
- _pauseCommand,
- _portCommand,
- _pruneContainersCommand,
- _restartCommand,
- _restoreCommand,
- _runCommand,
- _rmCommand,
- _startCommand,
- _stopCommand,
- _topCommand,
- _unpauseCommand,
- _waitCommand,
- }
-)
-
-func init() {
- contInspectSubCommand.Command = _contInspectSubCommand
- inspectInit(&contInspectSubCommand)
-
- listSubCommand.Command = _listSubCommand
- psInit(&listSubCommand)
-
- containerCommand.AddCommand(containerCommands...)
- containerCommand.AddCommand(getContainerSubCommands()...)
- containerCommand.SetUsageTemplate(UsageTemplate())
-
- rootCmd.AddCommand(containerCommand.Command)
-}
diff --git a/cmd/podmanV2/containers/attach.go b/cmd/podman/containers/attach.go
index 9b6de0051..700be1f84 100644
--- a/cmd/podmanV2/containers/attach.go
+++ b/cmd/podman/containers/attach.go
@@ -3,8 +3,8 @@ package containers
import (
"os"
- "github.com/containers/libpod/cmd/podmanV2/common"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/common"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/pkg/errors"
"github.com/spf13/cobra"
diff --git a/cmd/podmanV2/containers/checkpoint.go b/cmd/podman/containers/checkpoint.go
index 7c3e551bc..7259ed38b 100644
--- a/cmd/podmanV2/containers/checkpoint.go
+++ b/cmd/podman/containers/checkpoint.go
@@ -4,9 +4,9 @@ import (
"context"
"fmt"
- "github.com/containers/libpod/cmd/podmanV2/parse"
- "github.com/containers/libpod/cmd/podmanV2/registry"
- "github.com/containers/libpod/cmd/podmanV2/utils"
+ "github.com/containers/libpod/cmd/podman/parse"
+ "github.com/containers/libpod/cmd/podman/registry"
+ "github.com/containers/libpod/cmd/podman/utils"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/containers/libpod/pkg/rootless"
"github.com/pkg/errors"
diff --git a/cmd/podmanV2/containers/cleanup.go b/cmd/podman/containers/cleanup.go
index 3f45db160..2bcd1c1e9 100644
--- a/cmd/podmanV2/containers/cleanup.go
+++ b/cmd/podman/containers/cleanup.go
@@ -3,9 +3,9 @@ package containers
import (
"fmt"
- "github.com/containers/libpod/cmd/podmanV2/parse"
- "github.com/containers/libpod/cmd/podmanV2/registry"
- "github.com/containers/libpod/cmd/podmanV2/utils"
+ "github.com/containers/libpod/cmd/podman/parse"
+ "github.com/containers/libpod/cmd/podman/registry"
+ "github.com/containers/libpod/cmd/podman/utils"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
)
diff --git a/cmd/podmanV2/containers/commit.go b/cmd/podman/containers/commit.go
index 083fcbc6c..eaba07981 100644
--- a/cmd/podmanV2/containers/commit.go
+++ b/cmd/podman/containers/commit.go
@@ -7,7 +7,7 @@ import (
"os"
"strings"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/pkg/errors"
"github.com/spf13/cobra"
diff --git a/cmd/podmanV2/containers/container.go b/cmd/podman/containers/container.go
index 30829991d..8564b23f4 100644
--- a/cmd/podmanV2/containers/container.go
+++ b/cmd/podman/containers/container.go
@@ -4,7 +4,7 @@ import (
"os"
"github.com/containers/common/pkg/config"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
diff --git a/cmd/podmanV2/containers/create.go b/cmd/podman/containers/create.go
index 8cfb74539..292d5c1ad 100644
--- a/cmd/podmanV2/containers/create.go
+++ b/cmd/podman/containers/create.go
@@ -3,8 +3,8 @@ package containers
import (
"fmt"
- "github.com/containers/libpod/cmd/podmanV2/common"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/common"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/containers/libpod/pkg/specgen"
"github.com/pkg/errors"
diff --git a/cmd/podmanV2/containers/diff.go b/cmd/podman/containers/diff.go
index eb76858f3..ebc0d8ea1 100644
--- a/cmd/podmanV2/containers/diff.go
+++ b/cmd/podman/containers/diff.go
@@ -1,8 +1,8 @@
package containers
import (
- "github.com/containers/libpod/cmd/podmanV2/registry"
- "github.com/containers/libpod/cmd/podmanV2/report"
+ "github.com/containers/libpod/cmd/podman/registry"
+ "github.com/containers/libpod/cmd/podman/report"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/pkg/errors"
"github.com/spf13/cobra"
diff --git a/cmd/podmanV2/containers/exec.go b/cmd/podman/containers/exec.go
index b4583909e..68ecb2196 100644
--- a/cmd/podmanV2/containers/exec.go
+++ b/cmd/podman/containers/exec.go
@@ -4,8 +4,8 @@ import (
"bufio"
"os"
- "github.com/containers/libpod/cmd/podmanV2/common"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/common"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
envLib "github.com/containers/libpod/pkg/env"
"github.com/pkg/errors"
diff --git a/cmd/podmanV2/containers/exists.go b/cmd/podman/containers/exists.go
index 22c798fcd..f1bc09f78 100644
--- a/cmd/podmanV2/containers/exists.go
+++ b/cmd/podman/containers/exists.go
@@ -4,7 +4,7 @@ import (
"context"
"os"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
)
diff --git a/cmd/podmanV2/containers/export.go b/cmd/podman/containers/export.go
index a7befdae9..5110812d1 100644
--- a/cmd/podmanV2/containers/export.go
+++ b/cmd/podman/containers/export.go
@@ -4,8 +4,8 @@ import (
"context"
"os"
- "github.com/containers/libpod/cmd/podmanV2/parse"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/parse"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/pkg/errors"
"github.com/spf13/cobra"
diff --git a/cmd/podmanV2/containers/init.go b/cmd/podman/containers/init.go
index 0060c8f09..bb02f22fd 100644
--- a/cmd/podmanV2/containers/init.go
+++ b/cmd/podman/containers/init.go
@@ -3,9 +3,9 @@ package containers
import (
"fmt"
- "github.com/containers/libpod/cmd/podmanV2/parse"
- "github.com/containers/libpod/cmd/podmanV2/registry"
- "github.com/containers/libpod/cmd/podmanV2/utils"
+ "github.com/containers/libpod/cmd/podman/parse"
+ "github.com/containers/libpod/cmd/podman/registry"
+ "github.com/containers/libpod/cmd/podman/utils"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
)
diff --git a/cmd/podmanV2/containers/inspect.go b/cmd/podman/containers/inspect.go
index e6d4cb6bc..8d591832b 100644
--- a/cmd/podmanV2/containers/inspect.go
+++ b/cmd/podman/containers/inspect.go
@@ -7,8 +7,8 @@ import (
"strings"
"text/template"
- "github.com/containers/libpod/cmd/podmanV2/common"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/common"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
json "github.com/json-iterator/go"
diff --git a/cmd/podmanV2/containers/kill.go b/cmd/podman/containers/kill.go
index e145fbc3f..5341457fb 100644
--- a/cmd/podmanV2/containers/kill.go
+++ b/cmd/podman/containers/kill.go
@@ -5,9 +5,9 @@ import (
"errors"
"fmt"
- "github.com/containers/libpod/cmd/podmanV2/parse"
- "github.com/containers/libpod/cmd/podmanV2/registry"
- "github.com/containers/libpod/cmd/podmanV2/utils"
+ "github.com/containers/libpod/cmd/podman/parse"
+ "github.com/containers/libpod/cmd/podman/registry"
+ "github.com/containers/libpod/cmd/podman/utils"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/containers/libpod/pkg/signal"
"github.com/spf13/cobra"
diff --git a/cmd/podmanV2/containers/list.go b/cmd/podman/containers/list.go
index 630d9bbc7..938fb63d3 100644
--- a/cmd/podmanV2/containers/list.go
+++ b/cmd/podman/containers/list.go
@@ -1,7 +1,7 @@
package containers
import (
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
)
diff --git a/cmd/podmanV2/containers/logs.go b/cmd/podman/containers/logs.go
index db549c03b..5dec71fdd 100644
--- a/cmd/podmanV2/containers/logs.go
+++ b/cmd/podman/containers/logs.go
@@ -3,7 +3,7 @@ package containers
import (
"os"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/containers/libpod/pkg/util"
"github.com/pkg/errors"
diff --git a/cmd/podmanV2/containers/mount.go b/cmd/podman/containers/mount.go
index dbd83de57..25eec46ca 100644
--- a/cmd/podmanV2/containers/mount.go
+++ b/cmd/podman/containers/mount.go
@@ -7,9 +7,9 @@ import (
"text/tabwriter"
"text/template"
- "github.com/containers/libpod/cmd/podmanV2/parse"
- "github.com/containers/libpod/cmd/podmanV2/registry"
- "github.com/containers/libpod/cmd/podmanV2/utils"
+ "github.com/containers/libpod/cmd/podman/parse"
+ "github.com/containers/libpod/cmd/podman/registry"
+ "github.com/containers/libpod/cmd/podman/utils"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
)
diff --git a/cmd/podmanV2/containers/pause.go b/cmd/podman/containers/pause.go
index d5493167c..f3654b5c1 100644
--- a/cmd/podmanV2/containers/pause.go
+++ b/cmd/podman/containers/pause.go
@@ -4,8 +4,8 @@ import (
"context"
"fmt"
- "github.com/containers/libpod/cmd/podmanV2/registry"
- "github.com/containers/libpod/cmd/podmanV2/utils"
+ "github.com/containers/libpod/cmd/podman/registry"
+ "github.com/containers/libpod/cmd/podman/utils"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/containers/libpod/pkg/rootless"
"github.com/pkg/errors"
diff --git a/cmd/podmanV2/containers/prune.go b/cmd/podman/containers/prune.go
index 2d3af5d1d..df627259c 100644
--- a/cmd/podmanV2/containers/prune.go
+++ b/cmd/podman/containers/prune.go
@@ -8,8 +8,8 @@ import (
"os"
"strings"
- "github.com/containers/libpod/cmd/podmanV2/registry"
- "github.com/containers/libpod/cmd/podmanV2/utils"
+ "github.com/containers/libpod/cmd/podman/registry"
+ "github.com/containers/libpod/cmd/podman/utils"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/pkg/errors"
"github.com/spf13/cobra"
diff --git a/cmd/podmanV2/containers/ps.go b/cmd/podman/containers/ps.go
index 355b1b4be..57b81a609 100644
--- a/cmd/podmanV2/containers/ps.go
+++ b/cmd/podman/containers/ps.go
@@ -13,7 +13,7 @@ import (
tm "github.com/buger/goterm"
"github.com/containers/buildah/pkg/formats"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/cri-o/ocicni/pkg/ocicni"
"github.com/docker/go-units"
diff --git a/cmd/podmanV2/containers/restart.go b/cmd/podman/containers/restart.go
index becc56616..68b6de4ca 100644
--- a/cmd/podmanV2/containers/restart.go
+++ b/cmd/podman/containers/restart.go
@@ -4,9 +4,9 @@ import (
"context"
"fmt"
- "github.com/containers/libpod/cmd/podmanV2/parse"
- "github.com/containers/libpod/cmd/podmanV2/registry"
- "github.com/containers/libpod/cmd/podmanV2/utils"
+ "github.com/containers/libpod/cmd/podman/parse"
+ "github.com/containers/libpod/cmd/podman/registry"
+ "github.com/containers/libpod/cmd/podman/utils"
"github.com/containers/libpod/libpod/define"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/pkg/errors"
diff --git a/cmd/podmanV2/containers/restore.go b/cmd/podman/containers/restore.go
index 6cab6ab50..3bc17206a 100644
--- a/cmd/podmanV2/containers/restore.go
+++ b/cmd/podman/containers/restore.go
@@ -4,9 +4,9 @@ import (
"context"
"fmt"
- "github.com/containers/libpod/cmd/podmanV2/parse"
- "github.com/containers/libpod/cmd/podmanV2/registry"
- "github.com/containers/libpod/cmd/podmanV2/utils"
+ "github.com/containers/libpod/cmd/podman/parse"
+ "github.com/containers/libpod/cmd/podman/registry"
+ "github.com/containers/libpod/cmd/podman/utils"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/containers/libpod/pkg/rootless"
"github.com/pkg/errors"
diff --git a/cmd/podmanV2/containers/rm.go b/cmd/podman/containers/rm.go
index 916dd2577..a22880d93 100644
--- a/cmd/podmanV2/containers/rm.go
+++ b/cmd/podman/containers/rm.go
@@ -4,9 +4,9 @@ import (
"context"
"fmt"
- "github.com/containers/libpod/cmd/podmanV2/parse"
- "github.com/containers/libpod/cmd/podmanV2/registry"
- "github.com/containers/libpod/cmd/podmanV2/utils"
+ "github.com/containers/libpod/cmd/podman/parse"
+ "github.com/containers/libpod/cmd/podman/registry"
+ "github.com/containers/libpod/cmd/podman/utils"
"github.com/containers/libpod/libpod/define"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/pkg/errors"
diff --git a/cmd/podmanV2/containers/run.go b/cmd/podman/containers/run.go
index ca9db88f8..91edb6bda 100644
--- a/cmd/podmanV2/containers/run.go
+++ b/cmd/podman/containers/run.go
@@ -6,8 +6,8 @@ import (
"strings"
"github.com/containers/common/pkg/config"
- "github.com/containers/libpod/cmd/podmanV2/common"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/common"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/libpod/define"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/containers/libpod/pkg/specgen"
diff --git a/cmd/podmanV2/containers/start.go b/cmd/podman/containers/start.go
index b5ed6d6f6..33e5a3094 100644
--- a/cmd/podmanV2/containers/start.go
+++ b/cmd/podman/containers/start.go
@@ -4,9 +4,9 @@ import (
"fmt"
"os"
- "github.com/containers/libpod/cmd/podmanV2/common"
- "github.com/containers/libpod/cmd/podmanV2/registry"
- "github.com/containers/libpod/cmd/podmanV2/utils"
+ "github.com/containers/libpod/cmd/podman/common"
+ "github.com/containers/libpod/cmd/podman/registry"
+ "github.com/containers/libpod/cmd/podman/utils"
"github.com/containers/libpod/libpod/define"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/pkg/errors"
diff --git a/cmd/podmanV2/containers/stop.go b/cmd/podman/containers/stop.go
index d94df69be..1ee9186a7 100644
--- a/cmd/podmanV2/containers/stop.go
+++ b/cmd/podman/containers/stop.go
@@ -4,9 +4,9 @@ import (
"context"
"fmt"
- "github.com/containers/libpod/cmd/podmanV2/parse"
- "github.com/containers/libpod/cmd/podmanV2/registry"
- "github.com/containers/libpod/cmd/podmanV2/utils"
+ "github.com/containers/libpod/cmd/podman/parse"
+ "github.com/containers/libpod/cmd/podman/registry"
+ "github.com/containers/libpod/cmd/podman/utils"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
)
diff --git a/cmd/podmanV2/containers/top.go b/cmd/podman/containers/top.go
index 233085e75..db5213863 100644
--- a/cmd/podmanV2/containers/top.go
+++ b/cmd/podman/containers/top.go
@@ -7,7 +7,7 @@ import (
"strings"
"text/tabwriter"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/containers/psgo"
"github.com/pkg/errors"
diff --git a/cmd/podmanV2/containers/unmount.go b/cmd/podman/containers/unmount.go
index ef6add950..3dbfc1eae 100644
--- a/cmd/podmanV2/containers/unmount.go
+++ b/cmd/podman/containers/unmount.go
@@ -3,9 +3,9 @@ package containers
import (
"fmt"
- "github.com/containers/libpod/cmd/podmanV2/parse"
- "github.com/containers/libpod/cmd/podmanV2/registry"
- "github.com/containers/libpod/cmd/podmanV2/utils"
+ "github.com/containers/libpod/cmd/podman/parse"
+ "github.com/containers/libpod/cmd/podman/registry"
+ "github.com/containers/libpod/cmd/podman/utils"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
)
diff --git a/cmd/podmanV2/containers/unpause.go b/cmd/podman/containers/unpause.go
index 8b8cde9b2..ef874b042 100644
--- a/cmd/podmanV2/containers/unpause.go
+++ b/cmd/podman/containers/unpause.go
@@ -4,8 +4,8 @@ import (
"context"
"fmt"
- "github.com/containers/libpod/cmd/podmanV2/registry"
- "github.com/containers/libpod/cmd/podmanV2/utils"
+ "github.com/containers/libpod/cmd/podman/registry"
+ "github.com/containers/libpod/cmd/podman/utils"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/containers/libpod/pkg/rootless"
"github.com/pkg/errors"
diff --git a/cmd/podmanV2/containers/utils.go b/cmd/podman/containers/utils.go
index 0c09d3e40..0c09d3e40 100644
--- a/cmd/podmanV2/containers/utils.go
+++ b/cmd/podman/containers/utils.go
diff --git a/cmd/podmanV2/containers/wait.go b/cmd/podman/containers/wait.go
index 0a165317b..83c164e16 100644
--- a/cmd/podmanV2/containers/wait.go
+++ b/cmd/podman/containers/wait.go
@@ -5,8 +5,8 @@ import (
"fmt"
"time"
- "github.com/containers/libpod/cmd/podmanV2/registry"
- "github.com/containers/libpod/cmd/podmanV2/utils"
+ "github.com/containers/libpod/cmd/podman/registry"
+ "github.com/containers/libpod/cmd/podman/utils"
"github.com/containers/libpod/libpod/define"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/pkg/errors"
diff --git a/cmd/podman/containers_prune.go b/cmd/podman/containers_prune.go
deleted file mode 100644
index 3953a489d..000000000
--- a/cmd/podman/containers_prune.go
+++ /dev/null
@@ -1,86 +0,0 @@
-package main
-
-import (
- "bufio"
- "fmt"
- "os"
- "strings"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/cmd/podman/shared"
- "github.com/containers/libpod/libpod/define"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- pruneContainersCommand cliconfig.PruneContainersValues
- pruneContainersDescription = `
- podman container prune
-
- Removes all stopped | exited containers
-`
- _pruneContainersCommand = &cobra.Command{
- Use: "prune",
- Args: noSubArgs,
- Short: "Remove all stopped | exited containers",
- Long: pruneContainersDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- pruneContainersCommand.InputArgs = args
- pruneContainersCommand.GlobalFlags = MainGlobalOpts
- pruneContainersCommand.Remote = remoteclient
- return pruneContainersCmd(&pruneContainersCommand)
- },
- }
-)
-
-func init() {
- pruneContainersCommand.Command = _pruneContainersCommand
- pruneContainersCommand.SetHelpTemplate(HelpTemplate())
- pruneContainersCommand.SetUsageTemplate(UsageTemplate())
- flags := pruneContainersCommand.Flags()
- flags.BoolVarP(&pruneContainersCommand.Force, "force", "f", false, "Skip interactive prompt for container removal")
- flags.StringArrayVar(&pruneContainersCommand.Filter, "filter", []string{}, "Provide filter values (e.g. 'until=<timestamp>')")
-}
-
-func pruneContainersCmd(c *cliconfig.PruneContainersValues) error {
- if !c.Force {
- reader := bufio.NewReader(os.Stdin)
- fmt.Printf(`WARNING! This will remove all stopped containers.
-Are you sure you want to continue? [y/N] `)
- answer, err := reader.ReadString('\n')
- if err != nil {
- return errors.Wrapf(err, "error reading input")
- }
- if strings.ToLower(answer)[0] != 'y' {
- return nil
- }
- }
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- maxWorkers := shared.DefaultPoolSize("prune")
- if c.GlobalIsSet("max-workers") {
- maxWorkers = c.GlobalFlags.MaxWorks
- }
- ok, failures, err := runtime.Prune(getContext(), maxWorkers, c.Filter)
- if err != nil {
- if errors.Cause(err) == define.ErrNoSuchCtr {
- if len(c.InputArgs) > 1 {
- exitCode = define.ExecErrorCodeGeneric
- } else {
- exitCode = 1
- }
- }
- return err
- }
- if len(failures) > 0 {
- exitCode = define.ExecErrorCodeGeneric
- }
- return printCmdResults(ok, failures)
-}
diff --git a/cmd/podman/cp.go b/cmd/podman/cp.go
deleted file mode 100644
index 205103381..000000000
--- a/cmd/podman/cp.go
+++ /dev/null
@@ -1,490 +0,0 @@
-package main
-
-import (
- "archive/tar"
- "fmt"
- "io"
- "os"
- "path/filepath"
- "strings"
-
- "github.com/containers/buildah/pkg/chrootuser"
- "github.com/containers/buildah/util"
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/cmd/podman/libpodruntime"
- "github.com/containers/libpod/libpod"
- "github.com/containers/libpod/libpod/define"
- "github.com/containers/libpod/pkg/cgroups"
- "github.com/containers/libpod/pkg/rootless"
- "github.com/containers/storage"
- "github.com/containers/storage/pkg/archive"
- "github.com/containers/storage/pkg/chrootarchive"
- "github.com/containers/storage/pkg/idtools"
- securejoin "github.com/cyphar/filepath-securejoin"
- "github.com/opencontainers/go-digest"
- "github.com/opencontainers/runtime-spec/specs-go"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- "github.com/spf13/cobra"
-)
-
-var (
- cpCommand cliconfig.CpValues
-
- cpDescription = `Command copies the contents of SRC_PATH to the DEST_PATH.
-
- You can copy from the container's file system to the local machine or the reverse, from the local filesystem to the container. If "-" is specified for either the SRC_PATH or DEST_PATH, you can also stream a tar archive from STDIN or to STDOUT. The CONTAINER can be a running or stopped container. The SRC_PATH or DEST_PATH can be a file or directory.
-`
- _cpCommand = &cobra.Command{
- Use: "cp [flags] SRC_PATH DEST_PATH",
- Short: "Copy files/folders between a container and the local filesystem",
- Long: cpDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- cpCommand.InputArgs = args
- cpCommand.GlobalFlags = MainGlobalOpts
- cpCommand.Remote = remoteclient
- return cpCmd(&cpCommand)
- },
- Example: "[CONTAINER:]SRC_PATH [CONTAINER:]DEST_PATH",
- }
-)
-
-func init() {
- cpCommand.Command = _cpCommand
- flags := cpCommand.Flags()
- flags.BoolVar(&cpCommand.Extract, "extract", false, "Extract the tar file into the destination directory.")
- flags.BoolVar(&cpCommand.Pause, "pause", copyPause(), "Pause the container while copying")
- cpCommand.SetHelpTemplate(HelpTemplate())
- cpCommand.SetUsageTemplate(UsageTemplate())
-}
-
-func cpCmd(c *cliconfig.CpValues) error {
- args := c.InputArgs
- if len(args) != 2 {
- return errors.Errorf("you must provide a source path and a destination path")
- }
-
- runtime, err := libpodruntime.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- return copyBetweenHostAndContainer(runtime, args[0], args[1], c.Extract, c.Pause)
-}
-
-func copyBetweenHostAndContainer(runtime *libpod.Runtime, src string, dest string, extract bool, pause bool) error {
-
- srcCtr, srcPath := parsePath(runtime, src)
- destCtr, destPath := parsePath(runtime, dest)
-
- if (srcCtr == nil && destCtr == nil) || (srcCtr != nil && destCtr != nil) {
- return errors.Errorf("invalid arguments %s, %s you must use just one container", src, dest)
- }
-
- if len(srcPath) == 0 || len(destPath) == 0 {
- return errors.Errorf("invalid arguments %s, %s you must specify paths", src, dest)
- }
- ctr := srcCtr
- isFromHostToCtr := ctr == nil
- if isFromHostToCtr {
- ctr = destCtr
- }
-
- mountPoint, err := ctr.Mount()
- if err != nil {
- return err
- }
- defer func() {
- if err := ctr.Unmount(false); err != nil {
- logrus.Errorf("unable to umount container '%s': %q", ctr.ID(), err)
- }
- }()
-
- if pause {
- if err := ctr.Pause(); err != nil {
- // An invalid state error is fine.
- // The container isn't running or is already paused.
- // TODO: We can potentially start the container while
- // the copy is running, which still allows a race where
- // malicious code could mess with the symlink.
- if errors.Cause(err) != define.ErrCtrStateInvalid {
- return err
- }
- } else {
- // Only add the defer if we actually paused
- defer func() {
- if err := ctr.Unpause(); err != nil {
- logrus.Errorf("Error unpausing container after copying: %v", err)
- }
- }()
- }
- }
-
- user, err := getUser(mountPoint, ctr.User())
- if err != nil {
- return err
- }
- idMappingOpts, err := ctr.IDMappings()
- if err != nil {
- return errors.Wrapf(err, "error getting IDMappingOptions")
- }
- destOwner := idtools.IDPair{UID: int(user.UID), GID: int(user.GID)}
- hostUID, hostGID, err := util.GetHostIDs(convertIDMap(idMappingOpts.UIDMap), convertIDMap(idMappingOpts.GIDMap), user.UID, user.GID)
- if err != nil {
- return err
- }
-
- hostOwner := idtools.IDPair{UID: int(hostUID), GID: int(hostGID)}
-
- if isFromHostToCtr {
- if isVol, volDestName, volName := isVolumeDestName(destPath, ctr); isVol { //nolint(gocritic)
- path, err := pathWithVolumeMount(ctr, runtime, volDestName, volName, destPath)
- if err != nil {
- return errors.Wrapf(err, "error getting destination path from volume %s", volDestName)
- }
- destPath = path
- } else if isBindMount, mount := isBindMountDestName(destPath, ctr); isBindMount { //nolint(gocritic)
- path, err := pathWithBindMountSource(mount, destPath)
- if err != nil {
- return errors.Wrapf(err, "error getting destination path from bind mount %s", mount.Destination)
- }
- destPath = path
- } else if filepath.IsAbs(destPath) { //nolint(gocritic)
- cleanedPath, err := securejoin.SecureJoin(mountPoint, destPath)
- if err != nil {
- return err
- }
- destPath = cleanedPath
- } else { //nolint(gocritic)
- ctrWorkDir, err := securejoin.SecureJoin(mountPoint, ctr.WorkingDir())
- if err != nil {
- return err
- }
- if err = idtools.MkdirAllAndChownNew(ctrWorkDir, 0755, hostOwner); err != nil {
- return errors.Wrapf(err, "error creating directory %q", destPath)
- }
- cleanedPath, err := securejoin.SecureJoin(mountPoint, filepath.Join(ctr.WorkingDir(), destPath))
- if err != nil {
- return err
- }
- destPath = cleanedPath
- }
- } else {
- destOwner = idtools.IDPair{UID: os.Getuid(), GID: os.Getgid()}
- if isVol, volDestName, volName := isVolumeDestName(srcPath, ctr); isVol { //nolint(gocritic)
- path, err := pathWithVolumeMount(ctr, runtime, volDestName, volName, srcPath)
- if err != nil {
- return errors.Wrapf(err, "error getting source path from volume %s", volDestName)
- }
- srcPath = path
- } else if isBindMount, mount := isBindMountDestName(srcPath, ctr); isBindMount { //nolint(gocritic)
- path, err := pathWithBindMountSource(mount, srcPath)
- if err != nil {
- return errors.Wrapf(err, "error getting source path from bind mount %s", mount.Destination)
- }
- srcPath = path
- } else if filepath.IsAbs(srcPath) { //nolint(gocritic)
- cleanedPath, err := securejoin.SecureJoin(mountPoint, srcPath)
- if err != nil {
- return err
- }
- srcPath = cleanedPath
- } else { //nolint(gocritic)
- cleanedPath, err := securejoin.SecureJoin(mountPoint, filepath.Join(ctr.WorkingDir(), srcPath))
- if err != nil {
- return err
- }
- srcPath = cleanedPath
- }
- }
-
- if !filepath.IsAbs(destPath) {
- dir, err := os.Getwd()
- if err != nil {
- return errors.Wrapf(err, "err getting current working directory")
- }
- destPath = filepath.Join(dir, destPath)
- }
-
- if src == "-" {
- srcPath = os.Stdin.Name()
- extract = true
- }
- return copy(srcPath, destPath, src, dest, idMappingOpts, &destOwner, extract, isFromHostToCtr)
-}
-
-func getUser(mountPoint string, userspec string) (specs.User, error) {
- uid, gid, _, err := chrootuser.GetUser(mountPoint, userspec)
- u := specs.User{
- UID: uid,
- GID: gid,
- Username: userspec,
- }
- if !strings.Contains(userspec, ":") {
- groups, err2 := chrootuser.GetAdditionalGroupsForUser(mountPoint, uint64(u.UID))
- if err2 != nil {
- if errors.Cause(err2) != chrootuser.ErrNoSuchUser && err == nil {
- err = err2
- }
- } else {
- u.AdditionalGids = groups
- }
-
- }
- return u, err
-}
-
-func parsePath(runtime *libpod.Runtime, path string) (*libpod.Container, string) {
- pathArr := strings.SplitN(path, ":", 2)
- if len(pathArr) == 2 {
- ctr, err := runtime.LookupContainer(pathArr[0])
- if err == nil {
- return ctr, pathArr[1]
- }
- }
- return nil, path
-}
-
-func evalSymlinks(path string) (string, error) {
- if path == os.Stdin.Name() {
- return path, nil
- }
- return filepath.EvalSymlinks(path)
-}
-
-func getPathInfo(path string) (string, os.FileInfo, error) {
- path, err := evalSymlinks(path)
- if err != nil {
- return "", nil, errors.Wrapf(err, "error evaluating symlinks %q", path)
- }
- srcfi, err := os.Stat(path)
- if err != nil {
- return "", nil, errors.Wrapf(err, "error reading path %q", path)
- }
- return path, srcfi, nil
-}
-
-func copy(srcPath, destPath, src, dest string, idMappingOpts storage.IDMappingOptions, chownOpts *idtools.IDPair, extract, isFromHostToCtr bool) error {
- srcPath, err := evalSymlinks(srcPath)
- if err != nil {
- return errors.Wrapf(err, "error evaluating symlinks %q", srcPath)
- }
-
- srcPath, srcfi, err := getPathInfo(srcPath)
- if err != nil {
- return err
- }
-
- filename := filepath.Base(destPath)
- if filename == "-" && !isFromHostToCtr {
- err := streamFileToStdout(srcPath, srcfi)
- if err != nil {
- return errors.Wrapf(err, "error streaming source file %s to Stdout", srcPath)
- }
- return nil
- }
-
- destdir := destPath
- if !srcfi.IsDir() {
- destdir = filepath.Dir(destPath)
- }
- _, err = os.Stat(destdir)
- if err != nil && !os.IsNotExist(err) {
- return errors.Wrapf(err, "error checking directory %q", destdir)
- }
- destDirIsExist := err == nil
- if err = os.MkdirAll(destdir, 0755); err != nil {
- return errors.Wrapf(err, "error creating directory %q", destdir)
- }
-
- // return functions for copying items
- copyFileWithTar := chrootarchive.CopyFileWithTarAndChown(chownOpts, digest.Canonical.Digester().Hash(), idMappingOpts.UIDMap, idMappingOpts.GIDMap)
- copyWithTar := chrootarchive.CopyWithTarAndChown(chownOpts, digest.Canonical.Digester().Hash(), idMappingOpts.UIDMap, idMappingOpts.GIDMap)
- untarPath := chrootarchive.UntarPathAndChown(chownOpts, digest.Canonical.Digester().Hash(), idMappingOpts.UIDMap, idMappingOpts.GIDMap)
-
- if srcfi.IsDir() {
- logrus.Debugf("copying %q to %q", srcPath+string(os.PathSeparator)+"*", dest+string(os.PathSeparator)+"*")
- if destDirIsExist && !strings.HasSuffix(src, fmt.Sprintf("%s.", string(os.PathSeparator))) {
- destPath = filepath.Join(destPath, filepath.Base(srcPath))
- }
- if err = copyWithTar(srcPath, destPath); err != nil {
- return errors.Wrapf(err, "error copying %q to %q", srcPath, dest)
- }
- return nil
- }
-
- if extract {
- // We're extracting an archive into the destination directory.
- logrus.Debugf("extracting contents of %q into %q", srcPath, destPath)
- if err = untarPath(srcPath, destPath); err != nil {
- return errors.Wrapf(err, "error extracting %q into %q", srcPath, destPath)
- }
- return nil
- }
-
- destfi, err := os.Stat(destPath)
- if err != nil {
- if !os.IsNotExist(err) || strings.HasSuffix(dest, string(os.PathSeparator)) {
- return errors.Wrapf(err, "failed to get stat of dest path %s", destPath)
- }
- }
- if destfi != nil && destfi.IsDir() {
- destPath = filepath.Join(destPath, filepath.Base(srcPath))
- }
-
- // Copy the file, preserving attributes.
- logrus.Debugf("copying %q to %q", srcPath, destPath)
- if err = copyFileWithTar(srcPath, destPath); err != nil {
- return errors.Wrapf(err, "error copying %q to %q", srcPath, destPath)
- }
- return nil
-}
-
-func convertIDMap(idMaps []idtools.IDMap) (convertedIDMap []specs.LinuxIDMapping) {
- for _, idmap := range idMaps {
- tempIDMap := specs.LinuxIDMapping{
- ContainerID: uint32(idmap.ContainerID),
- HostID: uint32(idmap.HostID),
- Size: uint32(idmap.Size),
- }
- convertedIDMap = append(convertedIDMap, tempIDMap)
- }
- return convertedIDMap
-}
-
-func streamFileToStdout(srcPath string, srcfi os.FileInfo) error {
- if srcfi.IsDir() {
- tw := tar.NewWriter(os.Stdout)
- err := filepath.Walk(srcPath, func(path string, info os.FileInfo, err error) error {
- if err != nil || !info.Mode().IsRegular() || path == srcPath {
- return err
- }
- hdr, err := tar.FileInfoHeader(info, "")
- if err != nil {
- return err
- }
-
- if err = tw.WriteHeader(hdr); err != nil {
- return err
- }
- fh, err := os.Open(path)
- if err != nil {
- return err
- }
- defer fh.Close()
-
- _, err = io.Copy(tw, fh)
- return err
- })
- if err != nil {
- return errors.Wrapf(err, "error streaming directory %s to Stdout", srcPath)
- }
- return nil
- }
-
- file, err := os.Open(srcPath)
- if err != nil {
- return errors.Wrapf(err, "error opening file %s", srcPath)
- }
- defer file.Close()
- if !archive.IsArchivePath(srcPath) {
- tw := tar.NewWriter(os.Stdout)
- hdr, err := tar.FileInfoHeader(srcfi, "")
- if err != nil {
- return err
- }
- err = tw.WriteHeader(hdr)
- if err != nil {
- return err
- }
- _, err = io.Copy(tw, file)
- if err != nil {
- return errors.Wrapf(err, "error streaming archive %s to Stdout", srcPath)
- }
- return nil
- }
-
- _, err = io.Copy(os.Stdout, file)
- if err != nil {
- return errors.Wrapf(err, "error streaming file to Stdout")
- }
- return nil
-}
-
-func isVolumeDestName(path string, ctr *libpod.Container) (bool, string, string) {
- separator := string(os.PathSeparator)
- if filepath.IsAbs(path) {
- path = strings.TrimPrefix(path, separator)
- }
- if path == "" {
- return false, "", ""
- }
- for _, vol := range ctr.Config().NamedVolumes {
- volNamePath := strings.TrimPrefix(vol.Dest, separator)
- if matchVolumePath(path, volNamePath) {
- return true, vol.Dest, vol.Name
- }
- }
- return false, "", ""
-}
-
-// if SRCPATH or DESTPATH is from volume mount's destination -v or --mount type=volume, generates the path with volume mount point
-func pathWithVolumeMount(ctr *libpod.Container, runtime *libpod.Runtime, volDestName, volName, path string) (string, error) {
- destVolume, err := runtime.GetVolume(volName)
- if err != nil {
- return "", errors.Wrapf(err, "error getting volume destination %s", volName)
- }
- if !filepath.IsAbs(path) {
- path = filepath.Join(string(os.PathSeparator), path)
- }
- path, err = securejoin.SecureJoin(destVolume.MountPoint(), strings.TrimPrefix(path, volDestName))
- return path, err
-}
-
-func isBindMountDestName(path string, ctr *libpod.Container) (bool, specs.Mount) {
- separator := string(os.PathSeparator)
- if filepath.IsAbs(path) {
- path = strings.TrimPrefix(path, string(os.PathSeparator))
- }
- if path == "" {
- return false, specs.Mount{}
- }
- for _, m := range ctr.Config().Spec.Mounts {
- if m.Type != "bind" {
- continue
- }
- mDest := strings.TrimPrefix(m.Destination, separator)
- if matchVolumePath(path, mDest) {
- return true, m
- }
- }
- return false, specs.Mount{}
-}
-
-func matchVolumePath(path, target string) bool {
- pathStr := filepath.Clean(path)
- target = filepath.Clean(target)
- for len(pathStr) > len(target) && strings.Contains(pathStr, string(os.PathSeparator)) {
- pathStr = pathStr[:strings.LastIndex(pathStr, string(os.PathSeparator))]
- }
- return pathStr == target
-}
-
-func pathWithBindMountSource(m specs.Mount, path string) (string, error) {
- if !filepath.IsAbs(path) {
- path = filepath.Join(string(os.PathSeparator), path)
- }
- return securejoin.SecureJoin(m.Source, strings.TrimPrefix(path, m.Destination))
-}
-
-func copyPause() bool {
- if !remoteclient && rootless.IsRootless() {
- cgroupv2, _ := cgroups.IsCgroup2UnifiedMode()
- if !cgroupv2 {
- logrus.Debugf("defaulting to pause==false on rootless cp in cgroupv1 systems")
- return false
- }
- }
- return true
-}
diff --git a/cmd/podman/create.go b/cmd/podman/create.go
deleted file mode 100644
index 03eb1b09f..000000000
--- a/cmd/podman/create.go
+++ /dev/null
@@ -1,100 +0,0 @@
-package main
-
-import (
- "fmt"
- "os"
- "strings"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/opentracing/opentracing-go"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- "github.com/spf13/cobra"
-)
-
-var (
- createCommand cliconfig.CreateValues
- createDescription = `Creates a new container from the given image or storage and prepares it for running the specified command.
-
- The container ID is then printed to stdout. You can then start it at any time with the podman start <container_id> command. The container will be created with the initial state 'created'.`
- _createCommand = &cobra.Command{
- Use: "create [flags] IMAGE [COMMAND [ARG...]]",
- Short: "Create but do not start a container",
- Long: createDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- createCommand.InputArgs = args
- createCommand.GlobalFlags = MainGlobalOpts
- createCommand.Remote = remoteclient
- return createCmd(&createCommand)
- },
- Example: `podman create alpine ls
- podman create --annotation HELLO=WORLD alpine ls
- podman create -t -i --name myctr alpine ls`,
- }
-)
-
-func init() {
- createCommand.PodmanCommand.Command = _createCommand
- createCommand.SetHelpTemplate(HelpTemplate())
- createCommand.SetUsageTemplate(UsageTemplate())
- getCreateFlags(&createCommand.PodmanCommand)
- flags := createCommand.Flags()
- flags.AddFlagSet(getNetFlags())
- flags.SetInterspersed(false)
- flags.SetNormalizeFunc(aliasFlags)
-}
-
-func createCmd(c *cliconfig.CreateValues) error {
- if c.Bool("trace") {
- span, _ := opentracing.StartSpanFromContext(Ctx, "createCmd")
- defer span.Finish()
- }
-
- if c.String("authfile") != "" {
- if _, err := os.Stat(c.String("authfile")); err != nil {
- return errors.Wrapf(err, "error getting authfile %s", c.String("authfile"))
- }
- }
-
- if err := createInit(&c.PodmanCommand); err != nil {
- return err
- }
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "error creating libpod runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- cid, err := runtime.CreateContainer(getContext(), c)
- if err != nil {
- return err
- }
- fmt.Printf("%s\n", cid)
- return nil
-}
-
-func createInit(c *cliconfig.PodmanCommand) error {
- if !remote && c.Bool("trace") {
- span, _ := opentracing.StartSpanFromContext(Ctx, "createInit")
- defer span.Finish()
- }
-
- if c.IsSet("privileged") && c.IsSet("security-opt") {
- logrus.Warn("setting security options with --privileged has no effect")
- }
-
- if (c.IsSet("dns") || c.IsSet("dns-opt") || c.IsSet("dns-search")) && (c.String("network") == "none" || strings.HasPrefix(c.String("network"), "container:")) {
- return errors.Errorf("conflicting options: dns and the network mode.")
- }
-
- // Docker-compatibility: the "-h" flag for run/create is reserved for
- // the hostname (see https://github.com/containers/libpod/issues/1367).
-
- if len(c.InputArgs) < 1 {
- return errors.Errorf("image name or ID is required")
- }
-
- return nil
-}
diff --git a/cmd/podman/diff.go b/cmd/podman/diff.go
index c15512360..8db76e8af 100644
--- a/cmd/podman/diff.go
+++ b/cmd/podman/diff.go
@@ -3,139 +3,59 @@ package main
import (
"fmt"
- "github.com/containers/buildah/pkg/formats"
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/containers/storage/pkg/archive"
- "github.com/pkg/errors"
+ "github.com/containers/libpod/cmd/podman/containers"
+ "github.com/containers/libpod/cmd/podman/images"
+ "github.com/containers/libpod/cmd/podman/registry"
+ "github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
)
-type diffJSONOutput struct {
- Changed []string `json:"changed,omitempty"`
- Added []string `json:"added,omitempty"`
- Deleted []string `json:"deleted,omitempty"`
-}
-
-type diffOutputParams struct {
- Change archive.ChangeType
- Path string
-}
-
-type stdoutStruct struct {
- output []diffOutputParams
-}
-
-func (so stdoutStruct) Out() error {
- for _, d := range so.output {
- fmt.Printf("%s %s\n", d.Change, d.Path)
- }
- return nil
-}
+// Inspect is one of the outlier commands in that it operates on images/containers/...
var (
- diffCommand cliconfig.DiffValues
- diffDescription = fmt.Sprint(`Displays changes on a container or image's filesystem. The container or image will be compared to its parent layer.`)
-
- _diffCommand = &cobra.Command{
- Use: "diff [flags] CONTAINER | IMAGE",
- Short: "Inspect changes on container's file systems",
- Long: diffDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- diffCommand.InputArgs = args
- diffCommand.GlobalFlags = MainGlobalOpts
- diffCommand.Remote = remoteclient
- return diffCmd(&diffCommand)
- },
+ // Command: podman _diff_ Object_ID
+ diffDescription = `Displays changes on a container or image's filesystem. The container or image will be compared to its parent layer.`
+ diffCmd = &cobra.Command{
+ Use: "diff [flags] {CONTAINER_ID | IMAGE_ID}",
+ Args: registry.IdOrLatestArgs,
+ Short: "Display the changes of object's file system",
+ Long: diffDescription,
+ TraverseChildren: true,
+ RunE: diff,
Example: `podman diff imageID
podman diff ctrID
podman diff --format json redis:alpine`,
}
+
+ diffOpts = entities.DiffOptions{}
)
func init() {
- diffCommand.Command = _diffCommand
- diffCommand.SetHelpTemplate(HelpTemplate())
- diffCommand.SetUsageTemplate(UsageTemplate())
- flags := diffCommand.Flags()
-
- flags.BoolVar(&diffCommand.Archive, "archive", true, "Save the diff as a tar archive")
- flags.StringVar(&diffCommand.Format, "format", "", "Change the output format")
- flags.BoolVarP(&diffCommand.Latest, "latest", "l", false, "Act on the latest container podman is aware of")
- markFlagHidden(flags, "archive")
- markFlagHiddenForRemoteClient("latest", flags)
-
-}
-
-func formatJSON(output []diffOutputParams) (diffJSONOutput, error) {
- jsonStruct := diffJSONOutput{}
- for _, output := range output {
- switch output.Change {
- case archive.ChangeModify:
- jsonStruct.Changed = append(jsonStruct.Changed, output.Path)
- case archive.ChangeAdd:
- jsonStruct.Added = append(jsonStruct.Added, output.Path)
- case archive.ChangeDelete:
- jsonStruct.Deleted = append(jsonStruct.Deleted, output.Path)
- default:
- return jsonStruct, errors.Errorf("output kind %q not recognized", output.Change.String())
- }
+ registry.Commands = append(registry.Commands, registry.CliCommand{
+ Mode: []entities.EngineMode{entities.ABIMode, entities.TunnelMode},
+ Command: diffCmd,
+ })
+ flags := diffCmd.Flags()
+ flags.BoolVar(&diffOpts.Archive, "archive", true, "Save the diff as a tar archive")
+ _ = flags.MarkHidden("archive")
+ flags.StringVar(&diffOpts.Format, "format", "", "Change the output format")
+
+ if !registry.IsRemote() {
+ flags.BoolVarP(&diffOpts.Latest, "latest", "l", false, "Act on the latest container podman is aware of")
}
- return jsonStruct, nil
}
-func diffCmd(c *cliconfig.DiffValues) error {
- if len(c.InputArgs) != 1 && !c.Latest {
- return errors.Errorf("container, image, or layer name must be specified: podman diff [options [...]] ID-NAME")
- }
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- var to string
- if c.Latest {
- ctr, err := runtime.GetLatestContainer()
- if err != nil {
- return errors.Wrapf(err, "unable to get latest container")
- }
- to = ctr.ID()
- } else {
- to = c.InputArgs[0]
+func diff(cmd *cobra.Command, args []string) error {
+ if found, err := registry.ImageEngine().Exists(registry.GetContext(), args[0]); err != nil {
+ return err
+ } else if found.Value {
+ return images.Diff(cmd, args, diffOpts)
}
- changes, err := runtime.Diff(c, to)
- if err != nil {
- return errors.Wrapf(err, "could not get changes for %q", to)
- }
- diffOutput := []diffOutputParams{}
- outputFormat := c.Format
-
- for _, change := range changes {
-
- params := diffOutputParams{
- Change: change.Kind,
- Path: change.Path,
- }
- diffOutput = append(diffOutput, params)
- }
-
- var out formats.Writer
- if outputFormat != "" {
- switch outputFormat {
- case formats.JSONString:
- data, err := formatJSON(diffOutput)
- if err != nil {
- return err
- }
- out = formats.JSONStruct{Output: data}
- default:
- return errors.New("only valid format for diff is 'json'")
- }
- } else {
- out = stdoutStruct{output: diffOutput}
+ if found, err := registry.ContainerEngine().ContainerExists(registry.GetContext(), args[0]); err != nil {
+ return err
+ } else if found.Value {
+ return containers.Diff(cmd, args, diffOpts)
}
- return out.Out()
+ return fmt.Errorf("%s not found on system", args[0])
}
diff --git a/cmd/podman/errors.go b/cmd/podman/errors.go
deleted file mode 100644
index ae9e73e62..000000000
--- a/cmd/podman/errors.go
+++ /dev/null
@@ -1,39 +0,0 @@
-// +build !remoteclient
-
-package main
-
-import (
- "fmt"
- "os"
- "os/exec"
- "syscall"
-
- "github.com/containers/libpod/libpod/define"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
-)
-
-func outputError(err error) {
- if MainGlobalOpts.LogLevel == "debug" {
- logrus.Errorf(err.Error())
- } else {
- ee, ok := err.(*exec.ExitError)
- if ok {
- if status, ok := ee.Sys().(syscall.WaitStatus); ok {
- exitCode = status.ExitStatus()
- }
- }
- fmt.Fprintln(os.Stderr, "Error:", err.Error())
- }
-}
-
-func setExitCode(err error) int {
- cause := errors.Cause(err)
- switch cause {
- case define.ErrNoSuchCtr:
- return 1
- case define.ErrCtrStateInvalid:
- return 2
- }
- return exitCode
-}
diff --git a/cmd/podman/errors_remote.go b/cmd/podman/errors_remote.go
deleted file mode 100644
index 4b543ccd5..000000000
--- a/cmd/podman/errors_remote.go
+++ /dev/null
@@ -1,65 +0,0 @@
-// +build remoteclient
-
-package main
-
-import (
- "fmt"
- "os"
- "os/exec"
- "syscall"
-
- "github.com/containers/libpod/libpod/define"
- iopodman "github.com/containers/libpod/pkg/varlink"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
-)
-
-func outputError(err error) {
- if MainGlobalOpts.LogLevel == "debug" {
- logrus.Errorf(err.Error())
- } else {
- if ee, ok := err.(*exec.ExitError); ok {
- if status, ok := ee.Sys().(syscall.WaitStatus); ok {
- exitCode = status.ExitStatus()
- }
- }
- var ne error
- switch e := err.(type) {
- // For some reason golang won't let me list them with commas so listing them all.
- case *iopodman.ImageNotFound:
- ne = errors.New(e.Reason)
- case *iopodman.ContainerNotFound:
- ne = errors.New(e.Reason)
- case *iopodman.PodNotFound:
- ne = errors.New(e.Reason)
- case *iopodman.VolumeNotFound:
- ne = errors.New(e.Reason)
- case *iopodman.InvalidState:
- ne = errors.New(e.Reason)
- case *iopodman.ErrorOccurred:
- ne = errors.New(e.Reason)
- default:
- ne = err
- }
- fmt.Fprintln(os.Stderr, "Error:", ne.Error())
- }
-}
-
-func setExitCode(err error) int {
- cause := errors.Cause(err)
- switch e := cause.(type) {
- // For some reason golang won't let me list them with commas so listing them all.
- case *iopodman.ContainerNotFound:
- return 1
- case *iopodman.InvalidState:
- return 2
- default:
- switch e {
- case define.ErrNoSuchCtr:
- return 1
- case define.ErrCtrStateInvalid:
- return 2
- }
- }
- return exitCode
-}
diff --git a/cmd/podman/events.go b/cmd/podman/events.go
deleted file mode 100644
index 18126e626..000000000
--- a/cmd/podman/events.go
+++ /dev/null
@@ -1,50 +0,0 @@
-package main
-
-import (
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- eventsCommand cliconfig.EventValues
- eventsDescription = "Monitor podman events"
- _eventsCommand = &cobra.Command{
- Use: "events",
- Args: noSubArgs,
- Short: "Show podman events",
- Long: eventsDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- eventsCommand.InputArgs = args
- eventsCommand.GlobalFlags = MainGlobalOpts
- eventsCommand.Remote = remoteclient
- return eventsCmd(&eventsCommand)
- },
- Example: `podman events
- podman events --filter event=create
- podman events --since 1h30s`,
- }
-)
-
-func init() {
- eventsCommand.Command = _eventsCommand
- eventsCommand.SetUsageTemplate(UsageTemplate())
- flags := eventsCommand.Flags()
- flags.StringArrayVar(&eventsCommand.Filter, "filter", []string{}, "filter output")
- flags.StringVar(&eventsCommand.Format, "format", "", "format the output using a Go template")
- flags.BoolVar(&eventsCommand.Stream, "stream", true, "stream new events; for testing only")
- flags.StringVar(&eventsCommand.Since, "since", "", "show all events created since timestamp")
- flags.StringVar(&eventsCommand.Until, "until", "", "show all events until timestamp")
- markFlagHidden(flags, "stream")
-}
-
-func eventsCmd(c *cliconfig.EventValues) error {
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "error creating libpod runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- return runtime.Events(c)
-}
diff --git a/cmd/podman/exec.go b/cmd/podman/exec.go
deleted file mode 100644
index b341ab496..000000000
--- a/cmd/podman/exec.go
+++ /dev/null
@@ -1,75 +0,0 @@
-package main
-
-import (
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- execCommand cliconfig.ExecValues
-
- execDescription = `Execute the specified command inside a running container.
-`
- _execCommand = &cobra.Command{
- Use: "exec [flags] CONTAINER [COMMAND [ARG...]]",
- Short: "Run a process in a running container",
- Long: execDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- execCommand.InputArgs = args
- execCommand.GlobalFlags = MainGlobalOpts
- execCommand.Remote = remoteclient
- return execCmd(&execCommand)
- },
- Example: `podman exec -it ctrID ls
- podman exec -it -w /tmp myCtr pwd
- podman exec --user root ctrID ls`,
- }
-)
-
-func init() {
- execCommand.Command = _execCommand
- execCommand.SetHelpTemplate(HelpTemplate())
- execCommand.SetUsageTemplate(UsageTemplate())
- flags := execCommand.Flags()
- flags.SetInterspersed(false)
- flags.StringVar(&execCommand.DetachKeys, "detach-keys", getDefaultDetachKeys(), "Select the key sequence for detaching a container. Format is a single character [a-Z] or ctrl-<value> where <value> is one of: a-z, @, ^, [, , or _")
- flags.StringArrayVarP(&execCommand.Env, "env", "e", []string{}, "Set environment variables")
- flags.StringSliceVar(&execCommand.EnvFile, "env-file", []string{}, "Read in a file of environment variables")
- flags.BoolVarP(&execCommand.Interactive, "interactive", "i", false, "Keep STDIN open even if not attached")
- flags.BoolVarP(&execCommand.Latest, "latest", "l", false, "Act on the latest container podman is aware of")
- flags.BoolVar(&execCommand.Privileged, "privileged", false, "Give the process extended Linux capabilities inside the container. The default is false")
- flags.BoolVarP(&execCommand.Tty, "tty", "t", false, "Allocate a pseudo-TTY. The default is false")
- flags.StringVarP(&execCommand.User, "user", "u", "", "Sets the username or UID used and optionally the groupname or GID for the specified command")
-
- flags.IntVar(&execCommand.PreserveFDs, "preserve-fds", 0, "Pass N additional file descriptors to the container")
- flags.StringVarP(&execCommand.Workdir, "workdir", "w", "", "Working directory inside the container")
- markFlagHiddenForRemoteClient("env-file", flags)
- markFlagHiddenForRemoteClient("latest", flags)
- markFlagHiddenForRemoteClient("preserve-fds", flags)
-}
-
-func execCmd(c *cliconfig.ExecValues) error {
- argLen := len(c.InputArgs)
- if c.Latest {
- if argLen < 1 {
- return errors.Errorf("you must provide a command to exec")
- }
- } else {
- if argLen < 1 {
- return errors.Errorf("you must provide one container name or id")
- }
- if argLen < 2 {
- return errors.Errorf("you must provide a command to exec")
- }
- }
- runtime, err := adapter.GetRuntimeNoStore(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "error creating libpod runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- exitCode, err = runtime.ExecContainer(getContext(), c)
- return err
-}
diff --git a/cmd/podman/exists.go b/cmd/podman/exists.go
deleted file mode 100644
index f8b1f8e59..000000000
--- a/cmd/podman/exists.go
+++ /dev/null
@@ -1,142 +0,0 @@
-package main
-
-import (
- "os"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/libpod/define"
- "github.com/containers/libpod/libpod/image"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- imageExistsCommand cliconfig.ImageExistsValues
- containerExistsCommand cliconfig.ContainerExistsValues
- podExistsCommand cliconfig.PodExistsValues
-
- imageExistsDescription = `If the named image exists in local storage, podman image exists exits with 0, otherwise the exit code will be 1.`
-
- containerExistsDescription = `If the named container exists in local storage, podman container exists exits with 0, otherwise the exit code will be 1.`
-
- podExistsDescription = `If the named pod exists in local storage, podman pod exists exits with 0, otherwise the exit code will be 1.`
-
- _imageExistsCommand = &cobra.Command{
- Use: "exists IMAGE",
- Short: "Check if an image exists in local storage",
- Long: imageExistsDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- imageExistsCommand.InputArgs = args
- imageExistsCommand.GlobalFlags = MainGlobalOpts
- imageExistsCommand.Remote = remoteclient
- return imageExistsCmd(&imageExistsCommand)
- },
- Example: `podman image exists imageID
- podman image exists alpine || podman pull alpine`,
- }
-
- _containerExistsCommand = &cobra.Command{
- Use: "exists CONTAINER",
- Short: "Check if a container exists in local storage",
- Long: containerExistsDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- containerExistsCommand.InputArgs = args
- containerExistsCommand.GlobalFlags = MainGlobalOpts
- containerExistsCommand.Remote = remoteclient
- return containerExistsCmd(&containerExistsCommand)
-
- },
- Example: `podman container exists containerID
- podman container exists myctr || podman run --name myctr [etc...]`,
- }
-
- _podExistsCommand = &cobra.Command{
- Use: "exists POD",
- Short: "Check if a pod exists in local storage",
- Long: podExistsDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- podExistsCommand.InputArgs = args
- podExistsCommand.GlobalFlags = MainGlobalOpts
- podExistsCommand.Remote = remoteclient
- return podExistsCmd(&podExistsCommand)
- },
- Example: `podman pod exists podID
- podman pod exists mypod || podman pod create --name mypod`,
- }
-)
-
-func init() {
- imageExistsCommand.Command = _imageExistsCommand
- imageExistsCommand.DisableFlagsInUseLine = true
- imageExistsCommand.SetHelpTemplate(HelpTemplate())
- imageExistsCommand.SetUsageTemplate(UsageTemplate())
- containerExistsCommand.Command = _containerExistsCommand
- containerExistsCommand.DisableFlagsInUseLine = true
- containerExistsCommand.SetHelpTemplate(HelpTemplate())
- containerExistsCommand.SetUsageTemplate(UsageTemplate())
- podExistsCommand.Command = _podExistsCommand
- podExistsCommand.DisableFlagsInUseLine = true
- podExistsCommand.SetHelpTemplate(HelpTemplate())
- podExistsCommand.SetUsageTemplate(UsageTemplate())
-}
-
-func imageExistsCmd(c *cliconfig.ImageExistsValues) error {
- args := c.InputArgs
- if len(args) > 1 || len(args) < 1 {
- return errors.New("you may only check for the existence of one image at a time")
- }
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
- if _, err := runtime.NewImageFromLocal(args[0]); err != nil {
- //TODO we need to ask about having varlink defined errors exposed
- //so we can reuse them
- if errors.Cause(err) == image.ErrNoSuchImage || err.Error() == "io.podman.ImageNotFound" {
- os.Exit(1)
- }
- return err
- }
- return nil
-}
-
-func containerExistsCmd(c *cliconfig.ContainerExistsValues) error {
- args := c.InputArgs
- if len(args) > 1 || len(args) < 1 {
- return errors.New("you may only check for the existence of one container at a time")
- }
- runtime, err := adapter.GetRuntimeNoStore(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
- if _, err := runtime.LookupContainer(args[0]); err != nil {
- if errors.Cause(err) == define.ErrNoSuchCtr || err.Error() == "io.podman.ContainerNotFound" {
- os.Exit(1)
- }
- return err
- }
- return nil
-}
-
-func podExistsCmd(c *cliconfig.PodExistsValues) error {
- args := c.InputArgs
- if len(args) > 1 || len(args) < 1 {
- return errors.New("you may only check for the existence of one pod at a time")
- }
- runtime, err := adapter.GetRuntimeNoStore(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- if _, err := runtime.LookupPod(args[0]); err != nil {
- if errors.Cause(err) == define.ErrNoSuchPod || err.Error() == "io.podman.PodNotFound" {
- os.Exit(1)
- }
- return err
- }
- return nil
-}
diff --git a/cmd/podman/export.go b/cmd/podman/export.go
deleted file mode 100644
index 27948004c..000000000
--- a/cmd/podman/export.go
+++ /dev/null
@@ -1,75 +0,0 @@
-package main
-
-import (
- "os"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/cmd/podman/shared/parse"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
- "golang.org/x/crypto/ssh/terminal"
-)
-
-var (
- exportCommand cliconfig.ExportValues
- exportDescription = "Exports container's filesystem contents as a tar archive" +
- " and saves it on the local machine."
-
- _exportCommand = &cobra.Command{
- Use: "export [flags] CONTAINER",
- Short: "Export container's filesystem contents as a tar archive",
- Long: exportDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- exportCommand.InputArgs = args
- exportCommand.GlobalFlags = MainGlobalOpts
- exportCommand.Remote = remoteclient
- return exportCmd(&exportCommand)
- },
- Example: `podman export ctrID > myCtr.tar
- podman export --output="myCtr.tar" ctrID`,
- }
-)
-
-func init() {
- exportCommand.Command = _exportCommand
- exportCommand.SetHelpTemplate(HelpTemplate())
- exportCommand.SetUsageTemplate(UsageTemplate())
- flags := exportCommand.Flags()
- flags.StringVarP(&exportCommand.Output, "output", "o", "", "Write to a specified file (default: stdout, which must be redirected)")
-}
-
-// exportCmd saves a container to a tarball on disk
-func exportCmd(c *cliconfig.ExportValues) error {
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- args := c.InputArgs
- if len(args) == 0 {
- return errors.Errorf("container id must be specified")
- }
- if len(args) > 1 {
- return errors.Errorf("too many arguments given, need 1 at most.")
- }
-
- output := c.Output
- if runtime.Remote && len(output) == 0 {
- return errors.New("remote client usage must specify an output file (-o)")
- }
-
- if len(output) == 0 {
- file := os.Stdout
- if terminal.IsTerminal(int(file.Fd())) {
- return errors.Errorf("refusing to export to terminal. Use -o flag or redirect")
- }
- output = "/dev/stdout"
- }
-
- if err := parse.ValidateFileName(output); err != nil {
- return err
- }
- return runtime.Export(args[0], output)
-}
diff --git a/cmd/podman/generate.go b/cmd/podman/generate.go
deleted file mode 100644
index 196556bc5..000000000
--- a/cmd/podman/generate.go
+++ /dev/null
@@ -1,32 +0,0 @@
-package main
-
-import (
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/spf13/cobra"
-)
-
-var (
- generateCommand cliconfig.PodmanCommand
- generateDescription = "Generate structured data based for a containers and pods"
- _generateCommand = &cobra.Command{
- Use: "generate",
- Short: "Generated structured data",
- Long: generateDescription,
- RunE: commandRunE(),
- }
-
- // Commands that are universally implemented
- generateCommands = []*cobra.Command{
- _containerKubeCommand,
- }
-)
-
-func init() {
- // Systemd-service generation is not supported for remote-clients.
- if !remoteclient {
- generateCommands = append(generateCommands, _containerSystemdCommand)
- }
- generateCommand.Command = _generateCommand
- generateCommand.AddCommand(generateCommands...)
- generateCommand.SetUsageTemplate(UsageTemplate())
-}
diff --git a/cmd/podman/generate_kube.go b/cmd/podman/generate_kube.go
deleted file mode 100644
index 6f04d6517..000000000
--- a/cmd/podman/generate_kube.go
+++ /dev/null
@@ -1,110 +0,0 @@
-package main
-
-import (
- "fmt"
- "io/ioutil"
- "os"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- podmanVersion "github.com/containers/libpod/version"
- "github.com/ghodss/yaml"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- containerKubeCommand cliconfig.GenerateKubeValues
- containerKubeDescription = `Command generates Kubernetes Pod YAML (v1 specification) from a podman container or pod.
-
- Whether the input is for a container or pod, Podman will always generate the specification as a Pod. The input may be in the form of a pod or container name or ID.`
- _containerKubeCommand = &cobra.Command{
- Use: "kube [flags] CONTAINER | POD",
- Short: "Generate Kubernetes pod YAML from a container or pod",
- Long: containerKubeDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- containerKubeCommand.InputArgs = args
- containerKubeCommand.GlobalFlags = MainGlobalOpts
- containerKubeCommand.Remote = remoteclient
- return generateKubeYAMLCmd(&containerKubeCommand)
- },
- Example: `podman generate kube ctrID
- podman generate kube podID
- podman generate kube --service podID`,
- }
-)
-
-func init() {
- containerKubeCommand.Command = _containerKubeCommand
- containerKubeCommand.SetHelpTemplate(HelpTemplate())
- containerKubeCommand.SetUsageTemplate(UsageTemplate())
- flags := containerKubeCommand.Flags()
- flags.BoolVarP(&containerKubeCommand.Service, "service", "s", false, "Generate YAML for kubernetes service object")
- flags.StringVarP(&containerKubeCommand.Filename, "filename", "f", "", "Filename to output to")
-}
-
-func generateKubeYAMLCmd(c *cliconfig.GenerateKubeValues) error {
- var (
- //podYAML *v1.Pod
- err error
- output []byte
- //pod *libpod.Pod
- marshalledPod []byte
- marshalledService []byte
- )
-
- args := c.InputArgs
- if len(args) != 1 {
- return errors.Errorf("you must provide exactly one container|pod ID or name")
- }
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- podYAML, serviceYAML, err := runtime.GenerateKube(c)
- if err != nil {
- return err
- }
- // Marshall the results
- marshalledPod, err = yaml.Marshal(podYAML)
- if err != nil {
- return err
- }
- if c.Service {
- marshalledService, err = yaml.Marshal(serviceYAML)
- if err != nil {
- return err
- }
- }
- header := `# Generation of Kubernetes YAML is still under development!
-#
-# Save the output of this file and use kubectl create -f to import
-# it into Kubernetes.
-#
-# Created with podman-%s
-`
- output = append(output, []byte(fmt.Sprintf(header, podmanVersion.Version))...)
- output = append(output, marshalledPod...)
- if c.Bool("service") {
- output = append(output, []byte("---\n")...)
- output = append(output, marshalledService...)
- }
-
- if c.Filename != "" {
- if _, err := os.Stat(c.Filename); err == nil {
- return errors.Errorf("cannot write to %q - file exists", c.Filename)
- }
-
- if err := ioutil.WriteFile(c.Filename, output, 0644); err != nil {
- return err
- }
- } else {
- // Output the v1.Pod with the v1.Container
- fmt.Println(string(output))
- }
-
- return nil
-}
diff --git a/cmd/podman/generate_systemd.go b/cmd/podman/generate_systemd.go
deleted file mode 100644
index fd0d13d78..000000000
--- a/cmd/podman/generate_systemd.go
+++ /dev/null
@@ -1,65 +0,0 @@
-package main
-
-import (
- "fmt"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- containerSystemdCommand cliconfig.GenerateSystemdValues
- containerSystemdDescription = `Command generates a systemd unit file for a Podman container
- `
- _containerSystemdCommand = &cobra.Command{
- Use: "systemd [flags] CONTAINER | POD",
- Short: "Generate a systemd unit file for a Podman container",
- Long: containerSystemdDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- containerSystemdCommand.InputArgs = args
- containerSystemdCommand.GlobalFlags = MainGlobalOpts
- containerSystemdCommand.Remote = remoteclient
- return generateSystemdCmd(&containerSystemdCommand)
- },
- Args: func(cmd *cobra.Command, args []string) error {
- if len(args) > 1 || len(args) < 1 {
- return errors.New("provide only one container name or ID")
- }
- return nil
- },
- Example: `podman generate systemd ctrID
-`,
- }
-)
-
-func init() {
- containerSystemdCommand.Command = _containerSystemdCommand
- containerSystemdCommand.SetHelpTemplate(HelpTemplate())
- containerSystemdCommand.SetUsageTemplate(UsageTemplate())
- flags := containerSystemdCommand.Flags()
- flags.BoolVarP(&containerSystemdCommand.Name, "name", "n", false, "use the container/pod name instead of ID")
- if !remoteclient {
- flags.BoolVarP(&containerSystemdCommand.Files, "files", "f", false, "generate files instead of printing to stdout")
- }
- flags.UintVarP(&containerSystemdCommand.StopTimeout, "time", "t", defaultContainerConfig.Engine.StopTimeout, "stop timeout override")
- flags.StringVar(&containerSystemdCommand.RestartPolicy, "restart-policy", "on-failure", "applicable systemd restart-policy")
- flags.BoolVarP(&containerSystemdCommand.New, "new", "", false, "create a new container instead of starting an existing one")
- flags.SetNormalizeFunc(aliasFlags)
-}
-
-func generateSystemdCmd(c *cliconfig.GenerateSystemdValues) error {
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- unit, err := runtime.GenerateSystemd(c)
- if err != nil {
- return err
- }
- fmt.Println(unit)
- return nil
-}
diff --git a/cmd/podman/healthcheck.go b/cmd/podman/healthcheck.go
deleted file mode 100644
index 140206dbe..000000000
--- a/cmd/podman/healthcheck.go
+++ /dev/null
@@ -1,27 +0,0 @@
-package main
-
-import (
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/spf13/cobra"
-)
-
-var healthcheckDescription = "Manage health checks on containers"
-var healthcheckCommand = cliconfig.PodmanCommand{
- Command: &cobra.Command{
- Use: "healthcheck",
- Short: "Manage Healthcheck",
- Long: healthcheckDescription,
- RunE: commandRunE(),
- },
-}
-
-// Commands that are universally implemented
-var healthcheckCommands = []*cobra.Command{
- _healthcheckrunCommand,
-}
-
-func init() {
- healthcheckCommand.AddCommand(healthcheckCommands...)
- healthcheckCommand.SetUsageTemplate(UsageTemplate())
- rootCmd.AddCommand(healthcheckCommand.Command)
-}
diff --git a/cmd/podmanV2/healthcheck/healthcheck.go b/cmd/podman/healthcheck/healthcheck.go
index e859f9463..794a94615 100644
--- a/cmd/podmanV2/healthcheck/healthcheck.go
+++ b/cmd/podman/healthcheck/healthcheck.go
@@ -1,7 +1,7 @@
package healthcheck
import (
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
)
diff --git a/cmd/podmanV2/healthcheck/run.go b/cmd/podman/healthcheck/run.go
index bb2962eaf..5612910cb 100644
--- a/cmd/podmanV2/healthcheck/run.go
+++ b/cmd/podman/healthcheck/run.go
@@ -4,7 +4,7 @@ import (
"context"
"fmt"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
)
diff --git a/cmd/podman/healthcheck_run.go b/cmd/podman/healthcheck_run.go
deleted file mode 100644
index 3a2a8f333..000000000
--- a/cmd/podman/healthcheck_run.go
+++ /dev/null
@@ -1,52 +0,0 @@
-package main
-
-import (
- "fmt"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- healthcheckRunCommand cliconfig.HealthCheckValues
- healthcheckRunDescription = "run the health check of a container"
- _healthcheckrunCommand = &cobra.Command{
- Use: "run [flags] CONTAINER",
- Short: "run the health check of a container",
- Long: healthcheckRunDescription,
- Example: `podman healthcheck run mywebapp`,
- RunE: func(cmd *cobra.Command, args []string) error {
- healthcheckRunCommand.InputArgs = args
- healthcheckRunCommand.GlobalFlags = MainGlobalOpts
- healthcheckRunCommand.Remote = remoteclient
- return healthCheckCmd(&healthcheckRunCommand)
- },
- Args: func(cmd *cobra.Command, args []string) error {
- if len(args) < 1 || len(args) > 1 {
- return errors.New("must provide the name or ID of one container")
- }
- return nil
- },
- }
-)
-
-func init() {
- healthcheckRunCommand.Command = _healthcheckrunCommand
- healthcheckRunCommand.SetUsageTemplate(UsageTemplate())
-}
-
-func healthCheckCmd(c *cliconfig.HealthCheckValues) error {
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrap(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
- status, err := runtime.HealthCheck(c)
- if err == nil && status == "unhealthy" {
- exitCode = 1
- }
- fmt.Println(status)
- return err
-}
diff --git a/cmd/podman/history.go b/cmd/podman/history.go
deleted file mode 100644
index da6a3f608..000000000
--- a/cmd/podman/history.go
+++ /dev/null
@@ -1,199 +0,0 @@
-package main
-
-import (
- "reflect"
- "strconv"
- "strings"
- "time"
-
- "github.com/containers/buildah/pkg/formats"
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/libpod/image"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/docker/go-units"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-const createdByTruncLength = 45
-
-// historyTemplateParams stores info about each layer
-type historyTemplateParams struct {
- ID string
- Created string
- CreatedBy string
- Size string
- Comment string
-}
-
-// historyOptions stores cli flag values
-type historyOptions struct {
- human bool
- noTrunc bool
- quiet bool
- format string
-}
-
-var (
- historyCommand cliconfig.HistoryValues
-
- historyDescription = `Displays the history of an image.
-
- The information can be printed out in an easy to read, or user specified format, and can be truncated.`
- _historyCommand = &cobra.Command{
- Use: "history [flags] IMAGE",
- Short: "Show history of a specified image",
- Long: historyDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- historyCommand.InputArgs = args
- historyCommand.GlobalFlags = MainGlobalOpts
- historyCommand.Remote = remoteclient
- return historyCmd(&historyCommand)
- },
- }
-)
-
-func init() {
- historyCommand.Command = _historyCommand
- historyCommand.SetHelpTemplate(HelpTemplate())
- historyCommand.SetUsageTemplate(UsageTemplate())
- flags := historyCommand.Flags()
- flags.StringVar(&historyCommand.Format, "format", "", "Change the output to JSON or a Go template")
- flags.BoolVarP(&historyCommand.Human, "human", "H", true, "Display sizes and dates in human readable format")
- // notrucate needs to be added
- flags.BoolVar(&historyCommand.NoTrunc, "no-trunc", false, "Do not truncate the output")
- flags.BoolVarP(&historyCommand.Quiet, "quiet", "q", false, "Display the numeric IDs only")
-
-}
-
-func historyCmd(c *cliconfig.HistoryValues) error {
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- format := genHistoryFormat(c.Format, c.Quiet)
-
- args := c.InputArgs
- if len(args) == 0 {
- return errors.Errorf("an image name must be specified")
- }
- if len(args) > 1 {
- return errors.Errorf("podman history takes at most 1 argument")
- }
-
- image, err := runtime.NewImageFromLocal(args[0])
- if err != nil {
- return err
- }
- opts := historyOptions{
- human: c.Human,
- noTrunc: c.NoTrunc,
- quiet: c.Quiet,
- format: format,
- }
-
- history, err := image.History(getContext())
- if err != nil {
- return errors.Wrapf(err, "error getting history of image %q", image.InputName)
- }
-
- return generateHistoryOutput(history, opts)
-}
-
-func genHistoryFormat(format string, quiet bool) string {
- if format != "" {
- // "\t" from the command line is not being recognized as a tab
- // replacing the string "\t" to a tab character if the user passes in "\t"
- return strings.Replace(format, `\t`, "\t", -1)
- }
- if quiet {
- return formats.IDString
- }
- return "table {{.ID}}\t{{.Created}}\t{{.CreatedBy}}\t{{.Size}}\t{{.Comment}}\t"
-}
-
-// historyToGeneric makes an empty array of interfaces for output
-func historyToGeneric(templParams []historyTemplateParams, jsonParams []*image.History) (genericParams []interface{}) {
- if len(templParams) > 0 {
- for _, v := range templParams {
- genericParams = append(genericParams, interface{}(v))
- }
- return
- }
- for _, v := range jsonParams {
- genericParams = append(genericParams, interface{}(v))
- }
- return
-}
-
-// generate the header based on the template provided
-func (h *historyTemplateParams) headerMap() map[string]string {
- v := reflect.Indirect(reflect.ValueOf(h))
- values := make(map[string]string)
- for h := 0; h < v.NumField(); h++ {
- key := v.Type().Field(h).Name
- value := key
- values[key] = strings.ToUpper(splitCamelCase(value))
- }
- return values
-}
-
-// getHistorytemplateOutput gets the modified history information to be printed in human readable format
-func getHistoryTemplateOutput(history []*image.History, opts historyOptions) []historyTemplateParams {
- var (
- outputSize string
- createdTime string
- createdBy string
- historyOutput []historyTemplateParams
- )
- for _, hist := range history {
- imageID := hist.ID
- if !opts.noTrunc && imageID != "<missing>" {
- imageID = shortID(imageID)
- }
-
- if opts.human {
- createdTime = units.HumanDuration(time.Since(*hist.Created)) + " ago"
- outputSize = units.HumanSize(float64(hist.Size))
- } else {
- createdTime = (hist.Created).Format(time.RFC3339)
- outputSize = strconv.FormatInt(hist.Size, 10)
- }
-
- createdBy = strings.Join(strings.Fields(hist.CreatedBy), " ")
- if !opts.noTrunc && len(createdBy) > createdByTruncLength {
- createdBy = createdBy[:createdByTruncLength-3] + "..."
- }
-
- params := historyTemplateParams{
- ID: imageID,
- Created: createdTime,
- CreatedBy: createdBy,
- Size: outputSize,
- Comment: hist.Comment,
- }
- historyOutput = append(historyOutput, params)
- }
- return historyOutput
-}
-
-// generateHistoryOutput generates the history based on the format given
-func generateHistoryOutput(history []*image.History, opts historyOptions) error {
- if len(history) == 0 {
- return nil
- }
-
- var out formats.Writer
-
- switch opts.format {
- case formats.JSONString:
- out = formats.JSONStructArray{Output: historyToGeneric([]historyTemplateParams{}, history)}
- default:
- historyOutput := getHistoryTemplateOutput(history, opts)
- out = formats.StdoutTemplateArray{Output: historyToGeneric(historyOutput, []*image.History{}), Template: opts.format, Fields: historyOutput[0].headerMap()}
- }
-
- return out.Out()
-}
diff --git a/cmd/podman/image.go b/cmd/podman/image.go
deleted file mode 100644
index ce576ff4b..000000000
--- a/cmd/podman/image.go
+++ /dev/null
@@ -1,94 +0,0 @@
-package main
-
-import (
- "strings"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/spf13/cobra"
-)
-
-var (
- imageDescription = "Manage images"
- imageCommand = cliconfig.PodmanCommand{
- Command: &cobra.Command{
- Use: "image",
- Short: "Manage images",
- Long: imageDescription,
- RunE: commandRunE(),
- },
- }
- imagesSubCommand cliconfig.ImagesValues
- _imagesSubCommand = &cobra.Command{
- Use: strings.Replace(_imagesCommand.Use, "images", "list", 1),
- Short: _imagesCommand.Short,
- Long: _imagesCommand.Long,
- Aliases: []string{"ls"},
- RunE: func(cmd *cobra.Command, args []string) error {
- imagesSubCommand.InputArgs = args
- imagesSubCommand.GlobalFlags = MainGlobalOpts
- return imagesCmd(&imagesSubCommand)
- },
- Example: strings.Replace(_imagesCommand.Example, "podman images", "podman image list", -1),
- }
-
- inspectSubCommand cliconfig.InspectValues
- _inspectSubCommand = &cobra.Command{
- Use: strings.Replace(_inspectCommand.Use, "CONTAINER | ", "", 1),
- Short: "Display the configuration of an image",
- Long: `Displays the low-level information on an image identified by name or ID.`,
- RunE: func(cmd *cobra.Command, args []string) error {
- inspectSubCommand.InputArgs = args
- inspectSubCommand.GlobalFlags = MainGlobalOpts
- return inspectCmd(&inspectSubCommand)
- },
- Example: `podman image inspect alpine`,
- }
-
- rmSubCommand cliconfig.RmiValues
- _rmSubCommand = &cobra.Command{
- Use: strings.Replace(_rmiCommand.Use, "rmi", "rm", 1),
- Short: _rmiCommand.Short,
- Long: _rmiCommand.Long,
- RunE: func(cmd *cobra.Command, args []string) error {
- rmSubCommand.InputArgs = args
- rmSubCommand.GlobalFlags = MainGlobalOpts
- return rmiCmd(&rmSubCommand)
- },
- Example: strings.Replace(_rmiCommand.Example, "podman rmi", "podman image rm", -1),
- }
-)
-
-//imageSubCommands are implemented both in local and remote clients
-var imageSubCommands = []*cobra.Command{
- _buildCommand,
- _historyCommand,
- _imagesSubCommand,
- _imageExistsCommand,
- _importCommand,
- _inspectSubCommand,
- _loadCommand,
- _pruneImagesCommand,
- _pullCommand,
- _pushCommand,
- _rmSubCommand,
- _saveCommand,
- _tagCommand,
- _treeCommand,
- _untagCommand,
-}
-
-func init() {
- rmSubCommand.Command = _rmSubCommand
- rmiInit(&rmSubCommand)
-
- imagesSubCommand.Command = _imagesSubCommand
- imagesInit(&imagesSubCommand)
-
- inspectSubCommand.Command = _inspectSubCommand
- inspectInit(&inspectSubCommand)
-
- imageCommand.SetUsageTemplate(UsageTemplate())
- imageCommand.AddCommand(imageSubCommands...)
- imageCommand.AddCommand(getImageSubCommands()...)
-
-}
diff --git a/cmd/podman/images.go b/cmd/podman/images.go
deleted file mode 100644
index ed33402ab..000000000
--- a/cmd/podman/images.go
+++ /dev/null
@@ -1,405 +0,0 @@
-package main
-
-import (
- "context"
- "fmt"
- "reflect"
- "sort"
- "strings"
- "time"
- "unicode"
-
- "github.com/containers/buildah/pkg/formats"
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/libpod/image"
- "github.com/containers/libpod/pkg/adapter"
- units "github.com/docker/go-units"
- digest "github.com/opencontainers/go-digest"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- "github.com/spf13/cobra"
-)
-
-type imagesTemplateParams struct {
- Repository string
- Tag string
- ID string
- Digest digest.Digest
- Digests []digest.Digest
- CreatedAt time.Time
- CreatedSince string
- Size string
- ReadOnly bool
- History string
-}
-
-type imagesJSONParams struct {
- ID string `json:"ID"`
- Name []string `json:"Names"`
- Created string `json:"Created"`
- Digest digest.Digest `json:"Digest"`
- Digests []digest.Digest `json:"Digests"`
- CreatedAt time.Time `json:"CreatedAt"`
- Size *uint64 `json:"Size"`
- ReadOnly bool `json:"ReadOnly"`
- History []string `json:"History"`
-}
-
-type imagesOptions struct {
- quiet bool
- noHeading bool
- noTrunc bool
- digests bool
- format string
- outputformat string
- sort string
- all bool
- history bool
-}
-
-// Type declaration and functions for sorting the images output
-type imagesSorted []imagesTemplateParams
-
-func (a imagesSorted) Len() int { return len(a) }
-func (a imagesSorted) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
-
-type imagesSortedCreated struct{ imagesSorted }
-
-func (a imagesSortedCreated) Less(i, j int) bool {
- return a.imagesSorted[i].CreatedAt.After(a.imagesSorted[j].CreatedAt)
-}
-
-type imagesSortedID struct{ imagesSorted }
-
-func (a imagesSortedID) Less(i, j int) bool { return a.imagesSorted[i].ID < a.imagesSorted[j].ID }
-
-type imagesSortedTag struct{ imagesSorted }
-
-func (a imagesSortedTag) Less(i, j int) bool { return a.imagesSorted[i].Tag < a.imagesSorted[j].Tag }
-
-type imagesSortedRepository struct{ imagesSorted }
-
-func (a imagesSortedRepository) Less(i, j int) bool {
- return a.imagesSorted[i].Repository < a.imagesSorted[j].Repository
-}
-
-type imagesSortedSize struct{ imagesSorted }
-
-func (a imagesSortedSize) Less(i, j int) bool {
- size1, _ := units.FromHumanSize(a.imagesSorted[i].Size)
- size2, _ := units.FromHumanSize(a.imagesSorted[j].Size)
- return size1 < size2
-}
-
-var (
- imagesCommand cliconfig.ImagesValues
- imagesDescription = "Lists images previously pulled to the system or created on the system."
-
- _imagesCommand = cobra.Command{
- Use: "images [flags] [IMAGE]",
- Short: "List images in local storage",
- Long: imagesDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- imagesCommand.InputArgs = args
- imagesCommand.GlobalFlags = MainGlobalOpts
- imagesCommand.Remote = remoteclient
- return imagesCmd(&imagesCommand)
- },
- Example: `podman images --format json
- podman images --sort repository --format "table {{.ID}} {{.Repository}} {{.Tag}}"
- podman images --filter dangling=true`,
- }
-)
-
-func imagesInit(command *cliconfig.ImagesValues) {
- command.SetHelpTemplate(HelpTemplate())
- command.SetUsageTemplate(UsageTemplate())
-
- flags := command.Flags()
- flags.BoolVarP(&command.All, "all", "a", false, "Show all images (default hides intermediate images)")
- flags.BoolVar(&command.Digests, "digests", false, "Show digests")
- flags.StringSliceVarP(&command.Filter, "filter", "f", []string{}, "Filter output based on conditions provided (default [])")
- flags.StringVar(&command.Format, "format", "", "Change the output format to JSON or a Go template")
- flags.BoolVarP(&command.Noheading, "noheading", "n", false, "Do not print column headings")
- // TODO Need to learn how to deal with second name being a string instead of a char.
- // This needs to be "no-trunc, notruncate"
- flags.BoolVar(&command.NoTrunc, "no-trunc", false, "Do not truncate output")
- flags.BoolVarP(&command.Quiet, "quiet", "q", false, "Display only image IDs")
- flags.StringVar(&command.Sort, "sort", "created", "Sort by created, id, repository, size, or tag")
- flags.BoolVarP(&command.History, "history", "", false, "Display the image name history")
-
-}
-
-func init() {
- imagesCommand.Command = &_imagesCommand
- imagesInit(&imagesCommand)
-}
-
-func imagesCmd(c *cliconfig.ImagesValues) error {
- var (
- image string
- )
-
- ctx := getContext()
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "Could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
- if len(c.InputArgs) == 1 {
- image = c.InputArgs[0]
- }
- if len(c.InputArgs) > 1 {
- return errors.New("'podman images' requires at most 1 argument")
- }
- if len(c.Filter) > 0 && image != "" {
- return errors.New("can not specify an image and a filter")
- }
- filters := c.Filter
- if len(filters) < 1 && len(image) > 0 {
- filters = append(filters, fmt.Sprintf("reference=%s", image))
- }
-
- var sortValues = map[string]bool{
- "created": true,
- "id": true,
- "repository": true,
- "size": true,
- "tag": true,
- }
- if !sortValues[c.Sort] {
- keys := make([]string, 0, len(sortValues))
- for k := range sortValues {
- keys = append(keys, k)
- }
- return errors.Errorf("invalid sort value %q, required values: %s", c.Sort, strings.Join(keys, ", "))
- }
-
- opts := imagesOptions{
- quiet: c.Quiet,
- noHeading: c.Noheading,
- noTrunc: c.NoTrunc,
- digests: c.Digests,
- format: c.Format,
- sort: c.Sort,
- all: c.All,
- history: c.History,
- }
-
- outputformat := opts.setOutputFormat()
- // These fields were renamed, so we need to provide backward compat for
- // the old names.
- if strings.Contains(outputformat, "{{.Created}}") {
- outputformat = strings.Replace(outputformat, "{{.Created}}", "{{.CreatedSince}}", -1)
- }
- if strings.Contains(outputformat, "{{.CreatedTime}}") {
- outputformat = strings.Replace(outputformat, "{{.CreatedTime}}", "{{.CreatedAt}}", -1)
- }
- opts.outputformat = outputformat
-
- filteredImages, err := runtime.GetFilteredImages(filters, false)
- if err != nil {
- return errors.Wrapf(err, "unable to get images")
- }
-
- for _, image := range filteredImages {
- if image.IsReadOnly() {
- opts.outputformat += "{{.ReadOnly}}\t"
- break
- }
- }
- return generateImagesOutput(ctx, filteredImages, opts)
-}
-
-func (i imagesOptions) setOutputFormat() string {
- if i.format != "" {
- // "\t" from the command line is not being recognized as a tab
- // replacing the string "\t" to a tab character if the user passes in "\t"
- return strings.Replace(i.format, `\t`, "\t", -1)
- }
- if i.quiet {
- return formats.IDString
- }
- format := "table {{.Repository}}\t{{if .Tag}}{{.Tag}}{{else}}<none>{{end}}\t"
- if i.noHeading {
- format = "{{.Repository}}\t{{if .Tag}}{{.Tag}}{{else}}<none>{{end}}\t"
- }
- if i.digests {
- format += "{{.Digest}}\t"
- }
- format += "{{.ID}}\t{{.CreatedSince}}\t{{.Size}}\t"
- if i.history {
- format += "{{if .History}}{{.History}}{{else}}<none>{{end}}\t"
- }
- return format
-}
-
-// imagesToGeneric creates an empty array of interfaces for output
-func imagesToGeneric(templParams []imagesTemplateParams, jsonParams []imagesJSONParams) []interface{} {
- genericParams := []interface{}{}
- if len(templParams) > 0 {
- for _, v := range templParams {
- genericParams = append(genericParams, interface{}(v))
- }
- return genericParams
- }
- for _, v := range jsonParams {
- genericParams = append(genericParams, interface{}(v))
- }
- return genericParams
-}
-
-func sortImagesOutput(sortBy string, imagesOutput imagesSorted) imagesSorted {
- switch sortBy {
- case "id":
- sort.Sort(imagesSortedID{imagesOutput})
- case "size":
- sort.Sort(imagesSortedSize{imagesOutput})
- case "tag":
- sort.Sort(imagesSortedTag{imagesOutput})
- case "repository":
- sort.Sort(imagesSortedRepository{imagesOutput})
- default:
- // default is created time
- sort.Sort(imagesSortedCreated{imagesOutput})
- }
- return imagesOutput
-}
-
-// getImagesTemplateOutput returns the images information to be printed in human readable format
-func getImagesTemplateOutput(ctx context.Context, images []*adapter.ContainerImage, opts imagesOptions) imagesSorted {
- var imagesOutput imagesSorted
- for _, img := range images {
- // If all is false and the image doesn't have a name, check to see if the top layer of the image is a parent
- // to another image's top layer. If it is, then it is an intermediate image so don't print out if the --all flag
- // is not set.
- isParent, err := img.IsParent(ctx)
- if err != nil {
- logrus.Errorf("error checking if image is a parent %q: %v", img.ID(), err)
- }
- if !opts.all && len(img.Names()) == 0 && isParent {
- continue
- }
- createdTime := img.Created()
-
- imageID := "sha256:" + img.ID()
- if !opts.noTrunc {
- imageID = shortID(img.ID())
- }
-
- // get all specified repo:tag and repo@digest pairs and print them separately
- repopairs, err := image.ReposToMap(img.Names())
- if err != nil {
- logrus.Errorf("error finding tag/digest for %s", img.ID())
- }
- outer:
- for repo, tags := range repopairs {
- for _, tag := range tags {
- size, err := img.Size(ctx)
- var sizeStr string
- if err != nil {
- sizeStr = err.Error()
- } else {
- sizeStr = units.HumanSizeWithPrecision(float64(*size), 3)
- lastNumIdx := strings.LastIndexFunc(sizeStr, unicode.IsNumber)
- sizeStr = sizeStr[:lastNumIdx+1] + " " + sizeStr[lastNumIdx+1:]
- }
- var imageDigest digest.Digest
- if len(tag) == 71 && strings.HasPrefix(tag, "sha256:") {
- imageDigest = digest.Digest(tag)
- tag = ""
- } else if img.Digest() != "" {
- imageDigest = img.Digest()
- }
- params := imagesTemplateParams{
- Repository: repo,
- Tag: tag,
- ID: imageID,
- Digest: imageDigest,
- Digests: img.Digests(),
- CreatedAt: createdTime,
- CreatedSince: units.HumanDuration(time.Since(createdTime)) + " ago",
- Size: sizeStr,
- ReadOnly: img.IsReadOnly(),
- History: strings.Join(img.NamesHistory(), ", "),
- }
- imagesOutput = append(imagesOutput, params)
- if opts.quiet { // Show only one image ID when quiet
- break outer
- }
- }
- }
- }
-
- // Sort images by created time
- sortImagesOutput(opts.sort, imagesOutput)
- return imagesOutput
-}
-
-// getImagesJSONOutput returns the images information in its raw form
-func getImagesJSONOutput(ctx context.Context, images []*adapter.ContainerImage) []imagesJSONParams {
- imagesOutput := []imagesJSONParams{}
- for _, img := range images {
- size, err := img.Size(ctx)
- if err != nil {
- size = nil
- }
- params := imagesJSONParams{
- ID: img.ID(),
- Name: img.Names(),
- Digest: img.Digest(),
- Digests: img.Digests(),
- Created: units.HumanDuration(time.Since(img.Created())) + " ago",
- CreatedAt: img.Created(),
- Size: size,
- ReadOnly: img.IsReadOnly(),
- History: img.NamesHistory(),
- }
- imagesOutput = append(imagesOutput, params)
- }
- return imagesOutput
-}
-
-// generateImagesOutput generates the images based on the format provided
-
-func generateImagesOutput(ctx context.Context, images []*adapter.ContainerImage, opts imagesOptions) error {
- templateMap := GenImageOutputMap()
- var out formats.Writer
-
- switch opts.format {
- case formats.JSONString:
- imagesOutput := getImagesJSONOutput(ctx, images)
- out = formats.JSONStructArray{Output: imagesToGeneric([]imagesTemplateParams{}, imagesOutput)}
- default:
- imagesOutput := getImagesTemplateOutput(ctx, images, opts)
- out = formats.StdoutTemplateArray{Output: imagesToGeneric(imagesOutput, []imagesJSONParams{}), Template: opts.outputformat, Fields: templateMap}
- }
- return out.Out()
-}
-
-// GenImageOutputMap generates the map used for outputting the images header
-// without requiring a populated image. This replaces the previous HeaderMap
-// call.
-func GenImageOutputMap() map[string]string {
- io := imagesTemplateParams{}
- v := reflect.Indirect(reflect.ValueOf(io))
- values := make(map[string]string)
-
- for i := 0; i < v.NumField(); i++ {
- key := v.Type().Field(i).Name
- value := key
- if value == "ID" {
- value = "Image" + value
- }
-
- if value == "ReadOnly" {
- values[key] = "R/O"
- continue
- }
- if value == "CreatedSince" {
- value = "created"
- }
- values[key] = strings.ToUpper(splitCamelCase(value))
- }
- return values
-}
diff --git a/cmd/podmanV2/images/diff.go b/cmd/podman/images/diff.go
index b54cb39a8..dd98dc4d6 100644
--- a/cmd/podmanV2/images/diff.go
+++ b/cmd/podman/images/diff.go
@@ -1,8 +1,8 @@
package images
import (
- "github.com/containers/libpod/cmd/podmanV2/registry"
- "github.com/containers/libpod/cmd/podmanV2/report"
+ "github.com/containers/libpod/cmd/podman/registry"
+ "github.com/containers/libpod/cmd/podman/report"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/pkg/errors"
"github.com/spf13/cobra"
diff --git a/cmd/podmanV2/images/exists.go b/cmd/podman/images/exists.go
index d35d6825e..0bb288b96 100644
--- a/cmd/podmanV2/images/exists.go
+++ b/cmd/podman/images/exists.go
@@ -3,7 +3,7 @@ package images
import (
"os"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
)
diff --git a/cmd/podmanV2/images/history.go b/cmd/podman/images/history.go
index d2e880ef7..c92072bff 100644
--- a/cmd/podmanV2/images/history.go
+++ b/cmd/podman/images/history.go
@@ -10,7 +10,7 @@ import (
"time"
"unicode"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/docker/go-units"
jsoniter "github.com/json-iterator/go"
diff --git a/cmd/podmanV2/images/image.go b/cmd/podman/images/image.go
index 7b469bc59..37e46ab9e 100644
--- a/cmd/podmanV2/images/image.go
+++ b/cmd/podman/images/image.go
@@ -1,7 +1,7 @@
package images
import (
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
)
diff --git a/cmd/podmanV2/images/images.go b/cmd/podman/images/images.go
index 588369a7e..fd3ede26a 100644
--- a/cmd/podmanV2/images/images.go
+++ b/cmd/podman/images/images.go
@@ -3,7 +3,7 @@ package images
import (
"strings"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
)
diff --git a/cmd/podmanV2/images/import.go b/cmd/podman/images/import.go
index c86db34bf..1c0568762 100644
--- a/cmd/podmanV2/images/import.go
+++ b/cmd/podman/images/import.go
@@ -4,8 +4,8 @@ import (
"context"
"fmt"
- "github.com/containers/libpod/cmd/podmanV2/parse"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/parse"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/hashicorp/go-multierror"
"github.com/pkg/errors"
diff --git a/cmd/podmanV2/images/inspect.go b/cmd/podman/images/inspect.go
index 2ee2d86ee..4482ceee5 100644
--- a/cmd/podmanV2/images/inspect.go
+++ b/cmd/podman/images/inspect.go
@@ -10,8 +10,8 @@ import (
"text/template"
"github.com/containers/buildah/pkg/formats"
- "github.com/containers/libpod/cmd/podmanV2/common"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/common"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/pkg/errors"
"github.com/spf13/cobra"
diff --git a/cmd/podmanV2/images/list.go b/cmd/podman/images/list.go
index d594a4323..366dfc4ba 100644
--- a/cmd/podmanV2/images/list.go
+++ b/cmd/podman/images/list.go
@@ -11,7 +11,7 @@ import (
"time"
"unicode"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/docker/go-units"
jsoniter "github.com/json-iterator/go"
diff --git a/cmd/podmanV2/images/load.go b/cmd/podman/images/load.go
index 004daa288..23c657b59 100644
--- a/cmd/podmanV2/images/load.go
+++ b/cmd/podman/images/load.go
@@ -8,8 +8,8 @@ import (
"os"
"github.com/containers/image/v5/docker/reference"
- "github.com/containers/libpod/cmd/podmanV2/parse"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/parse"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/containers/libpod/pkg/util"
"github.com/pkg/errors"
diff --git a/cmd/podmanV2/images/prune.go b/cmd/podman/images/prune.go
index 6577c458e..b90d889be 100644
--- a/cmd/podmanV2/images/prune.go
+++ b/cmd/podman/images/prune.go
@@ -6,7 +6,7 @@ import (
"os"
"strings"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/pkg/errors"
"github.com/spf13/cobra"
diff --git a/cmd/podmanV2/images/pull.go b/cmd/podman/images/pull.go
index 74090dee4..fb107d00c 100644
--- a/cmd/podmanV2/images/pull.go
+++ b/cmd/podman/images/pull.go
@@ -5,7 +5,7 @@ import (
buildahcli "github.com/containers/buildah/pkg/cli"
"github.com/containers/image/v5/types"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
"github.com/spf13/pflag"
diff --git a/cmd/podmanV2/images/push.go b/cmd/podman/images/push.go
index 51a60664b..f12a5ac86 100644
--- a/cmd/podmanV2/images/push.go
+++ b/cmd/podman/images/push.go
@@ -3,7 +3,7 @@ package images
import (
buildahcli "github.com/containers/buildah/pkg/cli"
"github.com/containers/image/v5/types"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/pkg/errors"
"github.com/spf13/cobra"
diff --git a/cmd/podmanV2/images/rm.go b/cmd/podman/images/rm.go
index f93d6ed50..135fda387 100644
--- a/cmd/podmanV2/images/rm.go
+++ b/cmd/podman/images/rm.go
@@ -4,7 +4,7 @@ import (
"fmt"
"os"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/pkg/errors"
"github.com/spf13/cobra"
diff --git a/cmd/podmanV2/images/rmi.go b/cmd/podman/images/rmi.go
index ae199b789..8e1759ef4 100644
--- a/cmd/podmanV2/images/rmi.go
+++ b/cmd/podman/images/rmi.go
@@ -3,7 +3,7 @@ package images
import (
"strings"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
)
diff --git a/cmd/podmanV2/images/save.go b/cmd/podman/images/save.go
index 29ee79392..8f7832074 100644
--- a/cmd/podmanV2/images/save.go
+++ b/cmd/podman/images/save.go
@@ -7,8 +7,8 @@ import (
"github.com/containers/libpod/libpod/define"
- "github.com/containers/libpod/cmd/podmanV2/parse"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/parse"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/containers/libpod/pkg/util"
"github.com/pkg/errors"
diff --git a/cmd/podmanV2/images/search.go b/cmd/podman/images/search.go
index 17c72784c..fdad94d45 100644
--- a/cmd/podmanV2/images/search.go
+++ b/cmd/podman/images/search.go
@@ -7,7 +7,7 @@ import (
buildahcli "github.com/containers/buildah/pkg/cli"
"github.com/containers/buildah/pkg/formats"
"github.com/containers/image/v5/types"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/containers/libpod/pkg/util/camelcase"
"github.com/pkg/errors"
diff --git a/cmd/podmanV2/images/tag.go b/cmd/podman/images/tag.go
index bf3cf0de6..411313a9b 100644
--- a/cmd/podmanV2/images/tag.go
+++ b/cmd/podman/images/tag.go
@@ -1,7 +1,7 @@
package images
import (
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
)
diff --git a/cmd/podmanV2/images/untag.go b/cmd/podman/images/untag.go
index 5eca1cb78..3218844b7 100644
--- a/cmd/podmanV2/images/untag.go
+++ b/cmd/podman/images/untag.go
@@ -1,7 +1,7 @@
package images
import (
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
)
diff --git a/cmd/podman/images_prune.go b/cmd/podman/images_prune.go
deleted file mode 100644
index 8f187cbd7..000000000
--- a/cmd/podman/images_prune.go
+++ /dev/null
@@ -1,73 +0,0 @@
-package main
-
-import (
- "bufio"
- "fmt"
- "os"
- "strings"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- pruneImagesCommand cliconfig.PruneImagesValues
- pruneImagesDescription = `Removes all unnamed images from local storage.
-
- If an image is not being used by a container, it will be removed from the system.`
- _pruneImagesCommand = &cobra.Command{
- Use: "prune",
- Args: noSubArgs,
- Short: "Remove unused images",
- Long: pruneImagesDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- pruneImagesCommand.InputArgs = args
- pruneImagesCommand.GlobalFlags = MainGlobalOpts
- pruneImagesCommand.Remote = remoteclient
- return pruneImagesCmd(&pruneImagesCommand)
- },
- }
-)
-
-func init() {
- pruneImagesCommand.Command = _pruneImagesCommand
- pruneImagesCommand.SetHelpTemplate(HelpTemplate())
- pruneImagesCommand.SetUsageTemplate(UsageTemplate())
- flags := pruneImagesCommand.Flags()
- flags.BoolVarP(&pruneImagesCommand.All, "all", "a", false, "Remove all unused images, not just dangling ones")
- flags.BoolVarP(&pruneImagesCommand.Force, "force", "f", false, "Do not prompt for confirmation")
- flags.StringArrayVar(&pruneImagesCommand.Filter, "filter", []string{}, "Provide filter values (e.g. 'label=<key>=<value>')")
-}
-
-func pruneImagesCmd(c *cliconfig.PruneImagesValues) error {
- if !c.Force {
- reader := bufio.NewReader(os.Stdin)
- fmt.Printf(`
-WARNING! This will remove all dangling images.
-Are you sure you want to continue? [y/N] `)
- answer, err := reader.ReadString('\n')
- if err != nil {
- return errors.Wrapf(err, "error reading input")
- }
- if strings.ToLower(answer)[0] != 'y' {
- return nil
- }
- }
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- // Call prune; if any cids are returned, print them and then
- // return err in case an error also came up
- pruneCids, err := runtime.PruneImages(getContext(), c.All, c.Filter)
- if len(pruneCids) > 0 {
- for _, cid := range pruneCids {
- fmt.Println(cid)
- }
- }
- return err
-}
diff --git a/cmd/podman/import.go b/cmd/podman/import.go
deleted file mode 100644
index 5a21e5cc1..000000000
--- a/cmd/podman/import.go
+++ /dev/null
@@ -1,88 +0,0 @@
-package main
-
-import (
- "fmt"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/cmd/podman/shared/parse"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/hashicorp/go-multierror"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- importCommand cliconfig.ImportValues
-
- importDescription = `Create a container image from the contents of the specified tarball (.tar, .tar.gz, .tgz, .bzip, .tar.xz, .txz).
-
- Note remote tar balls can be specified, via web address.
- Optionally tag the image. You can specify the instructions using the --change option.`
- _importCommand = &cobra.Command{
- Use: "import [flags] PATH [REFERENCE]",
- Short: "Import a tarball to create a filesystem image",
- Long: importDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- importCommand.InputArgs = args
- importCommand.GlobalFlags = MainGlobalOpts
- importCommand.Remote = remoteclient
- return importCmd(&importCommand)
- },
- Example: `podman import http://example.com/ctr.tar url-image
- cat ctr.tar | podman -q import --message "importing the ctr.tar tarball" - image-imported
- cat ctr.tar | podman import -`,
- }
-)
-
-func init() {
- importCommand.Command = _importCommand
- importCommand.SetHelpTemplate(HelpTemplate())
- importCommand.SetUsageTemplate(UsageTemplate())
- flags := importCommand.Flags()
- flags.StringArrayVarP(&importCommand.Change, "change", "c", []string{}, "Apply the following possible instructions to the created image (default []): CMD | ENTRYPOINT | ENV | EXPOSE | LABEL | STOPSIGNAL | USER | VOLUME | WORKDIR")
- flags.StringVarP(&importCommand.Message, "message", "m", "", "Set commit message for imported image")
- flags.BoolVarP(&importCommand.Quiet, "quiet", "q", false, "Suppress output")
-
-}
-
-func importCmd(c *cliconfig.ImportValues) error {
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- var (
- source string
- reference string
- )
- args := c.InputArgs
- switch len(args) {
- case 0:
- return errors.Errorf("need to give the path to the tarball, or must specify a tarball of '-' for stdin")
- case 1:
- source = args[0]
- case 2:
- source = args[0]
- reference = args[1]
- default:
- return errors.Errorf("too many arguments. Usage TARBALL [REFERENCE]")
- }
-
- errFileName := parse.ValidateFileName(source)
- errURL := parse.ValidURL(source)
-
- if errFileName != nil && errURL != nil {
- return multierror.Append(errFileName, errURL)
- }
-
- quiet := c.Quiet
- if runtime.Remote {
- quiet = false
- }
- iid, err := runtime.Import(getContext(), source, reference, importCommand.Change, c.String("message"), quiet)
- if err == nil {
- fmt.Println(iid)
- }
- return err
-}
diff --git a/cmd/podman/info.go b/cmd/podman/info.go
deleted file mode 100644
index 79417b85d..000000000
--- a/cmd/podman/info.go
+++ /dev/null
@@ -1,146 +0,0 @@
-package main
-
-import (
- "fmt"
- "html/template"
- "os"
- rt "runtime"
- "strings"
-
- "github.com/containers/buildah/pkg/formats"
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/libpod/define"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/containers/libpod/version"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- infoCommand cliconfig.InfoValues
-
- infoDescription = `Display information pertaining to the host, current storage stats, and build of podman.
-
- Useful for the user and when reporting issues.
-`
- _infoCommand = &cobra.Command{
- Use: "info",
- Args: noSubArgs,
- Long: infoDescription,
- Short: "Display podman system information",
- RunE: func(cmd *cobra.Command, args []string) error {
- infoCommand.InputArgs = args
- infoCommand.GlobalFlags = MainGlobalOpts
- infoCommand.Remote = remoteclient
- return infoCmd(&infoCommand)
- },
- Example: `podman info`,
- }
-)
-
-func init() {
- infoCommand.Command = _infoCommand
- infoCommand.SetHelpTemplate(HelpTemplate())
- infoCommand.SetUsageTemplate(UsageTemplate())
- flags := infoCommand.Flags()
-
- flags.BoolVarP(&infoCommand.Debug, "debug", "D", false, "Display additional debug information")
- flags.StringVarP(&infoCommand.Format, "format", "f", "", "Change the output format to JSON or a Go template")
-
-}
-
-func infoCmd(c *cliconfig.InfoValues) error {
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- i, err := runtime.Info()
- if err != nil {
- return errors.Wrapf(err, "error getting info")
- }
-
- info := infoWithExtra{Info: i}
- if runtime.Remote {
- endpoint, err := runtime.RemoteEndpoint()
- if err != nil {
- return err
- }
- info.Remote = getRemote(endpoint)
- }
-
- if !runtime.Remote && c.Debug {
- d, err := getDebug()
- if err != nil {
- return err
- }
- info.Debug = d
- }
-
- var out formats.Writer
- infoOutputFormat := c.Format
- if strings.Join(strings.Fields(infoOutputFormat), "") == "{{json.}}" {
- infoOutputFormat = formats.JSONString
- }
- switch infoOutputFormat {
- case formats.JSONString:
- out = formats.JSONStruct{Output: info}
- case "":
- out = formats.YAMLStruct{Output: info}
- default:
- tmpl, err := template.New("info").Parse(c.Format)
- if err != nil {
- return err
- }
- err = tmpl.Execute(os.Stdout, info)
- return err
- }
-
- return out.Out()
-}
-
-// top-level "debug" info
-func getDebug() (*debugInfo, error) {
- v, err := define.GetVersion()
- if err != nil {
- return nil, err
- }
- return &debugInfo{
- Compiler: rt.Compiler,
- GoVersion: rt.Version(),
- PodmanVersion: v.Version,
- GitCommit: v.GitCommit,
- }, nil
-}
-
-func getRemote(endpoint *adapter.Endpoint) *remoteInfo {
- return &remoteInfo{
- Connection: endpoint.Connection,
- ConnectionType: endpoint.Type.String(),
- RemoteAPIVersion: string(version.RemoteAPIVersion),
- PodmanVersion: version.Version,
- OSArch: fmt.Sprintf("%s/%s", rt.GOOS, rt.GOARCH),
- }
-}
-
-type infoWithExtra struct {
- *define.Info
- Remote *remoteInfo `json:"remote,omitempty"`
- Debug *debugInfo `json:"debug,omitempty"`
-}
-
-type remoteInfo struct {
- Connection string `json:"connection"`
- ConnectionType string `json:"connectionType"`
- RemoteAPIVersion string `json:"remoteAPIVersion"`
- PodmanVersion string `json:"podmanVersion"`
- OSArch string `json:"OSArch"`
-}
-
-type debugInfo struct {
- Compiler string `json:"compiler"`
- GoVersion string `json:"goVersion"`
- PodmanVersion string `json:"podmanVersion"`
- GitCommit string `json:"gitCommit"`
-}
diff --git a/cmd/podman/init.go b/cmd/podman/init.go
deleted file mode 100644
index 2e0b33828..000000000
--- a/cmd/podman/init.go
+++ /dev/null
@@ -1,64 +0,0 @@
-package main
-
-import (
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/opentracing/opentracing-go"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- initCommand cliconfig.InitValues
- initDescription = `Initialize one or more containers, creating the OCI spec and mounts for inspection. Container names or IDs can be used.`
-
- _initCommand = &cobra.Command{
- Use: "init [flags] CONTAINER [CONTAINER...]",
- Short: "Initialize one or more containers",
- Long: initDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- initCommand.InputArgs = args
- initCommand.GlobalFlags = MainGlobalOpts
- initCommand.Remote = remoteclient
- return initCmd(&initCommand)
- },
- Args: func(cmd *cobra.Command, args []string) error {
- return checkAllLatestAndCIDFile(cmd, args, false, false)
- },
- Example: `podman init --latest
- podman init 3c45ef19d893
- podman init test1`,
- }
-)
-
-func init() {
- initCommand.Command = _initCommand
- initCommand.SetHelpTemplate(HelpTemplate())
- initCommand.SetUsageTemplate(UsageTemplate())
- flags := initCommand.Flags()
- flags.BoolVarP(&initCommand.All, "all", "a", false, "Initialize all containers")
- flags.BoolVarP(&initCommand.Latest, "latest", "l", false, "Act on the latest container podman is aware of")
- markFlagHiddenForRemoteClient("latest", flags)
-}
-
-// initCmd initializes a container
-func initCmd(c *cliconfig.InitValues) error {
- if c.Bool("trace") {
- span, _ := opentracing.StartSpanFromContext(Ctx, "initCmd")
- defer span.Finish()
- }
-
- ctx := getContext()
-
- runtime, err := adapter.GetRuntime(ctx, &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- ok, failures, err := runtime.InitContainers(ctx, c)
- if err != nil {
- return err
- }
- return printCmdResults(ok, failures)
-}
diff --git a/cmd/podman/inspect.go b/cmd/podman/inspect.go
index 872b59561..0393303e8 100644
--- a/cmd/podman/inspect.go
+++ b/cmd/podman/inspect.go
@@ -2,193 +2,51 @@ package main
import (
"context"
- "strings"
+ "fmt"
- "github.com/containers/buildah/pkg/formats"
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/containers/libpod/pkg/util"
- "github.com/pkg/errors"
+ "github.com/containers/libpod/cmd/podman/common"
+ "github.com/containers/libpod/cmd/podman/containers"
+ "github.com/containers/libpod/cmd/podman/images"
+ "github.com/containers/libpod/cmd/podman/registry"
+ "github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
)
-const (
- inspectTypeContainer = "container"
- inspectTypeImage = "image"
- inspectAll = "all"
-)
+// Inspect is one of the outlier commands in that it operates on images/containers/...
var (
- inspectCommand cliconfig.InspectValues
-
- inspectDescription = `This displays the low-level information on containers and images identified by name or ID.
+ inspectOpts *entities.InspectOptions
- If given a name that matches both a container and an image, this command inspects the container. By default, this will render all results in a JSON array.`
- _inspectCommand = cobra.Command{
- Use: "inspect [flags] CONTAINER | IMAGE",
- Short: "Display the configuration of a container or image",
- Long: inspectDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- inspectCommand.InputArgs = args
- inspectCommand.GlobalFlags = MainGlobalOpts
- inspectCommand.Remote = remoteclient
- return inspectCmd(&inspectCommand)
- },
- Example: `podman inspect alpine
- podman inspect --format "imageId: {{.Id}} size: {{.Size}}" alpine
- podman inspect --format "image: {{.ImageName}} driver: {{.Driver}}" myctr`,
+ // Command: podman _inspect_ Object_ID
+ inspectCmd = &cobra.Command{
+ Use: "inspect [flags] {CONTAINER_ID | IMAGE_ID}",
+ Args: cobra.ExactArgs(1),
+ Short: "Display the configuration of object denoted by ID",
+ Long: "Displays the low-level information on an object identified by name or ID",
+ TraverseChildren: true,
+ RunE: inspect,
}
)
-func inspectInit(command *cliconfig.InspectValues) {
- command.SetHelpTemplate(HelpTemplate())
- command.SetUsageTemplate(UsageTemplate())
- flags := command.Flags()
- flags.StringVarP(&command.Format, "format", "f", "", "Change the output format to a Go template")
-
- // -t flag applicable only to 'podman inspect', not 'image/container inspect'
- ambiguous := strings.Contains(command.Use, "|")
- if ambiguous {
- flags.StringVarP(&command.TypeObject, "type", "t", inspectAll, "Return JSON for specified type, (image or container)")
- }
-
- if strings.Contains(command.Use, "CONTAINER") {
- containers_only := " (containers only)"
- if !ambiguous {
- containers_only = ""
- command.TypeObject = inspectTypeContainer
- }
- flags.BoolVarP(&command.Latest, "latest", "l", false, "Act on the latest container podman is aware of"+containers_only)
- flags.BoolVarP(&command.Size, "size", "s", false, "Display total file size"+containers_only)
- markFlagHiddenForRemoteClient("latest", flags)
- } else {
- command.TypeObject = inspectTypeImage
- }
-}
func init() {
- inspectCommand.Command = &_inspectCommand
- inspectInit(&inspectCommand)
+ registry.Commands = append(registry.Commands, registry.CliCommand{
+ Mode: []entities.EngineMode{entities.ABIMode, entities.TunnelMode},
+ Command: inspectCmd,
+ })
+ inspectOpts = common.AddInspectFlagSet(inspectCmd)
}
-func inspectCmd(c *cliconfig.InspectValues) error {
- args := c.InputArgs
- inspectType := c.TypeObject
- latestContainer := c.Latest
- if len(args) == 0 && !latestContainer {
- return errors.Errorf("container or image name must be specified: podman inspect [options [...]] name")
- }
-
- if len(args) > 0 && latestContainer {
- return errors.Errorf("you cannot provide additional arguments with --latest")
- }
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "error creating libpod runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- if !util.StringInSlice(inspectType, []string{inspectTypeContainer, inspectTypeImage, inspectAll}) {
- return errors.Errorf("the only recognized types are %q, %q, and %q", inspectTypeContainer, inspectTypeImage, inspectAll)
+func inspect(cmd *cobra.Command, args []string) error {
+ if found, err := registry.ImageEngine().Exists(context.Background(), args[0]); err != nil {
+ return err
+ } else if found.Value {
+ return images.Inspect(cmd, args, inspectOpts)
}
- outputFormat := c.Format
- if strings.Contains(outputFormat, "{{.Id}}") {
- outputFormat = strings.Replace(outputFormat, "{{.Id}}", formats.IDString, -1)
- }
- // These fields were renamed, so we need to provide backward compat for
- // the old names.
- if strings.Contains(outputFormat, ".Src") {
- outputFormat = strings.Replace(outputFormat, ".Src", ".Source", -1)
- }
- if strings.Contains(outputFormat, ".Dst") {
- outputFormat = strings.Replace(outputFormat, ".Dst", ".Destination", -1)
- }
- if strings.Contains(outputFormat, ".ImageID") {
- outputFormat = strings.Replace(outputFormat, ".ImageID", ".Image", -1)
- }
- if latestContainer {
- lc, err := runtime.GetLatestContainer()
- if err != nil {
- return err
- }
- args = append(args, lc.ID())
- inspectType = inspectTypeContainer
- }
-
- inspectedObjects, iterateErr := iterateInput(getContext(), c.Size, args, runtime, inspectType)
- if iterateErr != nil {
- return iterateErr
- }
-
- var out formats.Writer
- if outputFormat != "" && outputFormat != formats.JSONString {
- //template
- out = formats.StdoutTemplateArray{Output: inspectedObjects, Template: outputFormat}
- } else {
- // default is json output
- out = formats.JSONStructArray{Output: inspectedObjects}
- }
-
- return out.Out()
-}
-
-// func iterateInput iterates the images|containers the user has requested and returns the inspect data and error
-func iterateInput(ctx context.Context, size bool, args []string, runtime *adapter.LocalRuntime, inspectType string) ([]interface{}, error) {
- var (
- data interface{}
- inspectedItems []interface{}
- inspectError error
- )
-
- for _, input := range args {
- switch inspectType {
- case inspectTypeContainer:
- ctr, err := runtime.LookupContainer(input)
- if err != nil {
- inspectError = errors.Wrapf(err, "error looking up container %q", input)
- break
- }
- data, err = ctr.Inspect(size)
- if err != nil {
- inspectError = errors.Wrapf(err, "error inspecting container %s", ctr.ID())
- break
- }
- case inspectTypeImage:
- image, err := runtime.NewImageFromLocal(input)
- if err != nil {
- inspectError = errors.Wrapf(err, "error getting image %q", input)
- break
- }
- data, err = image.Inspect(ctx)
- if err != nil {
- inspectError = errors.Wrapf(err, "error parsing image data %q", image.ID())
- break
- }
- case inspectAll:
- ctr, err := runtime.LookupContainer(input)
- if err != nil {
- image, err := runtime.NewImageFromLocal(input)
- if err != nil {
- inspectError = errors.Wrapf(err, "error getting image %q", input)
- break
- }
- data, err = image.Inspect(ctx)
- if err != nil {
- inspectError = errors.Wrapf(err, "error parsing image data %q", image.ID())
- break
- }
- } else {
- data, err = ctr.Inspect(size)
- if err != nil {
- inspectError = errors.Wrapf(err, "error inspecting container %s", ctr.ID())
- break
- }
- }
- }
- if inspectError == nil {
- inspectedItems = append(inspectedItems, data)
- }
+ if found, err := registry.ContainerEngine().ContainerExists(context.Background(), args[0]); err != nil {
+ return err
+ } else if found.Value {
+ return containers.Inspect(cmd, args, inspectOpts)
}
- return inspectedItems, inspectError
+ return fmt.Errorf("%s not found on system", args[0])
}
diff --git a/cmd/podman/kill.go b/cmd/podman/kill.go
deleted file mode 100644
index a10546ea9..000000000
--- a/cmd/podman/kill.go
+++ /dev/null
@@ -1,73 +0,0 @@
-package main
-
-import (
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/containers/libpod/pkg/util"
- "github.com/opentracing/opentracing-go"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- killCommand cliconfig.KillValues
-
- killDescription = "The main process inside each container specified will be sent SIGKILL, or any signal specified with option --signal."
- _killCommand = &cobra.Command{
- Use: "kill [flags] CONTAINER [CONTAINER...]",
- Short: "Kill one or more running containers with a specific signal",
- Long: killDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- killCommand.InputArgs = args
- killCommand.GlobalFlags = MainGlobalOpts
- killCommand.Remote = remoteclient
- return killCmd(&killCommand)
- },
- Args: func(cmd *cobra.Command, args []string) error {
- return checkAllLatestAndCIDFile(cmd, args, false, false)
- },
- Example: `podman kill mywebserver
- podman kill 860a4b23
- podman kill --signal TERM ctrID`,
- }
-)
-
-func init() {
- killCommand.Command = _killCommand
- killCommand.SetHelpTemplate(HelpTemplate())
- killCommand.SetUsageTemplate(UsageTemplate())
- flags := killCommand.Flags()
-
- flags.BoolVarP(&killCommand.All, "all", "a", false, "Signal all running containers")
- flags.StringVarP(&killCommand.Signal, "signal", "s", "KILL", "Signal to send to the container")
- flags.BoolVarP(&killCommand.Latest, "latest", "l", false, "Act on the latest container podman is aware of")
-
- markFlagHiddenForRemoteClient("latest", flags)
-}
-
-// killCmd kills one or more containers with a signal
-func killCmd(c *cliconfig.KillValues) error {
- if c.Bool("trace") {
- span, _ := opentracing.StartSpanFromContext(Ctx, "killCmd")
- defer span.Finish()
- }
-
- // Check if the signalString provided by the user is valid
- // Invalid signals will return err
- killSignal, err := util.ParseSignal(c.Signal)
- if err != nil {
- return err
- }
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- ok, failures, err := runtime.KillContainers(getContext(), c, killSignal)
- if err != nil {
- return err
- }
- return printCmdResults(ok, failures)
-}
diff --git a/cmd/podman/libpodruntime/runtime.go b/cmd/podman/libpodruntime/runtime.go
deleted file mode 100644
index 8dbc4009b..000000000
--- a/cmd/podman/libpodruntime/runtime.go
+++ /dev/null
@@ -1,216 +0,0 @@
-package libpodruntime
-
-import (
- "context"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/libpod"
- "github.com/containers/libpod/pkg/cgroups"
- "github.com/containers/libpod/pkg/namespaces"
- "github.com/containers/libpod/pkg/rootless"
- "github.com/containers/libpod/pkg/util"
- "github.com/containers/storage"
- "github.com/pkg/errors"
-)
-
-type runtimeOptions struct {
- name string
- renumber bool
- migrate bool
- noStore bool
- withFDS bool
-}
-
-// GetRuntimeMigrate gets a libpod runtime that will perform a migration of existing containers
-func GetRuntimeMigrate(ctx context.Context, c *cliconfig.PodmanCommand, newRuntime string) (*libpod.Runtime, error) {
- return getRuntime(ctx, c, &runtimeOptions{
- name: newRuntime,
- renumber: false,
- migrate: true,
- noStore: false,
- withFDS: true,
- })
-}
-
-// GetRuntimeDisableFDs gets a libpod runtime that will disable sd notify
-func GetRuntimeDisableFDs(ctx context.Context, c *cliconfig.PodmanCommand) (*libpod.Runtime, error) {
- return getRuntime(ctx, c, &runtimeOptions{
- renumber: false,
- migrate: false,
- noStore: false,
- withFDS: false,
- })
-}
-
-// GetRuntimeRenumber gets a libpod runtime that will perform a lock renumber
-func GetRuntimeRenumber(ctx context.Context, c *cliconfig.PodmanCommand) (*libpod.Runtime, error) {
- return getRuntime(ctx, c, &runtimeOptions{
- renumber: true,
- migrate: false,
- noStore: false,
- withFDS: true,
- })
-}
-
-// GetRuntime generates a new libpod runtime configured by command line options
-func GetRuntime(ctx context.Context, c *cliconfig.PodmanCommand) (*libpod.Runtime, error) {
- return getRuntime(ctx, c, &runtimeOptions{
- renumber: false,
- migrate: false,
- noStore: false,
- withFDS: true,
- })
-}
-
-// GetRuntimeNoStore generates a new libpod runtime configured by command line options
-func GetRuntimeNoStore(ctx context.Context, c *cliconfig.PodmanCommand) (*libpod.Runtime, error) {
- return getRuntime(ctx, c, &runtimeOptions{
- renumber: false,
- migrate: false,
- noStore: true,
- withFDS: true,
- })
-}
-
-func getRuntime(ctx context.Context, c *cliconfig.PodmanCommand, opts *runtimeOptions) (*libpod.Runtime, error) {
- options := []libpod.RuntimeOption{}
- storageOpts := storage.StoreOptions{}
- storageSet := false
-
- uidmapFlag := c.Flags().Lookup("uidmap")
- gidmapFlag := c.Flags().Lookup("gidmap")
- subuidname := c.Flags().Lookup("subuidname")
- subgidname := c.Flags().Lookup("subgidname")
- if (uidmapFlag != nil && gidmapFlag != nil && subuidname != nil && subgidname != nil) &&
- (uidmapFlag.Changed || gidmapFlag.Changed || subuidname.Changed || subgidname.Changed) {
- userns, _ := c.Flags().GetString("userns")
- uidmapVal, _ := c.Flags().GetStringSlice("uidmap")
- gidmapVal, _ := c.Flags().GetStringSlice("gidmap")
- subuidVal, _ := c.Flags().GetString("subuidname")
- subgidVal, _ := c.Flags().GetString("subgidname")
- mappings, err := util.ParseIDMapping(namespaces.UsernsMode(userns), uidmapVal, gidmapVal, subuidVal, subgidVal)
- if err != nil {
- return nil, err
- }
- storageOpts.UIDMap = mappings.UIDMap
- storageOpts.GIDMap = mappings.GIDMap
-
- storageSet = true
- }
-
- if c.Flags().Changed("root") {
- storageSet = true
- storageOpts.GraphRoot = c.GlobalFlags.Root
- }
- if c.Flags().Changed("runroot") {
- storageSet = true
- storageOpts.RunRoot = c.GlobalFlags.Runroot
- }
- if len(storageOpts.RunRoot) > 50 {
- return nil, errors.New("the specified runroot is longer than 50 characters")
- }
- if c.Flags().Changed("storage-driver") {
- storageSet = true
- storageOpts.GraphDriverName = c.GlobalFlags.StorageDriver
- // Overriding the default storage driver caused GraphDriverOptions from storage.conf to be ignored
- storageOpts.GraphDriverOptions = []string{}
- }
- // This should always be checked after storage-driver is checked
- if len(c.GlobalFlags.StorageOpts) > 0 {
- storageSet = true
- storageOpts.GraphDriverOptions = c.GlobalFlags.StorageOpts
- }
- if opts.migrate {
- options = append(options, libpod.WithMigrate())
- if opts.name != "" {
- options = append(options, libpod.WithMigrateRuntime(opts.name))
- }
- }
-
- if opts.renumber {
- options = append(options, libpod.WithRenumber())
- }
-
- // Only set this if the user changes storage config on the command line
- if storageSet {
- options = append(options, libpod.WithStorageConfig(storageOpts))
- }
-
- if !storageSet && opts.noStore {
- options = append(options, libpod.WithNoStore())
- }
- // TODO CLI flags for image config?
- // TODO CLI flag for signature policy?
-
- if len(c.GlobalFlags.Namespace) > 0 {
- options = append(options, libpod.WithNamespace(c.GlobalFlags.Namespace))
- }
-
- if c.Flags().Changed("runtime") {
- options = append(options, libpod.WithOCIRuntime(c.GlobalFlags.Runtime))
- }
-
- if c.Flags().Changed("conmon") {
- options = append(options, libpod.WithConmonPath(c.GlobalFlags.ConmonPath))
- }
- if c.Flags().Changed("tmpdir") {
- options = append(options, libpod.WithTmpDir(c.GlobalFlags.TmpDir))
- }
- if c.Flags().Changed("network-cmd-path") {
- options = append(options, libpod.WithNetworkCmdPath(c.GlobalFlags.NetworkCmdPath))
- }
-
- if c.Flags().Changed("events-backend") {
- options = append(options, libpod.WithEventsLogger(c.GlobalFlags.EventsBackend))
- }
-
- if c.Flags().Changed("cgroup-manager") {
- options = append(options, libpod.WithCgroupManager(c.GlobalFlags.CGroupManager))
- } else {
- unified, err := cgroups.IsCgroup2UnifiedMode()
- if err != nil {
- return nil, err
- }
- if rootless.IsRootless() && !unified {
- options = append(options, libpod.WithCgroupManager("cgroupfs"))
- }
- }
-
- // TODO flag to set libpod static dir?
- // TODO flag to set libpod tmp dir?
-
- if c.Flags().Changed("cni-config-dir") {
- options = append(options, libpod.WithCNIConfigDir(c.GlobalFlags.CniConfigDir))
- }
- if c.Flags().Changed("default-mounts-file") {
- options = append(options, libpod.WithDefaultMountsFile(c.GlobalFlags.DefaultMountsFile))
- }
- if c.Flags().Changed("hooks-dir") {
- options = append(options, libpod.WithHooksDir(c.GlobalFlags.HooksDir...))
- }
-
- // TODO flag to set CNI plugins dir?
-
- // TODO I don't think these belong here?
- // Will follow up with a different PR to address
- //
- // Pod create options
-
- infraImageFlag := c.Flags().Lookup("infra-image")
- if infraImageFlag != nil && infraImageFlag.Changed {
- infraImage, _ := c.Flags().GetString("infra-image")
- options = append(options, libpod.WithDefaultInfraImage(infraImage))
- }
-
- infraCommandFlag := c.Flags().Lookup("infra-command")
- if infraCommandFlag != nil && infraImageFlag.Changed {
- infraCommand, _ := c.Flags().GetString("infra-command")
- options = append(options, libpod.WithDefaultInfraCommand(infraCommand))
- }
-
- if !opts.withFDS {
- options = append(options, libpod.WithEnableSDNotify())
- }
-
- return libpod.NewRuntime(ctx, options...)
-}
diff --git a/cmd/podman/load.go b/cmd/podman/load.go
deleted file mode 100644
index 318b5b5fb..000000000
--- a/cmd/podman/load.go
+++ /dev/null
@@ -1,110 +0,0 @@
-package main
-
-import (
- "fmt"
- "io"
- "io/ioutil"
- "os"
- "strings"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/cmd/podman/shared/parse"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/containers/libpod/pkg/util"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
- "golang.org/x/crypto/ssh/terminal"
-)
-
-var (
- loadCommand cliconfig.LoadValues
-
- loadDescription = "Loads an image from a locally stored archive (tar file) into container storage."
-
- _loadCommand = &cobra.Command{
- Use: "load [flags] [NAME[:TAG]]",
- Short: "Load an image from container archive",
- Long: loadDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- loadCommand.InputArgs = args
- loadCommand.GlobalFlags = MainGlobalOpts
- loadCommand.Remote = remoteclient
- return loadCmd(&loadCommand)
- },
- }
-)
-
-func init() {
- loadCommand.Command = _loadCommand
- loadCommand.SetHelpTemplate(HelpTemplate())
- loadCommand.SetUsageTemplate(UsageTemplate())
- flags := loadCommand.Flags()
- flags.StringVarP(&loadCommand.Input, "input", "i", "", "Read from specified archive file (default: stdin)")
- flags.BoolVarP(&loadCommand.Quiet, "quiet", "q", false, "Suppress the output")
- // Disabled flags for the remote client
- if !remote {
- flags.StringVar(&loadCommand.SignaturePolicy, "signature-policy", "", "Pathname of signature policy file (not usually used)")
- markFlagHidden(flags, "signature-policy")
- }
-}
-
-// loadCmd gets the image/file to be loaded from the command line
-// and calls loadImage to load the image to containers-storage
-func loadCmd(c *cliconfig.LoadValues) error {
-
- args := c.InputArgs
- var imageName string
-
- if len(args) == 1 {
- imageName = args[0]
- }
- if len(args) > 1 {
- return errors.New("too many arguments. Requires exactly 1")
- }
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- if len(c.Input) > 0 {
- if err := parse.ValidateFileName(c.Input); err != nil {
- return err
- }
- } else {
- if terminal.IsTerminal(int(os.Stdin.Fd())) {
- return errors.Errorf("cannot read from terminal. Use command-line redirection or the --input flag.")
- }
- outFile, err := ioutil.TempFile(util.Tmpdir(), "podman")
- if err != nil {
- return errors.Errorf("error creating file %v", err)
- }
- defer os.Remove(outFile.Name())
- defer outFile.Close()
-
- _, err = io.Copy(outFile, os.Stdin)
- if err != nil {
- return errors.Errorf("error copying file %v", err)
- }
-
- c.Input = outFile.Name()
- }
-
- names, err := runtime.LoadImage(getContext(), imageName, c)
- if err != nil {
- return err
- }
- if len(imageName) > 0 {
- split := strings.Split(names, ",")
- newImage, err := runtime.NewImageFromLocal(split[0])
- if err != nil {
- return err
- }
- if err := newImage.TagImage(imageName); err != nil {
- return errors.Wrapf(err, "error adding '%s' to image %q", imageName, newImage.InputName)
- }
- }
- fmt.Println("Loaded image(s): " + names)
- return nil
-}
diff --git a/cmd/podman/login.go b/cmd/podman/login.go
deleted file mode 100644
index 1539e3a79..000000000
--- a/cmd/podman/login.go
+++ /dev/null
@@ -1,210 +0,0 @@
-package main
-
-import (
- "bufio"
- "fmt"
- "os"
- "strings"
-
- buildahcli "github.com/containers/buildah/pkg/cli"
- "github.com/containers/image/v5/docker"
- "github.com/containers/image/v5/pkg/docker/config"
- "github.com/containers/image/v5/types"
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/libpod/image"
- "github.com/containers/libpod/pkg/registries"
- "github.com/docker/docker-credential-helpers/credentials"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- "github.com/spf13/cobra"
- "golang.org/x/crypto/ssh/terminal"
-)
-
-var (
- loginCommand cliconfig.LoginValues
-
- loginDescription = "Login to a container registry on a specified server."
- _loginCommand = &cobra.Command{
- Use: "login [flags] REGISTRY",
- Short: "Login to a container registry",
- Long: loginDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- loginCommand.InputArgs = args
- loginCommand.GlobalFlags = MainGlobalOpts
- loginCommand.Remote = remoteclient
- return loginCmd(&loginCommand)
- },
- Example: `podman login -u testuser -p testpassword localhost:5000
- podman login -u testuser -p testpassword localhost:5000`,
- }
-)
-
-func init() {
- if !remote {
- _loginCommand.Example = fmt.Sprintf("%s\n podman login --authfile authdir/myauths.json quay.io", _loginCommand.Example)
-
- }
- loginCommand.Command = _loginCommand
- loginCommand.SetHelpTemplate(HelpTemplate())
- loginCommand.SetUsageTemplate(UsageTemplate())
- flags := loginCommand.Flags()
-
- flags.BoolVar(&loginCommand.GetLogin, "get-login", true, "Return the current login user for the registry")
- flags.StringVarP(&loginCommand.Password, "password", "p", "", "Password for registry")
- flags.StringVarP(&loginCommand.Username, "username", "u", "", "Username for registry")
- flags.BoolVar(&loginCommand.StdinPassword, "password-stdin", false, "Take the password from stdin")
- // Disabled flags for the remote client
- if !remote {
- flags.StringVar(&loginCommand.Authfile, "authfile", buildahcli.GetDefaultAuthFile(), "Path of the authentication file. Use REGISTRY_AUTH_FILE environment variable to override")
- flags.StringVar(&loginCommand.CertDir, "cert-dir", "", "Pathname of a directory containing TLS certificates and keys used to connect to the registry")
- flags.BoolVar(&loginCommand.TlsVerify, "tls-verify", true, "Require HTTPS and verify certificates when contacting registries")
- }
-}
-
-// loginCmd uses the authentication package to store a user's authenticated credentials
-// in an auth.json file for future use
-func loginCmd(c *cliconfig.LoginValues) error {
- args := c.InputArgs
- if len(args) > 1 {
- return errors.Errorf("too many arguments, login takes only 1 argument")
- }
- var server string
- if len(args) == 0 {
- registriesFromFile, err := registries.GetRegistries()
- if err != nil || len(registriesFromFile) == 0 {
- return errors.Errorf("please specify a registry to login to")
- }
-
- server = registriesFromFile[0]
- logrus.Debugf("registry not specified, default to the first registry %q from registries.conf", server)
-
- } else {
- server = registryFromFullName(scrubServer(args[0]))
- }
-
- if c.Flag("password").Changed {
- fmt.Fprintf(os.Stderr, "WARNING! Using --password via the cli is insecure. Please consider using --password-stdin\n")
- }
-
- sc := image.GetSystemContext("", c.Authfile, false)
- if c.Flag("tls-verify").Changed {
- sc.DockerInsecureSkipTLSVerify = types.NewOptionalBool(!c.TlsVerify)
- }
- if c.CertDir != "" {
- sc.DockerCertPath = c.CertDir
- }
-
- // username of user logged in to server (if one exists)
- authConfig, err := config.GetCredentials(sc, server)
- // Do not return error if no credentials found in credHelpers, new credentials will be stored by config.SetAuthentication
- if err != nil && err != credentials.NewErrCredentialsNotFound() {
- return errors.Wrapf(err, "error reading auth file")
- }
- if authConfig.IdentityToken != "" {
- return errors.Errorf("currently logged in, auth file contains an Identity token")
- }
- if c.Flag("get-login").Changed {
- if authConfig.Username == "" {
- return errors.Errorf("not logged into %s", server)
- }
- fmt.Printf("%s\n", authConfig.Username)
- return nil
- }
-
- ctx := getContext()
-
- password := c.Password
-
- if c.Flag("password-stdin").Changed {
- var stdinPasswordStrBuilder strings.Builder
- if c.Password != "" {
- return errors.Errorf("Can't specify both --password-stdin and --password")
- }
- if c.Username == "" {
- return errors.Errorf("Must provide --username with --password-stdin")
- }
- scanner := bufio.NewScanner(os.Stdin)
- for scanner.Scan() {
- fmt.Fprint(&stdinPasswordStrBuilder, scanner.Text())
- }
- password = stdinPasswordStrBuilder.String()
- }
-
- // If no username and no password is specified, try to use existing ones.
- if c.Username == "" && password == "" && authConfig.Username == "" && authConfig.Password != "" {
- fmt.Println("Authenticating with existing credentials...")
- if err := docker.CheckAuth(ctx, sc, authConfig.Username, authConfig.Password, server); err == nil {
- fmt.Println("Existing credentials are valid. Already logged in to", server)
- return nil
- }
- fmt.Println("Existing credentials are invalid, please enter valid username and password")
- }
-
- username, password, err := getUserAndPass(c.Username, password, authConfig.Username)
- if err != nil {
- return errors.Wrapf(err, "error getting username and password")
- }
-
- if err = docker.CheckAuth(ctx, sc, username, password, server); err == nil {
- // Write the new credentials to the authfile
- if err = config.SetAuthentication(sc, server, username, password); err != nil {
- return err
- }
- }
- if err == nil {
- fmt.Println("Login Succeeded!")
- return nil
- }
- if unauthorizedError, ok := err.(docker.ErrUnauthorizedForCredentials); ok {
- logrus.Debugf("error logging into %q: %v", server, unauthorizedError)
- return errors.Errorf("error logging into %q: invalid username/password", server)
- }
- return errors.Wrapf(err, "error authenticating creds for %q", server)
-}
-
-// getUserAndPass gets the username and password from STDIN if not given
-// using the -u and -p flags. If the username prompt is left empty, the
-// displayed userFromAuthFile will be used instead.
-func getUserAndPass(username, password, userFromAuthFile string) (string, string, error) {
- var err error
- reader := bufio.NewReader(os.Stdin)
- if username == "" {
- if userFromAuthFile != "" {
- fmt.Printf("Username (%s): ", userFromAuthFile)
- } else {
- fmt.Print("Username: ")
- }
- username, err = reader.ReadString('\n')
- if err != nil {
- return "", "", errors.Wrapf(err, "error reading username")
- }
- // If the user just hit enter, use the displayed user from the
- // the authentication file. This allows to do a lazy
- // `$ podman login -p $NEW_PASSWORD` without specifying the
- // user.
- if strings.TrimSpace(username) == "" {
- username = userFromAuthFile
- }
- }
- if password == "" {
- fmt.Print("Password: ")
- pass, err := terminal.ReadPassword(0)
- if err != nil {
- return "", "", errors.Wrapf(err, "error reading password")
- }
- password = string(pass)
- fmt.Println()
- }
- return strings.TrimSpace(username), password, err
-}
-
-// registryFromFullName gets the registry from the input. If the input is of the form
-// quay.io/myuser/myimage, it will parse it and just return quay.io
-// It also returns true if a full image name was given
-func registryFromFullName(input string) string {
- split := strings.Split(input, "/")
- if len(split) > 1 {
- return split[0]
- }
- return split[0]
-}
diff --git a/cmd/podman/logout.go b/cmd/podman/logout.go
deleted file mode 100644
index a541438c3..000000000
--- a/cmd/podman/logout.go
+++ /dev/null
@@ -1,104 +0,0 @@
-package main
-
-import (
- "fmt"
-
- buildahcli "github.com/containers/buildah/pkg/cli"
- "github.com/containers/image/v5/docker"
- "github.com/containers/image/v5/pkg/docker/config"
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/cmd/podman/shared"
- "github.com/containers/libpod/pkg/registries"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- "github.com/spf13/cobra"
-)
-
-var (
- logoutCommand cliconfig.LogoutValues
- logoutDescription = "Remove the cached username and password for the registry."
- _logoutCommand = &cobra.Command{
- Use: "logout [flags] REGISTRY",
- Short: "Logout of a container registry",
- Long: logoutDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- logoutCommand.InputArgs = args
- logoutCommand.GlobalFlags = MainGlobalOpts
- logoutCommand.Remote = remoteclient
- return logoutCmd(&logoutCommand)
- },
- Example: `podman logout quay.io
- podman logout --all`,
- }
-)
-
-func init() {
- if !remote {
- _logoutCommand.Example = fmt.Sprintf("%s\n podman logout --authfile authdir/myauths.json quay.io", _logoutCommand.Example)
-
- }
- logoutCommand.Command = _logoutCommand
- logoutCommand.SetHelpTemplate(HelpTemplate())
- logoutCommand.SetUsageTemplate(UsageTemplate())
- flags := logoutCommand.Flags()
- flags.BoolVarP(&logoutCommand.All, "all", "a", false, "Remove the cached credentials for all registries in the auth file")
- flags.StringVar(&logoutCommand.Authfile, "authfile", buildahcli.GetDefaultAuthFile(), "Path of the authentication file. Use REGISTRY_AUTH_FILE environment variable to override")
- markFlagHiddenForRemoteClient("authfile", flags)
-}
-
-// logoutCmd uses the authentication package to remove the authenticated of a registry
-// stored in the auth.json file
-func logoutCmd(c *cliconfig.LogoutValues) error {
- args := c.InputArgs
- if len(args) > 1 {
- return errors.Errorf("too many arguments, logout takes at most 1 argument")
- }
- var server string
- if len(args) == 0 && !c.All {
- registriesFromFile, err := registries.GetRegistries()
- if err != nil || len(registriesFromFile) == 0 {
- return errors.Errorf("no registries found in registries.conf, a registry must be provided")
- }
-
- server = registriesFromFile[0]
- logrus.Debugf("registry not specified, default to the first registry %q from registries.conf", server)
- }
- if len(args) == 1 {
- server = scrubServer(args[0])
- }
-
- sc, err := shared.GetSystemContext(c.Authfile)
- if err != nil {
- return err
- }
-
- if c.All {
- if err := config.RemoveAllAuthentication(sc); err != nil {
- return err
- }
- fmt.Println("Removed login credentials for all registries")
- return nil
- }
-
- err = config.RemoveAuthentication(sc, server)
- switch errors.Cause(err) {
- case nil:
- fmt.Printf("Removed login credentials for %s\n", server)
- return nil
- case config.ErrNotLoggedIn:
- // username of user logged in to server (if one exists)
- authConfig, err := config.GetCredentials(sc, server)
- if err != nil {
- return errors.Wrapf(err, "error reading auth file")
- }
- islogin := docker.CheckAuth(getContext(), sc, authConfig.Username, authConfig.Password, server)
- if authConfig.IdentityToken != "" && authConfig.Username != "" && authConfig.Password != "" && islogin == nil {
- fmt.Printf("Not logged into %s with podman. Existing credentials were established via docker login. Please use docker logout instead.\n", server)
- return nil
- }
- fmt.Printf("Not logged into %s\n", server)
- return nil
- default:
- return errors.Wrapf(err, "error logging out of %q", server)
- }
-}
diff --git a/cmd/podman/logs.go b/cmd/podman/logs.go
deleted file mode 100644
index 0a86fa128..000000000
--- a/cmd/podman/logs.go
+++ /dev/null
@@ -1,93 +0,0 @@
-package main
-
-import (
- "time"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/libpod/logs"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/containers/libpod/pkg/util"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- logsCommand cliconfig.LogsValues
- logsDescription = `Retrieves logs for one or more containers.
-
- This does not guarantee execution order when combined with podman run (i.e. your run may not have generated any logs at the time you execute podman logs).
-`
- _logsCommand = &cobra.Command{
- Use: "logs [flags] CONTAINER [CONTAINER...]",
- Short: "Fetch the logs of a container",
- Long: logsDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- logsCommand.InputArgs = args
- logsCommand.GlobalFlags = MainGlobalOpts
- logsCommand.Remote = remoteclient
- return logsCmd(&logsCommand)
- },
- Args: func(cmd *cobra.Command, args []string) error {
- if len(args) > 0 && logsCommand.Latest {
- return errors.New("no containers can be specified when using 'latest'")
- }
- if !logsCommand.Latest && len(args) < 1 {
- return errors.New("specify at least one container name or ID to log")
- }
- return nil
- },
- Example: `podman logs ctrID
- podman logs --names ctrID1 ctrID2
- podman logs --tail 2 mywebserver
- podman logs --follow=true --since 10m ctrID
- podman logs mywebserver mydbserver`,
- }
-)
-
-func init() {
- logsCommand.Command = _logsCommand
- logsCommand.SetHelpTemplate(HelpTemplate())
- logsCommand.SetUsageTemplate(UsageTemplate())
- flags := logsCommand.Flags()
- flags.BoolVar(&logsCommand.Details, "details", false, "Show extra details provided to the logs")
- flags.BoolVarP(&logsCommand.Follow, "follow", "f", false, "Follow log output. The default is false")
- flags.BoolVarP(&logsCommand.Latest, "latest", "l", false, "Act on the latest container podman is aware of")
- flags.StringVar(&logsCommand.Since, "since", "", "Show logs since TIMESTAMP")
- flags.Int64Var(&logsCommand.Tail, "tail", -1, "Output the specified number of LINES at the end of the logs. Defaults to -1, which prints all lines")
- flags.BoolVarP(&logsCommand.Timestamps, "timestamps", "t", false, "Output the timestamps in the log")
- flags.BoolVarP(&logsCommand.UseName, "names", "n", false, "Output the container name in the log")
- markFlagHidden(flags, "details")
- flags.SetInterspersed(false)
-
- markFlagHiddenForRemoteClient("latest", flags)
-}
-
-func logsCmd(c *cliconfig.LogsValues) error {
- var err error
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- sinceTime := time.Time{}
- if c.Flag("since").Changed {
- // parse time, error out if something is wrong
- since, err := util.ParseInputTime(c.Since)
- if err != nil {
- return errors.Wrapf(err, "could not parse time: %q", c.Since)
- }
- sinceTime = since
- }
-
- options := &logs.LogOptions{
- Details: c.Details,
- Follow: c.Follow,
- Since: sinceTime,
- Tail: c.Tail,
- Timestamps: c.Timestamps,
- UseName: c.UseName,
- }
- return runtime.Log(c, options)
-}
diff --git a/cmd/podman/main.go b/cmd/podman/main.go
index 4435b036e..5f7bfe3c9 100644
--- a/cmd/podman/main.go
+++ b/cmd/podman/main.go
@@ -1,190 +1,50 @@
package main
import (
- "context"
- "io"
"os"
- "path"
- "github.com/containers/common/pkg/config"
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/libpod"
- "github.com/containers/libpod/libpod/define"
- _ "github.com/containers/libpod/pkg/hooks/0.1.0"
- "github.com/containers/libpod/pkg/rootless"
- "github.com/containers/libpod/version"
+ _ "github.com/containers/libpod/cmd/podman/containers"
+ _ "github.com/containers/libpod/cmd/podman/healthcheck"
+ _ "github.com/containers/libpod/cmd/podman/images"
+ _ "github.com/containers/libpod/cmd/podman/networks"
+ _ "github.com/containers/libpod/cmd/podman/pods"
+ "github.com/containers/libpod/cmd/podman/registry"
+ _ "github.com/containers/libpod/cmd/podman/system"
+ _ "github.com/containers/libpod/cmd/podman/volumes"
"github.com/containers/storage/pkg/reexec"
- "github.com/opentracing/opentracing-go"
- "github.com/sirupsen/logrus"
- "github.com/spf13/cobra"
)
-// This is populated by the Makefile from the VERSION file
-// in the repository
-var (
- exitCode = define.ExecErrorCodeGeneric
- Ctx context.Context
- span opentracing.Span // nolint:varcheck,deadcode,unused
- closer io.Closer // nolint:varcheck,deadcode,unused
-)
-
-// Commands that the remote and local client have
-// implemented.
-var mainCommands = []*cobra.Command{
- _attachCommand,
- _buildCommand,
- _commitCommand,
- _diffCommand,
- _createCommand,
- _eventsCommand,
- _execCommand,
- _exportCommand,
- _generateCommand,
- _historyCommand,
- &_imagesCommand,
- _importCommand,
- _infoCommand,
- _initCommand,
- &_inspectCommand,
- _killCommand,
- _loadCommand,
- _logsCommand,
- _pauseCommand,
- podCommand.Command,
- _portCommand,
- &_psCommand,
- _pullCommand,
- _pushCommand,
- _restartCommand,
- _rmCommand,
- &_rmiCommand,
- _runCommand,
- _saveCommand,
- _stopCommand,
- _tagCommand,
- _topCommand,
- _unpauseCommand,
- _versionCommand,
- _waitCommand,
- imageCommand.Command,
- _startCommand,
- systemCommand.Command,
- _untagCommand,
-}
-
-var rootCmd = &cobra.Command{
- Use: path.Base(os.Args[0]),
- Long: "manage pods and images",
- RunE: commandRunE(),
- PersistentPreRunE: before,
- PersistentPostRunE: after,
- SilenceUsage: true,
- SilenceErrors: true,
-}
-
-var (
- MainGlobalOpts cliconfig.MainFlags
- defaultContainerConfig = getDefaultContainerConfig()
-)
-
-func initCobra() {
- cobra.OnInitialize(initConfig)
- rootCmd.TraverseChildren = true
- rootCmd.Version = version.Version
- // Override default --help information of `--version` global flag
- var dummyVersion bool
- rootCmd.Flags().BoolVarP(&dummyVersion, "version", "v", false, "Version of podman")
- rootCmd.AddCommand(mainCommands...)
- rootCmd.AddCommand(getMainCommands()...)
-}
-
func init() {
- if err := libpod.SetXdgDirs(); err != nil {
- logrus.Errorf(err.Error())
- os.Exit(1)
- }
- initBuild()
- initCobra()
-}
-
-func initConfig() {
- // we can do more stuff in here.
-}
-
-func before(cmd *cobra.Command, args []string) error {
- // Set log level; if not log-level is provided, default to error
- logLevel := MainGlobalOpts.LogLevel
- if logLevel == "" {
- logLevel = "error"
- }
- level, err := logrus.ParseLevel(logLevel)
- if err != nil {
- return err
- }
- logrus.SetLevel(level)
- if err := setSyslog(); err != nil {
- return err
- }
-
- if err := setupRootless(cmd, args); err != nil {
- return err
- }
-
- // check that global opts input is valid
- if err := checkInput(); err != nil {
- return err
- }
-
- if err := setRLimits(); err != nil {
- return err
- }
- if rootless.IsRootless() {
- logrus.Info("running as rootless")
- }
- setUMask()
-
- return profileOn(cmd)
-}
-
-func after(cmd *cobra.Command, args []string) error {
- return profileOff(cmd)
+ // This is the bootstrap configuration, if user gives
+ // CLI flags parts of this configuration may be overwritten
+ registry.PodmanOptions = registry.NewPodmanConfig()
}
func main() {
- //debug := false
- //cpuProfile := false
-
if reexec.Init() {
// We were invoked with a different argv[0] indicating that we
// had a specific job to do as a subprocess, and it's done.
return
}
- // Hard code TMPDIR functions to use /var/tmp, if user did not override
- if _, ok := os.LookupEnv("TMPDIR"); !ok {
- os.Setenv("TMPDIR", "/var/tmp")
- }
- if err := rootCmd.Execute(); err != nil {
- outputError(err)
- } else if exitCode == define.ExecErrorCodeGeneric {
- // The exitCode modified from define.ExecErrorCodeGeneric,
- // indicates an application
- // running inside of a container failed, as opposed to the
- // podman command failed. Must exit with that exit code
- // otherwise command exited correctly.
- exitCode = 0
- }
- // Check if /etc/containers/registries.conf exists when running in
- // in a local environment.
- CheckForRegistries()
- os.Exit(exitCode)
-}
+ for _, c := range registry.Commands {
+ for _, m := range c.Mode {
+ if registry.PodmanOptions.EngineMode == m {
+ parent := rootCmd
+ if c.Parent != nil {
+ parent = c.Parent
+ }
+ parent.AddCommand(c.Command)
-func getDefaultContainerConfig() *config.Config {
- defaultContainerConfig, err := config.Default()
- if err != nil {
- logrus.Error(err)
- os.Exit(1)
+ // - templates need to be set here, as PersistentPreRunE() is
+ // not called when --help is used.
+ // - rootCmd uses cobra default template not ours
+ c.Command.SetHelpTemplate(helpTemplate)
+ c.Command.SetUsageTemplate(usageTemplate)
+ }
+ }
}
- return defaultContainerConfig
+
+ Execute()
+ os.Exit(0)
}
diff --git a/cmd/podman/main_local.go b/cmd/podman/main_local.go
deleted file mode 100644
index e71dbbf97..000000000
--- a/cmd/podman/main_local.go
+++ /dev/null
@@ -1,294 +0,0 @@
-// +build !remoteclient
-// +build linux
-
-package main
-
-import (
- "context"
- "fmt"
- "io/ioutil"
- "log/syslog"
- "os"
- "runtime/pprof"
- "strconv"
- "syscall"
-
- "github.com/containers/common/pkg/config"
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/cmd/podman/libpodruntime"
- "github.com/containers/libpod/pkg/cgroups"
- "github.com/containers/libpod/pkg/rootless"
- "github.com/containers/libpod/pkg/tracing"
- "github.com/containers/libpod/pkg/util"
- "github.com/containers/libpod/utils"
- "github.com/opentracing/opentracing-go"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- lsyslog "github.com/sirupsen/logrus/hooks/syslog"
- "github.com/spf13/cobra"
-)
-
-const remote = false
-
-func init() {
- cgroupManager := defaultContainerConfig.Engine.CgroupManager
- cgroupHelp := `Cgroup manager to use ("cgroupfs"|"systemd")`
- cgroupv2, _ := cgroups.IsCgroup2UnifiedMode()
-
- defaultContainerConfig = cliconfig.GetDefaultConfig()
- if rootless.IsRootless() && !cgroupv2 {
- cgroupManager = ""
- cgroupHelp = "Cgroup manager is not supported in rootless mode"
- }
- rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.CGroupManager, "cgroup-manager", cgroupManager, cgroupHelp)
- // -c is deprecated due to conflict with -c on subcommands
- rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.CpuProfile, "cpu-profile", "", "Path for the cpu profiling results")
- rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.ConmonPath, "conmon", "", "Path of the conmon binary")
- rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.NetworkCmdPath, "network-cmd-path", defaultContainerConfig.Engine.NetworkCmdPath, "Path to the command for configuring the network")
- rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.CniConfigDir, "cni-config-dir", getCNIPluginsDir(), "Path of the configuration directory for CNI networks")
- rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.DefaultMountsFile, "default-mounts-file", defaultContainerConfig.Containers.DefaultMountsFile, "Path to default mounts file")
- if err := rootCmd.PersistentFlags().MarkHidden("cpu-profile"); err != nil {
- logrus.Error("unable to mark default-mounts-file flag as hidden")
- }
- if err := rootCmd.PersistentFlags().MarkHidden("default-mounts-file"); err != nil {
- logrus.Error("unable to mark default-mounts-file flag as hidden")
- }
- rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.EventsBackend, "events-backend", defaultContainerConfig.Engine.EventsLogger, `Events backend to use ("file"|"journald"|"none")`)
- // Override default --help information of `--help` global flag
- var dummyHelp bool
- rootCmd.PersistentFlags().BoolVar(&dummyHelp, "help", false, "Help for podman")
- rootCmd.PersistentFlags().StringSliceVar(&MainGlobalOpts.HooksDir, "hooks-dir", defaultContainerConfig.Engine.HooksDir, "Set the OCI hooks directory path (may be set multiple times)")
- rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.LogLevel, "log-level", "error", `Log messages above specified level ("debug"|"info"|"warn"|"error"|"fatal"|"panic")`)
- rootCmd.PersistentFlags().IntVar(&MainGlobalOpts.MaxWorks, "max-workers", 0, "The maximum number of workers for parallel operations")
- if err := rootCmd.PersistentFlags().MarkHidden("max-workers"); err != nil {
- logrus.Error("unable to mark max-workers flag as hidden")
- }
- rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.Namespace, "namespace", defaultContainerConfig.Engine.Namespace, "Set the libpod namespace, used to create separate views of the containers and pods on the system")
- rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.Root, "root", "", "Path to the root directory in which data, including images, is stored")
- rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.Runroot, "runroot", "", "Path to the 'run directory' where all state information is stored")
- rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.Runtime, "runtime", "", "Path to the OCI-compatible binary used to run containers, default is /usr/bin/runc")
- // -s is deprecated due to conflict with -s on subcommands
- rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.StorageDriver, "storage-driver", "", "Select which storage driver is used to manage storage of images and containers (default is overlay)")
- rootCmd.PersistentFlags().StringArrayVar(&MainGlobalOpts.StorageOpts, "storage-opt", []string{}, "Used to pass an option to the storage driver")
- rootCmd.PersistentFlags().BoolVar(&MainGlobalOpts.Syslog, "syslog", false, "Output logging information to syslog as well as the console (default false)")
-
- rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.TmpDir, "tmpdir", "", "Path to the tmp directory for libpod state content.\n\nNote: use the environment variable 'TMPDIR' to change the temporary storage location for container images, '/var/tmp'.\n")
- rootCmd.PersistentFlags().BoolVar(&MainGlobalOpts.Trace, "trace", false, "Enable opentracing output (default false)")
- markFlagHidden(rootCmd.PersistentFlags(), "trace")
-}
-
-func setSyslog() error {
- if MainGlobalOpts.Syslog {
- hook, err := lsyslog.NewSyslogHook("", "", syslog.LOG_INFO, "")
- if err == nil {
- logrus.AddHook(hook)
- return nil
- }
- return err
- }
- return nil
-}
-
-func profileOn(cmd *cobra.Command) error {
- if cmd.Flag("cpu-profile").Changed {
- f, err := os.Create(MainGlobalOpts.CpuProfile)
- if err != nil {
- return errors.Wrapf(err, "unable to create cpu profiling file %s",
- MainGlobalOpts.CpuProfile)
- }
- if err := pprof.StartCPUProfile(f); err != nil {
- return err
- }
- }
-
- if cmd.Flag("trace").Changed {
- var tracer opentracing.Tracer
- tracer, closer = tracing.Init("podman")
- opentracing.SetGlobalTracer(tracer)
-
- span = tracer.StartSpan("before-context")
-
- Ctx = opentracing.ContextWithSpan(context.Background(), span)
- }
- return nil
-}
-
-func profileOff(cmd *cobra.Command) error {
- if cmd.Flag("cpu-profile").Changed {
- pprof.StopCPUProfile()
- }
- if cmd.Flag("trace").Changed {
- span.Finish()
- closer.Close()
- }
- return nil
-}
-
-func movePauseProcessToScope() error {
- pausePidPath, err := util.GetRootlessPauseProcessPidPath()
- if err != nil {
- return errors.Wrapf(err, "could not get pause process pid file path")
- }
-
- data, err := ioutil.ReadFile(pausePidPath)
- if err != nil {
- return errors.Wrapf(err, "cannot read pause pid file")
- }
- pid, err := strconv.ParseUint(string(data), 10, 0)
- if err != nil {
- return errors.Wrapf(err, "cannot parse pid file %s", pausePidPath)
- }
-
- return utils.RunUnderSystemdScope(int(pid), "user.slice", "podman-pause.scope")
-}
-
-func setupRootless(cmd *cobra.Command, args []string) error {
- if !rootless.IsRootless() {
- return nil
- }
-
- matches, err := rootless.ConfigurationMatches()
- if err != nil {
- return err
- }
- if !matches {
- logrus.Warningf("the current user namespace doesn't match the configuration in /etc/subuid or /etc/subgid")
- logrus.Warningf("you can use `%s system migrate` to recreate the user namespace and restart the containers", os.Args[0])
- }
-
- podmanCmd := cliconfig.PodmanCommand{
- Command: cmd,
- InputArgs: args,
- GlobalFlags: MainGlobalOpts,
- Remote: remoteclient,
- }
-
- runtime, err := libpodruntime.GetRuntimeNoStore(getContext(), &podmanCmd)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- // do it only after podman has already re-execed and running with uid==0.
- if os.Geteuid() == 0 {
- ownsCgroup, err := cgroups.UserOwnsCurrentSystemdCgroup()
- if err != nil {
- logrus.Warnf("Failed to detect the owner for the current cgroup: %v", err)
- }
- if !ownsCgroup {
- conf, err := runtime.GetConfig()
- if err != nil {
- return err
- }
- unitName := fmt.Sprintf("podman-%d.scope", os.Getpid())
- if err := utils.RunUnderSystemdScope(os.Getpid(), "user.slice", unitName); err != nil {
- if conf.Engine.CgroupManager == config.SystemdCgroupsManager {
- logrus.Warnf("Failed to add podman to systemd sandbox cgroup: %v", err)
- } else {
- logrus.Debugf("Failed to add podman to systemd sandbox cgroup: %v", err)
- }
- }
- }
- }
-
- if !executeCommandInUserNS(cmd) {
- return nil
- }
-
- pausePidPath, err := util.GetRootlessPauseProcessPidPath()
- if err != nil {
- return errors.Wrapf(err, "could not get pause process pid file path")
- }
-
- became, ret, err := rootless.TryJoinPauseProcess(pausePidPath)
- if err != nil {
- return err
- }
- if became {
- os.Exit(ret)
- }
-
- // if there is no pid file, try to join existing containers, and create a pause process.
- ctrs, err := runtime.GetRunningContainers()
- if err != nil {
- logrus.Errorf(err.Error())
- os.Exit(1)
- }
-
- paths := []string{}
- for _, ctr := range ctrs {
- paths = append(paths, ctr.Config().ConmonPidFile)
- }
-
- became, ret, err = rootless.TryJoinFromFilePaths(pausePidPath, true, paths)
- if err := movePauseProcessToScope(); err != nil {
- conf, err := runtime.GetConfig()
- if err != nil {
- return err
- }
- if conf.Engine.CgroupManager == config.SystemdCgroupsManager {
- logrus.Warnf("Failed to add pause process to systemd sandbox cgroup: %v", err)
- } else {
- logrus.Debugf("Failed to add pause process to systemd sandbox cgroup: %v", err)
- }
- }
- if err != nil {
- logrus.Errorf(err.Error())
- os.Exit(1)
- }
- if became {
- os.Exit(ret)
- }
- return nil
-}
-
-// Most podman commands when run in rootless mode, need to be executed in the
-// users usernamespace. This function is updated with a list of commands that
-// should NOT be run within the user namespace.
-func executeCommandInUserNS(cmd *cobra.Command) bool {
- if os.Geteuid() == 0 {
- return false
- }
- switch cmd {
- case _migrateCommand,
- _mountCommand,
- _renumberCommand,
- _searchCommand,
- _versionCommand:
- return false
- }
- return true
-}
-
-func setRLimits() error {
- rlimits := new(syscall.Rlimit)
- rlimits.Cur = 1048576
- rlimits.Max = 1048576
- if err := syscall.Setrlimit(syscall.RLIMIT_NOFILE, rlimits); err != nil {
- if err := syscall.Getrlimit(syscall.RLIMIT_NOFILE, rlimits); err != nil {
- return errors.Wrapf(err, "error getting rlimits")
- }
- rlimits.Cur = rlimits.Max
- if err := syscall.Setrlimit(syscall.RLIMIT_NOFILE, rlimits); err != nil {
- return errors.Wrapf(err, "error setting new rlimits")
- }
- }
- return nil
-}
-
-func setUMask() {
- // Be sure we can create directories with 0755 mode.
- syscall.Umask(0022)
-}
-
-// checkInput can be used to verify any of the globalopt values
-func checkInput() error {
- return nil
-}
-func getCNIPluginsDir() string {
- if rootless.IsRootless() {
- return ""
- }
-
- return defaultContainerConfig.Network.CNIPluginDirs[0]
-}
diff --git a/cmd/podman/main_local_unsupported.go b/cmd/podman/main_local_unsupported.go
deleted file mode 100644
index 75728627e..000000000
--- a/cmd/podman/main_local_unsupported.go
+++ /dev/null
@@ -1,44 +0,0 @@
-// +build !remoteclient,!linux
-
-package main
-
-// The ONLY purpose of this file is to allow the subpackage to compile. Don’t expect anything
-// to work.
-
-import (
- "syscall"
-
- "github.com/spf13/cobra"
-)
-
-const remote = false
-
-func setSyslog() error {
- return nil
-}
-
-func profileOn(cmd *cobra.Command) error {
- return nil
-}
-
-func profileOff(cmd *cobra.Command) error {
- return nil
-}
-
-func setupRootless(cmd *cobra.Command, args []string) error {
- return nil
-}
-
-func setRLimits() error {
- return nil
-}
-
-func setUMask() {
- // Be sure we can create directories with 0755 mode.
- syscall.Umask(0022)
-}
-
-// checkInput can be used to verify any of the globalopt values
-func checkInput() error {
- return nil
-}
diff --git a/cmd/podman/main_remote.go b/cmd/podman/main_remote.go
deleted file mode 100644
index 623f4098e..000000000
--- a/cmd/podman/main_remote.go
+++ /dev/null
@@ -1,74 +0,0 @@
-// +build remoteclient
-
-package main
-
-import (
- "os"
- "os/user"
- "strconv"
-
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-const remote = true
-
-func init() {
- var username string
- if username = os.Getenv("PODMAN_USER"); username == "" {
- if curruser, err := user.Current(); err == nil {
- username = curruser.Username
- }
- }
- host := os.Getenv("PODMAN_HOST")
- port := 22
- if portstr := os.Getenv("PODMAN_PORT"); portstr != "" {
- if p, err := strconv.Atoi(portstr); err == nil {
- port = p
- }
- }
- key := os.Getenv("PODMAN_IDENTITY_FILE")
- ignore := false
- if ignorestr := os.Getenv("PODMAN_IGNORE_HOSTS"); ignorestr != "" {
- if b, err := strconv.ParseBool(ignorestr); err == nil {
- ignore = b
- }
- }
- rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.ConnectionName, "connection", "", "remote connection name")
- rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.RemoteConfigFilePath, "remote-config-path", "", "alternate path for configuration file")
- rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.RemoteUserName, "username", username, "username on the remote host")
- rootCmd.PersistentFlags().IntVar(&MainGlobalOpts.Port, "port", port, "port on remote host")
- rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.RemoteHost, "remote-host", host, "remote host")
- rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.IdentityFile, "identity-file", key, "identity-file")
- rootCmd.PersistentFlags().BoolVar(&MainGlobalOpts.IgnoreHosts, "ignore-hosts", ignore, "ignore hosts")
- // TODO maybe we allow the altering of this for bridge connections?
- // rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.VarlinkAddress, "varlink-address", adapter.DefaultAddress, "address of the varlink socket")
- rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.LogLevel, "log-level", "error", "Log messages above specified level: debug, info, warn, error, fatal or panic. Logged to ~/.config/containers/podman.log")
- rootCmd.PersistentFlags().BoolVar(&MainGlobalOpts.Syslog, "syslog", false, "Output logging information to syslog as well as the console")
-}
-
-func profileOn(cmd *cobra.Command) error {
- return nil
-}
-
-func profileOff(cmd *cobra.Command) error {
- return nil
-}
-
-func setupRootless(cmd *cobra.Command, args []string) error {
- return nil
-}
-
-func setRLimits() error {
- return nil
-}
-
-func setUMask() {}
-
-// checkInput can be used to verify any of the globalopt values
-func checkInput() error {
- if MainGlobalOpts.Port < 0 || MainGlobalOpts.Port > 65536 {
- return errors.Errorf("remote port must be between 0 and 65536")
- }
- return nil
-}
diff --git a/cmd/podman/main_remote_supported.go b/cmd/podman/main_remote_supported.go
deleted file mode 100644
index bb567c273..000000000
--- a/cmd/podman/main_remote_supported.go
+++ /dev/null
@@ -1,57 +0,0 @@
-// +build remoteclient
-// +build linux darwin
-
-package main
-
-import (
- "fmt"
- "os"
- "path/filepath"
-
- "github.com/containers/libpod/pkg/util"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
-)
-
-func setSyslog() error {
- var err error
- cfgHomeDir := os.Getenv("XDG_CONFIG_HOME")
- if cfgHomeDir == "" {
- if cfgHomeDir, err = util.GetRootlessConfigHomeDir(); err != nil {
- return err
- }
- if err = os.Setenv("XDG_CONFIG_HOME", cfgHomeDir); err != nil {
- return errors.Wrapf(err, "cannot set XDG_CONFIG_HOME")
- }
- }
- path := filepath.Join(cfgHomeDir, "containers")
-
- // Log to file if not using syslog
-
- if _, err := os.Stat(path); os.IsNotExist(err) {
- if err := os.MkdirAll(path, 0750); err != nil {
- fmt.Fprintf(os.Stderr, "%v", err)
- return err
- }
- }
-
- // Update path to include file name
- path = filepath.Join(path, "podman.log")
-
- // Create the log file if doesn't exist. And append to it if it already exists.
- file, err := os.OpenFile(path, os.O_WRONLY|os.O_APPEND|os.O_CREATE, 0640)
- if err != nil {
- // Cannot open log file. Logging to stderr
- fmt.Fprintf(os.Stderr, "%v", err)
- return err
- } else {
- formatter := new(logrus.TextFormatter)
- formatter.FullTimestamp = true
- logrus.SetFormatter(formatter)
- logrus.SetOutput(file)
- }
-
- // Note this message is only logged if --log-level >= Info!
- logrus.Infof("Logging level set to %s", logrus.GetLevel().String())
- return nil
-}
diff --git a/cmd/podman/main_remote_windows.go b/cmd/podman/main_remote_windows.go
deleted file mode 100644
index 0ef1370ce..000000000
--- a/cmd/podman/main_remote_windows.go
+++ /dev/null
@@ -1,7 +0,0 @@
-// +build remoteclient,windows
-
-package main
-
-func setSyslog() error {
- return nil
-}
diff --git a/cmd/podman/mount.go b/cmd/podman/mount.go
deleted file mode 100644
index 99e185589..000000000
--- a/cmd/podman/mount.go
+++ /dev/null
@@ -1,165 +0,0 @@
-package main
-
-import (
- js "encoding/json"
- "fmt"
- "os"
-
- of "github.com/containers/buildah/pkg/formats"
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/cmd/podman/libpodruntime"
- "github.com/containers/libpod/pkg/rootless"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- "github.com/spf13/cobra"
-)
-
-var (
- mountCommand cliconfig.MountValues
-
- mountDescription = `podman mount
- Lists all mounted containers mount points if no container is specified
-
- podman mount CONTAINER-NAME-OR-ID
- Mounts the specified container and outputs the mountpoint
-`
-
- _mountCommand = &cobra.Command{
- Use: "mount [flags] [CONTAINER]",
- Short: "Mount a working container's root filesystem",
- Long: mountDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- mountCommand.InputArgs = args
- mountCommand.GlobalFlags = MainGlobalOpts
- mountCommand.Remote = remoteclient
- return mountCmd(&mountCommand)
- },
- Args: func(cmd *cobra.Command, args []string) error {
- return checkAllLatestAndCIDFile(cmd, args, true, false)
- },
- }
-)
-
-func init() {
- mountCommand.Command = _mountCommand
- mountCommand.SetHelpTemplate(HelpTemplate())
- mountCommand.SetUsageTemplate(UsageTemplate())
- flags := mountCommand.Flags()
- flags.BoolVarP(&mountCommand.All, "all", "a", false, "Mount all containers")
- flags.StringVar(&mountCommand.Format, "format", "", "Change the output format to Go template")
- flags.BoolVarP(&mountCommand.Latest, "latest", "l", false, "Act on the latest container podman is aware of")
- flags.BoolVar(&mountCommand.NoTrunc, "notruncate", false, "Do not truncate output")
-
- markFlagHiddenForRemoteClient("latest", flags)
-}
-
-// jsonMountPoint stores info about each container
-type jsonMountPoint struct {
- ID string `json:"id"`
- Names []string `json:"names"`
- MountPoint string `json:"mountpoint"`
-}
-
-func mountCmd(c *cliconfig.MountValues) error {
- runtime, err := libpodruntime.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- if os.Geteuid() != 0 {
- if driver := runtime.StorageConfig().GraphDriverName; driver != "vfs" {
- // Do not allow to mount a graphdriver that is not vfs if we are creating the userns as part
- // of the mount command.
- return fmt.Errorf("cannot mount using driver %s in rootless mode", driver)
- }
-
- became, ret, err := rootless.BecomeRootInUserNS("")
- if err != nil {
- return err
- }
- if became {
- os.Exit(ret)
- }
- }
-
- if c.All && c.Latest {
- return errors.Errorf("--all and --latest cannot be used together")
- }
-
- mountContainers, err := getAllOrLatestContainers(&c.PodmanCommand, runtime, -1, "all")
- if err != nil {
- if len(mountContainers) == 0 {
- return err
- }
- fmt.Println(err.Error())
- }
-
- formats := map[string]bool{
- "": true,
- of.JSONString: true,
- }
-
- json := c.Format == of.JSONString
- if !formats[c.Format] {
- return errors.Errorf("%q is not a supported format", c.Format)
- }
-
- var lastError error
- if len(mountContainers) > 0 {
- for _, ctr := range mountContainers {
- if json {
- if lastError != nil {
- logrus.Error(lastError)
- }
- lastError = errors.Wrapf(err, "json option cannot be used with a container id")
- continue
- }
- mountPoint, err := ctr.Mount()
- if err != nil {
- if lastError != nil {
- logrus.Error(lastError)
- }
- lastError = errors.Wrapf(err, "error mounting container %q", ctr.ID())
- continue
- }
- fmt.Printf("%s\n", mountPoint)
- }
- return lastError
- } else {
- jsonMountPoints := []jsonMountPoint{}
- containers, err2 := runtime.GetContainers()
- if err2 != nil {
- return errors.Wrapf(err2, "error reading list of all containers")
- }
- for _, container := range containers {
- mounted, mountPoint, err := container.Mounted()
- if err != nil {
- return errors.Wrapf(err, "error getting mountpoint for %q", container.ID())
- }
-
- if !mounted {
- continue
- }
-
- if json {
- jsonMountPoints = append(jsonMountPoints, jsonMountPoint{ID: container.ID(), Names: []string{container.Name()}, MountPoint: mountPoint})
- continue
- }
-
- if c.NoTrunc {
- fmt.Printf("%-64s %s\n", container.ID(), mountPoint)
- } else {
- fmt.Printf("%-12.12s %s\n", container.ID(), mountPoint)
- }
- }
- if json {
- data, err := js.MarshalIndent(jsonMountPoints, "", " ")
- if err != nil {
- return err
- }
- fmt.Printf("%s\n", data)
- }
- }
- return nil
-}
diff --git a/cmd/podman/network.go b/cmd/podman/network.go
deleted file mode 100644
index 702593e5c..000000000
--- a/cmd/podman/network.go
+++ /dev/null
@@ -1,31 +0,0 @@
-//+build !remoteclient
-
-package main
-
-import (
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/spf13/cobra"
-)
-
-var networkcheckDescription = "Manage networks"
-var networkcheckCommand = cliconfig.PodmanCommand{
- Command: &cobra.Command{
- Use: "network",
- Short: "Manage Networks",
- Long: networkcheckDescription,
- RunE: commandRunE(),
- },
-}
-
-var networkcheckCommands = []*cobra.Command{
- _networkCreateCommand,
- _networkinspectCommand,
- _networklistCommand,
- _networkrmCommand,
-}
-
-func init() {
- networkcheckCommand.AddCommand(networkcheckCommands...)
- networkcheckCommand.SetUsageTemplate(UsageTemplate())
- rootCmd.AddCommand(networkcheckCommand.Command)
-}
diff --git a/cmd/podman/network_create.go b/cmd/podman/network_create.go
deleted file mode 100644
index 886607885..000000000
--- a/cmd/podman/network_create.go
+++ /dev/null
@@ -1,83 +0,0 @@
-// +build !remoteclient
-
-package main
-
-import (
- "fmt"
- "net"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/libpod"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/containers/libpod/pkg/network"
- "github.com/containers/libpod/pkg/rootless"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- networkCreateCommand cliconfig.NetworkCreateValues
- networkCreateDescription = `create CNI networks for containers and pods`
- _networkCreateCommand = &cobra.Command{
- Use: "create [flags] [NETWORK]",
- Short: "network create",
- Long: networkCreateDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- networkCreateCommand.InputArgs = args
- networkCreateCommand.GlobalFlags = MainGlobalOpts
- networkCreateCommand.Remote = remoteclient
- return networkcreateCmd(&networkCreateCommand)
- },
- Example: `podman network create podman1`,
- }
-)
-
-func init() {
- networkCreateCommand.Command = _networkCreateCommand
- networkCreateCommand.SetHelpTemplate(HelpTemplate())
- networkCreateCommand.SetUsageTemplate(UsageTemplate())
- flags := networkCreateCommand.Flags()
- flags.StringVarP(&networkCreateCommand.Driver, "driver", "d", "bridge", "driver to manage the network")
- flags.IPVar(&networkCreateCommand.Gateway, "gateway", nil, "IPv4 or IPv6 gateway for the subnet")
- flags.BoolVar(&networkCreateCommand.Internal, "internal", false, "restrict external access from this network")
- flags.IPNetVar(&networkCreateCommand.IPRange, "ip-range", net.IPNet{}, "allocate container IP from range")
- flags.StringVar(&networkCreateCommand.MacVLAN, "macvlan", "", "create a Macvlan connection based on this device")
- // TODO not supported yet
- //flags.StringVar(&networkCreateCommand.IPamDriver, "ipam-driver", "", "IP Address Management Driver")
- // TODO enable when IPv6 is working
- //flags.BoolVar(&networkCreateCommand.IPV6, "IPv6", false, "enable IPv6 networking")
- flags.IPNetVar(&networkCreateCommand.Network, "subnet", net.IPNet{}, "subnet in CIDR format")
- flags.BoolVar(&networkCreateCommand.DisableDNS, "disable-dns", false, "disable dns plugin")
-}
-
-func networkcreateCmd(c *cliconfig.NetworkCreateValues) error {
- var (
- fileName string
- err error
- )
- if err := network.IsSupportedDriver(c.Driver); err != nil {
- return err
- }
- if rootless.IsRootless() && !remoteclient {
- return errors.New("network create is not supported for rootless mode")
- }
- if len(c.InputArgs) > 1 {
- return errors.Errorf("only one network can be created at a time")
- }
- if len(c.InputArgs) > 0 && !libpod.NameRegex.MatchString(c.InputArgs[0]) {
- return libpod.RegexError
- }
- runtime, err := adapter.GetRuntimeNoStore(getContext(), &c.PodmanCommand)
- if err != nil {
- return err
- }
- if len(c.MacVLAN) > 0 {
- fileName, err = runtime.NetworkCreateMacVLAN(c)
- } else {
- fileName, err = runtime.NetworkCreateBridge(c)
- }
- if err == nil {
- fmt.Println(fileName)
- }
- return err
-}
diff --git a/cmd/podman/network_inspect.go b/cmd/podman/network_inspect.go
deleted file mode 100644
index 38aaf6ba4..000000000
--- a/cmd/podman/network_inspect.go
+++ /dev/null
@@ -1,48 +0,0 @@
-// +build !remoteclient
-
-package main
-
-import (
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/containers/libpod/pkg/rootless"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- networkinspectCommand cliconfig.NetworkInspectValues
- networkinspectDescription = `Inspect network`
- _networkinspectCommand = &cobra.Command{
- Use: "inspect NETWORK [NETWORK...] [flags] ",
- Short: "network inspect",
- Long: networkinspectDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- networkinspectCommand.InputArgs = args
- networkinspectCommand.GlobalFlags = MainGlobalOpts
- networkinspectCommand.Remote = remoteclient
- return networkinspectCmd(&networkinspectCommand)
- },
- Example: `podman network inspect podman`,
- }
-)
-
-func init() {
- networkinspectCommand.Command = _networkinspectCommand
- networkinspectCommand.SetHelpTemplate(HelpTemplate())
- networkinspectCommand.SetUsageTemplate(UsageTemplate())
-}
-
-func networkinspectCmd(c *cliconfig.NetworkInspectValues) error {
- if rootless.IsRootless() && !remoteclient {
- return errors.New("network inspect is not supported for rootless mode")
- }
- if len(c.InputArgs) < 1 {
- return errors.Errorf("at least one network name is required")
- }
- runtime, err := adapter.GetRuntimeNoStore(getContext(), &c.PodmanCommand)
- if err != nil {
- return err
- }
- return runtime.NetworkInspect(c)
-}
diff --git a/cmd/podman/network_list.go b/cmd/podman/network_list.go
deleted file mode 100644
index 4f2380067..000000000
--- a/cmd/podman/network_list.go
+++ /dev/null
@@ -1,54 +0,0 @@
-// +build !remoteclient
-
-package main
-
-import (
- "errors"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/containers/libpod/pkg/rootless"
- "github.com/spf13/cobra"
-)
-
-var (
- networklistCommand cliconfig.NetworkListValues
- networklistDescription = `List networks`
- _networklistCommand = &cobra.Command{
- Use: "ls",
- Args: noSubArgs,
- Short: "network list",
- Long: networklistDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- networklistCommand.InputArgs = args
- networklistCommand.GlobalFlags = MainGlobalOpts
- networklistCommand.Remote = remoteclient
- return networklistCmd(&networklistCommand)
- },
- Example: `podman network list`,
- }
-)
-
-func init() {
- networklistCommand.Command = _networklistCommand
- networklistCommand.SetHelpTemplate(HelpTemplate())
- networklistCommand.SetUsageTemplate(UsageTemplate())
- flags := networklistCommand.Flags()
- // TODO enable filters based on something
- //flags.StringSliceVarP(&networklistCommand.Filter, "filter", "f", []string{}, "Pause all running containers")
- flags.BoolVarP(&networklistCommand.Quiet, "quiet", "q", false, "display only names")
-}
-
-func networklistCmd(c *cliconfig.NetworkListValues) error {
- if rootless.IsRootless() && !remoteclient {
- return errors.New("network list is not supported for rootless mode")
- }
- if len(c.InputArgs) > 0 {
- return errors.New("network list takes no arguments")
- }
- runtime, err := adapter.GetRuntimeNoStore(getContext(), &c.PodmanCommand)
- if err != nil {
- return err
- }
- return runtime.NetworkList(c)
-}
diff --git a/cmd/podman/network_rm.go b/cmd/podman/network_rm.go
deleted file mode 100644
index 41e5dbdab..000000000
--- a/cmd/podman/network_rm.go
+++ /dev/null
@@ -1,62 +0,0 @@
-// +build !remoteclient
-
-package main
-
-import (
- "fmt"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/containers/libpod/pkg/rootless"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- "github.com/spf13/cobra"
-)
-
-var (
- networkrmCommand cliconfig.NetworkRmValues
- networkrmDescription = `Remove networks`
- _networkrmCommand = &cobra.Command{
- Use: "rm [flags] NETWORK [NETWORK...]",
- Short: "network rm",
- Long: networkrmDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- networkrmCommand.InputArgs = args
- networkrmCommand.GlobalFlags = MainGlobalOpts
- networkrmCommand.Remote = remoteclient
- return networkrmCmd(&networkrmCommand)
- },
- Example: `podman network rm podman`,
- }
-)
-
-func init() {
- networkrmCommand.Command = _networkrmCommand
- networkrmCommand.SetHelpTemplate(HelpTemplate())
- networkrmCommand.SetUsageTemplate(UsageTemplate())
- flags := networkrmCommand.Flags()
- flags.BoolVarP(&networkrmCommand.Force, "force", "f", false, "remove any containers using network")
-}
-
-func networkrmCmd(c *cliconfig.NetworkRmValues) error {
- if rootless.IsRootless() && !remoteclient {
- return errors.New("network rm is not supported for rootless mode")
- }
- if len(c.InputArgs) < 1 {
- return errors.Errorf("at least one network name is required")
- }
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return err
- }
- deletes, rmErrors, lastErr := runtime.NetworkRemove(getContext(), c)
- for _, d := range deletes {
- fmt.Println(d)
- }
- // we only want to print errors if there is more
- // than one
- for network, removalErr := range rmErrors {
- logrus.Errorf("unable to remove %q: %q", network, removalErr)
- }
- return lastErr
-}
diff --git a/cmd/podmanV2/networks/network.go b/cmd/podman/networks/network.go
index 85fec545b..3cee86bcc 100644
--- a/cmd/podmanV2/networks/network.go
+++ b/cmd/podman/networks/network.go
@@ -1,7 +1,7 @@
package images
import (
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
)
diff --git a/cmd/podmanV2/parse/common.go b/cmd/podman/parse/common.go
index a5e9b4fc2..a5e9b4fc2 100644
--- a/cmd/podmanV2/parse/common.go
+++ b/cmd/podman/parse/common.go
diff --git a/cmd/podmanV2/parse/net.go b/cmd/podman/parse/net.go
index 03cda268c..03cda268c 100644
--- a/cmd/podmanV2/parse/net.go
+++ b/cmd/podman/parse/net.go
diff --git a/cmd/podmanV2/parse/net_test.go b/cmd/podman/parse/net_test.go
index a6ddc2be9..a6ddc2be9 100644
--- a/cmd/podmanV2/parse/net_test.go
+++ b/cmd/podman/parse/net_test.go
diff --git a/cmd/podman/pause.go b/cmd/podman/pause.go
deleted file mode 100644
index 247a480e3..000000000
--- a/cmd/podman/pause.go
+++ /dev/null
@@ -1,70 +0,0 @@
-package main
-
-import (
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/libpod/define"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/containers/libpod/pkg/rootless"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- pauseCommand cliconfig.PauseValues
- pauseDescription = `Pauses one or more running containers. The container name or ID can be used.`
- _pauseCommand = &cobra.Command{
- Use: "pause [flags] CONTAINER [CONTAINER...]",
- Short: "Pause all the processes in one or more containers",
- Long: pauseDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- pauseCommand.InputArgs = args
- pauseCommand.GlobalFlags = MainGlobalOpts
- pauseCommand.Remote = remoteclient
- return pauseCmd(&pauseCommand)
- },
- Example: `podman pause mywebserver
- podman pause 860a4b23
- podman pause -a`,
- }
-)
-
-func init() {
- pauseCommand.Command = _pauseCommand
- pauseCommand.SetHelpTemplate(HelpTemplate())
- pauseCommand.SetUsageTemplate(UsageTemplate())
- flags := pauseCommand.Flags()
- flags.BoolVarP(&pauseCommand.All, "all", "a", false, "Pause all running containers")
-
-}
-
-func pauseCmd(c *cliconfig.PauseValues) error {
- if rootless.IsRootless() && !remoteclient {
- return errors.New("pause is not supported for rootless containers")
- }
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- args := c.InputArgs
- if len(args) < 1 && !c.All {
- return errors.Errorf("you must provide at least one container name or id")
- }
- ok, failures, err := runtime.PauseContainers(getContext(), c)
- if err != nil {
- if errors.Cause(err) == define.ErrNoSuchCtr {
- if len(c.InputArgs) > 1 {
- exitCode = define.ExecErrorCodeGeneric
- } else {
- exitCode = 1
- }
- }
- return err
- }
- if len(failures) > 0 {
- exitCode = define.ExecErrorCodeGeneric
- }
- return printCmdResults(ok, failures)
-}
diff --git a/cmd/podman/platform_linux.go b/cmd/podman/platform_linux.go
deleted file mode 100644
index eb11867cc..000000000
--- a/cmd/podman/platform_linux.go
+++ /dev/null
@@ -1,29 +0,0 @@
-// +build linux
-
-package main
-
-import (
- "os"
- "path/filepath"
-
- "github.com/containers/libpod/pkg/rootless"
- "github.com/sirupsen/logrus"
-)
-
-// userRegistriesFile is the path to the per user registry configuration file.
-var userRegistriesFile = filepath.Join(os.Getenv("HOME"), ".config/containers/registries.conf")
-
-func CheckForRegistries() {
- if _, err := os.Stat("/etc/containers/registries.conf"); err != nil {
- if os.IsNotExist(err) {
- // If it is running in rootless mode, also check the user configuration file
- if rootless.IsRootless() {
- if _, err := os.Stat(userRegistriesFile); err != nil {
- logrus.Warnf("unable to find %s. some podman (image shortnames) commands may be limited", userRegistriesFile)
- }
- return
- }
- logrus.Warn("unable to find /etc/containers/registries.conf. some podman (image shortnames) commands may be limited")
- }
- }
-}
diff --git a/cmd/podman/platform_unsupported.go b/cmd/podman/platform_unsupported.go
deleted file mode 100644
index f39eeaf63..000000000
--- a/cmd/podman/platform_unsupported.go
+++ /dev/null
@@ -1,6 +0,0 @@
-// +build !linux
-
-package main
-
-func CheckForRegistries() {
-}
diff --git a/cmd/podman/play.go b/cmd/podman/play.go
deleted file mode 100644
index 95eae653e..000000000
--- a/cmd/podman/play.go
+++ /dev/null
@@ -1,24 +0,0 @@
-package main
-
-import (
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/spf13/cobra"
-)
-
-var (
- playCommand cliconfig.PodmanCommand
- playDescription = "Play a pod and its containers from a structured file."
- _playCommand = &cobra.Command{
- Use: "play",
- Short: "Play a pod",
- Long: playDescription,
- RunE: commandRunE(),
- }
-)
-
-func init() {
- playCommand.Command = _playCommand
- playCommand.SetHelpTemplate(HelpTemplate())
- playCommand.SetUsageTemplate(UsageTemplate())
- playCommand.AddCommand(getPlaySubCommands()...)
-}
diff --git a/cmd/podman/play_kube.go b/cmd/podman/play_kube.go
deleted file mode 100644
index a5669c595..000000000
--- a/cmd/podman/play_kube.go
+++ /dev/null
@@ -1,81 +0,0 @@
-package main
-
-import (
- "fmt"
- "os"
-
- buildahcli "github.com/containers/buildah/pkg/cli"
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- playKubeCommand cliconfig.KubePlayValues
- playKubeDescription = `Command reads in a structured file of Kubernetes YAML.
-
- It creates the pod and containers described in the YAML. The containers within the pod are then started and the ID of the new Pod is output.`
- _playKubeCommand = &cobra.Command{
- Use: "kube [flags] KUBEFILE",
- Short: "Play a pod based on Kubernetes YAML",
- Long: playKubeDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- playKubeCommand.InputArgs = args
- playKubeCommand.GlobalFlags = MainGlobalOpts
- playKubeCommand.Remote = remoteclient
- return playKubeCmd(&playKubeCommand)
- },
- Example: `podman play kube demo.yml`,
- }
- // https://kubernetes.io/docs/reference/command-line-tools-reference/kubelet/
- defaultSeccompRoot = "/var/lib/kubelet/seccomp"
-)
-
-func init() {
- if !remote {
- _playKubeCommand.Example = fmt.Sprintf("%s\n podman play kube --cert-dir /mycertsdir --tls-verify=true --quiet myWebPod", _playKubeCommand.Example)
- }
- playKubeCommand.Command = _playKubeCommand
- playKubeCommand.SetHelpTemplate(HelpTemplate())
- playKubeCommand.SetUsageTemplate(UsageTemplate())
- flags := playKubeCommand.Flags()
- flags.StringVar(&playKubeCommand.Creds, "creds", "", "`Credentials` (USERNAME:PASSWORD) to use for authenticating to a registry")
- flags.BoolVarP(&playKubeCommand.Quiet, "quiet", "q", false, "Suppress output information when pulling images")
- // Disabled flags for the remote client
- if !remote {
- flags.StringVar(&playKubeCommand.Authfile, "authfile", buildahcli.GetDefaultAuthFile(), "Path of the authentication file. Use REGISTRY_AUTH_FILE environment variable to override")
- flags.StringVar(&playKubeCommand.CertDir, "cert-dir", "", "`Pathname` of a directory containing TLS certificates and keys")
- flags.StringVar(&playKubeCommand.SignaturePolicy, "signature-policy", "", "`Pathname` of signature policy file (not usually used)")
- flags.BoolVar(&playKubeCommand.TlsVerify, "tls-verify", true, "Require HTTPS and verify certificates when contacting registries")
- flags.StringVar(&playKubeCommand.SeccompProfileRoot, "seccomp-profile-root", defaultSeccompRoot, "Directory path for seccomp profiles")
- markFlagHidden(flags, "signature-policy")
- }
- flags.StringVar(&playKubeCommand.Network, "network", "", "Connect pod to CNI network(s)")
-}
-
-func playKubeCmd(c *cliconfig.KubePlayValues) error {
- args := c.InputArgs
- if len(args) > 1 {
- return errors.New("you can only play one kubernetes file at a time")
- }
- if len(args) < 1 {
- return errors.New("you must supply at least one file")
- }
-
- if c.Authfile != "" {
- if _, err := os.Stat(c.Authfile); err != nil {
- return errors.Wrapf(err, "error getting authfile %s", c.Authfile)
- }
- }
-
- ctx := getContext()
- runtime, err := adapter.GetRuntime(ctx, &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- _, err = runtime.PlayKubeYAML(ctx, c, args[0])
- return err
-}
diff --git a/cmd/podman/pod.go b/cmd/podman/pod.go
deleted file mode 100644
index ed331965e..000000000
--- a/cmd/podman/pod.go
+++ /dev/null
@@ -1,42 +0,0 @@
-package main
-
-import (
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/spf13/cobra"
-)
-
-var (
- podDescription = `Pods are a group of one or more containers sharing the same network, pid and ipc namespaces.`
-)
-var podCommand = cliconfig.PodmanCommand{
- Command: &cobra.Command{
- Use: "pod",
- Short: "Manage pods",
- Long: podDescription,
- RunE: commandRunE(),
- },
-}
-
-//podSubCommands are implemented both in local and remote clients
-var podSubCommands = []*cobra.Command{
- _podCreateCommand,
- _podExistsCommand,
- _podInspectCommand,
- _podKillCommand,
- _podPauseCommand,
- _prunePodsCommand,
- _podPsCommand,
- _podRestartCommand,
- _podRmCommand,
- _podStartCommand,
- _podStatsCommand,
- _podStopCommand,
- _podTopCommand,
- _podUnpauseCommand,
-}
-
-func init() {
- podCommand.AddCommand(podSubCommands...)
- podCommand.SetHelpTemplate(HelpTemplate())
- podCommand.SetUsageTemplate(UsageTemplate())
-}
diff --git a/cmd/podman/pod_create.go b/cmd/podman/pod_create.go
deleted file mode 100644
index 810f62f02..000000000
--- a/cmd/podman/pod_create.go
+++ /dev/null
@@ -1,111 +0,0 @@
-package main
-
-import (
- "fmt"
- "os"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/cmd/podman/shared"
- "github.com/containers/libpod/cmd/podman/shared/parse"
- "github.com/containers/libpod/libpod/define"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/containers/libpod/pkg/errorhandling"
- "github.com/containers/libpod/pkg/util"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- "github.com/spf13/cobra"
-)
-
-var (
- // Kernel namespaces shared by default within a pod
-
- podCreateCommand cliconfig.PodCreateValues
-
- podCreateDescription = `After creating the pod, the pod ID is printed to stdout.
-
- You can then start it at any time with the podman pod start <pod_id> command. The pod will be created with the initial state 'created'.`
-
- _podCreateCommand = &cobra.Command{
- Use: "create",
- Args: noSubArgs,
- Short: "Create a new empty pod",
- Long: podCreateDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- podCreateCommand.InputArgs = args
- podCreateCommand.GlobalFlags = MainGlobalOpts
- podCreateCommand.Remote = remoteclient
- return podCreateCmd(&podCreateCommand)
- },
- }
-)
-
-func init() {
- podCreateCommand.Command = _podCreateCommand
- podCreateCommand.SetHelpTemplate(HelpTemplate())
- podCreateCommand.SetUsageTemplate(UsageTemplate())
- flags := podCreateCommand.Flags()
- flags.SetInterspersed(false)
- flags.AddFlagSet(getNetFlags())
- flags.StringVar(&podCreateCommand.CgroupParent, "cgroup-parent", "", "Set parent cgroup for the pod")
- flags.BoolVar(&podCreateCommand.Infra, "infra", true, "Create an infra container associated with the pod to share namespaces with")
- flags.StringVar(&podCreateCommand.InfraImage, "infra-image", define.DefaultInfraImage, "The image of the infra container to associate with the pod")
- flags.StringVar(&podCreateCommand.InfraCommand, "infra-command", define.DefaultInfraCommand, "The command to run on the infra container when the pod is started")
- flags.StringSliceVar(&podCreateCommand.LabelFile, "label-file", []string{}, "Read in a line delimited file of labels")
- flags.StringSliceVarP(&podCreateCommand.Labels, "label", "l", []string{}, "Set metadata on pod (default [])")
- flags.StringVarP(&podCreateCommand.Name, "name", "n", "", "Assign a name to the pod")
- flags.StringVarP(&podCreateCommand.Hostname, "hostname", "", "", "Set a hostname to the pod")
- flags.StringVar(&podCreateCommand.PodIDFile, "pod-id-file", "", "Write the pod ID to the file")
- flags.StringVar(&podCreateCommand.Share, "share", shared.DefaultKernelNamespaces, "A comma delimited list of kernel namespaces the pod will share")
-
-}
-func podCreateCmd(c *cliconfig.PodCreateValues) error {
- var (
- err error
- podIdFile *os.File
- )
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "error creating libpod runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- if len(c.StringSlice("publish")) > 0 {
- if !c.Infra {
- return errors.Errorf("you must have an infra container to publish port bindings to the host")
- }
- }
-
- if !c.Infra && c.Flag("share").Changed && c.Share != "none" && c.Share != "" {
- return errors.Errorf("You cannot share kernel namespaces on the pod level without an infra container")
- }
- if c.Flag("pod-id-file").Changed {
- podIdFile, err = util.OpenExclusiveFile(c.PodIDFile)
- if err != nil && os.IsExist(err) {
- return errors.Errorf("pod id file exists. Ensure another pod is not using it or delete %s", c.PodIDFile)
- }
- if err != nil {
- return errors.Errorf("error opening pod-id-file %s", c.PodIDFile)
- }
- defer errorhandling.CloseQuiet(podIdFile)
- defer errorhandling.SyncQuiet(podIdFile)
- }
-
- labels, err := parse.GetAllLabels(c.LabelFile, c.Labels)
- if err != nil {
- return errors.Wrapf(err, "unable to process labels")
- }
-
- podID, err := runtime.CreatePod(getContext(), c, labels)
- if err != nil {
- return errors.Wrapf(err, "unable to create pod")
- }
- if podIdFile != nil {
- _, err = podIdFile.WriteString(podID)
- if err != nil {
- logrus.Error(err)
- }
- }
- fmt.Printf("%s\n", podID)
- return nil
-}
diff --git a/cmd/podman/pod_inspect.go b/cmd/podman/pod_inspect.go
deleted file mode 100644
index 03b5a8cc4..000000000
--- a/cmd/podman/pod_inspect.go
+++ /dev/null
@@ -1,80 +0,0 @@
-package main
-
-import (
- "fmt"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- podInspectCommand cliconfig.PodInspectValues
- podInspectDescription = `Display the configuration for a pod by name or id
-
- By default, this will render all results in a JSON array.`
-
- _podInspectCommand = &cobra.Command{
- Use: "inspect [flags] POD",
- Short: "Displays a pod configuration",
- Long: podInspectDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- podInspectCommand.InputArgs = args
- podInspectCommand.GlobalFlags = MainGlobalOpts
- podInspectCommand.Remote = remoteclient
- return podInspectCmd(&podInspectCommand)
- },
- Example: `podman pod inspect podID`,
- }
-)
-
-func init() {
- podInspectCommand.Command = _podInspectCommand
- podInspectCommand.SetHelpTemplate(HelpTemplate())
- podInspectCommand.SetUsageTemplate(UsageTemplate())
- flags := podInspectCommand.Flags()
- flags.BoolVarP(&podInspectCommand.Latest, "latest", "l", false, "Act on the latest pod podman is aware of")
-
- markFlagHiddenForRemoteClient("latest", flags)
-}
-
-func podInspectCmd(c *cliconfig.PodInspectValues) error {
- var (
- pod *adapter.Pod
- )
- args := c.InputArgs
-
- if len(args) < 1 && !c.Latest {
- return errors.Errorf("you must provide the name or id of a pod")
- }
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- if c.Latest {
- pod, err = runtime.GetLatestPod()
- if err != nil {
- return errors.Wrapf(err, "unable to get latest pod")
- }
- } else {
- pod, err = runtime.LookupPod(args[0])
- if err != nil {
- return err
- }
- }
-
- podInspectData, err := pod.Inspect()
- if err != nil {
- return err
- }
- b, err := json.MarshalIndent(&podInspectData, "", " ")
- if err != nil {
- return err
- }
- fmt.Println(string(b))
- return nil
-}
diff --git a/cmd/podman/pod_kill.go b/cmd/podman/pod_kill.go
deleted file mode 100644
index 9f696073d..000000000
--- a/cmd/podman/pod_kill.go
+++ /dev/null
@@ -1,86 +0,0 @@
-package main
-
-import (
- "fmt"
- "syscall"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/containers/libpod/pkg/util"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- "github.com/spf13/cobra"
-)
-
-var (
- podKillCommand cliconfig.PodKillValues
- podKillDescription = `Signals are sent to the main process of each container inside the specified pod.
-
- The default signal is SIGKILL, or any signal specified with option --signal.`
- _podKillCommand = &cobra.Command{
- Use: "kill [flags] POD [POD...]",
- Short: "Send the specified signal or SIGKILL to containers in pod",
- Long: podKillDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- podKillCommand.InputArgs = args
- podKillCommand.GlobalFlags = MainGlobalOpts
- podKillCommand.Remote = remoteclient
- return podKillCmd(&podKillCommand)
- },
- Args: func(cmd *cobra.Command, args []string) error {
- return checkAllLatestAndCIDFile(cmd, args, false, false)
- },
- Example: `podman pod kill podID
- podman pod kill --signal TERM mywebserver
- podman pod kill --latest`,
- }
-)
-
-func init() {
- podKillCommand.Command = _podKillCommand
- podKillCommand.SetHelpTemplate(HelpTemplate())
- podKillCommand.SetUsageTemplate(UsageTemplate())
- flags := podKillCommand.Flags()
- flags.BoolVarP(&podKillCommand.All, "all", "a", false, "Kill all containers in all pods")
- flags.BoolVarP(&podKillCommand.Latest, "latest", "l", false, "Act on the latest pod podman is aware of")
- flags.StringVarP(&podKillCommand.Signal, "signal", "s", "KILL", "Signal to send to the containers in the pod")
- markFlagHiddenForRemoteClient("latest", flags)
-}
-
-// podKillCmd kills one or more pods with a signal
-func podKillCmd(c *cliconfig.PodKillValues) error {
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- killSignal := uint(syscall.SIGTERM)
-
- if c.Signal != "" {
- // Check if the signalString provided by the user is valid
- // Invalid signals will return err
- sysSignal, err := util.ParseSignal(c.Signal)
- if err != nil {
- return err
- }
- killSignal = uint(sysSignal)
- }
-
- podKillIds, podKillErrors := runtime.KillPods(getContext(), c, killSignal)
- for _, p := range podKillIds {
- fmt.Println(p)
- }
- if len(podKillErrors) == 0 {
- return nil
- }
- // Grab the last error
- lastError := podKillErrors[len(podKillErrors)-1]
- // Remove the last error from the error slice
- podKillErrors = podKillErrors[:len(podKillErrors)-1]
-
- for _, err := range podKillErrors {
- logrus.Errorf("%q", err)
- }
- return lastError
-}
diff --git a/cmd/podman/pod_pause.go b/cmd/podman/pod_pause.go
deleted file mode 100644
index 24fcee6b9..000000000
--- a/cmd/podman/pod_pause.go
+++ /dev/null
@@ -1,77 +0,0 @@
-package main
-
-import (
- "fmt"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- "github.com/spf13/cobra"
-)
-
-var (
- podPauseCommand cliconfig.PodPauseValues
- podPauseDescription = `The pod name or ID can be used.
-
- All running containers within each specified pod will then be paused.`
- _podPauseCommand = &cobra.Command{
- Use: "pause [flags] POD [POD...]",
- Short: "Pause one or more pods",
- Long: podPauseDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- podPauseCommand.InputArgs = args
- podPauseCommand.GlobalFlags = MainGlobalOpts
- podPauseCommand.Remote = remoteclient
- return podPauseCmd(&podPauseCommand)
- },
- Args: func(cmd *cobra.Command, args []string) error {
- return checkAllLatestAndCIDFile(cmd, args, false, false)
- },
- Example: `podman pod pause podID1 podID2
- podman pod pause --latest
- podman pod pause --all`,
- }
-)
-
-func init() {
- podPauseCommand.Command = _podPauseCommand
- podPauseCommand.SetHelpTemplate(HelpTemplate())
- podPauseCommand.SetUsageTemplate(UsageTemplate())
- flags := podPauseCommand.Flags()
- flags.BoolVarP(&podPauseCommand.All, "all", "a", false, "Pause all running pods")
- flags.BoolVarP(&podPauseCommand.Latest, "latest", "l", false, "Act on the latest pod podman is aware of")
- markFlagHiddenForRemoteClient("latest", flags)
-}
-
-func podPauseCmd(c *cliconfig.PodPauseValues) error {
- var lastError error
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "error creating libpod runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- pauseIDs, conErrors, pauseErrors := runtime.PausePods(c)
-
- for _, p := range pauseIDs {
- fmt.Println(p)
- }
- if len(conErrors) > 0 {
- for ctr, err := range conErrors {
- if lastError != nil {
- logrus.Errorf("%q", lastError)
- }
- lastError = errors.Wrapf(err, "unable to pause container %s", ctr)
- }
- }
- if len(pauseErrors) > 0 {
- lastError = pauseErrors[len(pauseErrors)-1]
- // Remove the last error from the error slice
- pauseErrors = pauseErrors[:len(pauseErrors)-1]
- }
- for _, err := range pauseErrors {
- logrus.Errorf("%q", err)
- }
- return lastError
-}
diff --git a/cmd/podman/pod_ps.go b/cmd/podman/pod_ps.go
deleted file mode 100644
index 7acbd6888..000000000
--- a/cmd/podman/pod_ps.go
+++ /dev/null
@@ -1,462 +0,0 @@
-package main
-
-import (
- "fmt"
- "reflect"
- "sort"
- "strings"
- "time"
-
- "github.com/containers/buildah/pkg/formats"
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/cmd/podman/shared"
- "github.com/containers/libpod/libpod/define"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/docker/go-units"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-const (
- STOPPED = "Stopped" //nolint
- RUNNING = "Running"
- PAUSED = "Paused"
- EXITED = "Exited"
- ERROR = "Error"
- CREATED = "Created"
- NUM_CTR_INFO = 10
-)
-
-var (
- bc_opts shared.PsOptions
-)
-
-type podPsCtrInfo struct {
- Name string `json:"name,omitempty"`
- Id string `json:"id,omitempty"`
- Status string `json:"status,omitempty"`
-}
-
-type podPsOptions struct {
- NoTrunc bool
- Format string
- Sort string
- Quiet bool
- NumberOfContainers bool
- Cgroup bool
- NamesOfContainers bool
- IdsOfContainers bool
- StatusOfContainers bool
-}
-
-type podPsTemplateParams struct {
- Created string
- ID string
- Name string
- NumberOfContainers int
- Status string
- Cgroup string
- ContainerInfo string
- InfraID string
- Namespaces string
-}
-
-// podPsJSONParams is used as a base structure for the psParams
-// If template output is requested, podPsJSONParams will be converted to
-// podPsTemplateParams.
-// podPsJSONParams will be populated by data from libpod.Container,
-// the members of the struct are the sama data types as their sources.
-type podPsJSONParams struct {
- CreatedAt time.Time `json:"createdAt"`
- ID string `json:"id"`
- Name string `json:"name"`
- NumberOfContainers int `json:"numberOfContainers"`
- Status string `json:"status"`
- CtrsInfo []podPsCtrInfo `json:"containerInfo,omitempty"`
- Cgroup string `json:"cgroup,omitempty"`
- InfraID string `json:"infraContainerId,omitempty"`
- Namespaces []string `json:"namespaces,omitempty"`
-}
-
-// Type declaration and functions for sorting the pod PS output
-type podPsSorted []podPsJSONParams
-
-func (a podPsSorted) Len() int { return len(a) }
-func (a podPsSorted) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
-
-type podPsSortedCreated struct{ podPsSorted }
-
-func (a podPsSortedCreated) Less(i, j int) bool {
- return a.podPsSorted[i].CreatedAt.After(a.podPsSorted[j].CreatedAt)
-}
-
-type podPsSortedId struct{ podPsSorted }
-
-func (a podPsSortedId) Less(i, j int) bool { return a.podPsSorted[i].ID < a.podPsSorted[j].ID }
-
-type podPsSortedNumber struct{ podPsSorted }
-
-func (a podPsSortedNumber) Less(i, j int) bool {
- return len(a.podPsSorted[i].CtrsInfo) < len(a.podPsSorted[j].CtrsInfo)
-}
-
-type podPsSortedName struct{ podPsSorted }
-
-func (a podPsSortedName) Less(i, j int) bool { return a.podPsSorted[i].Name < a.podPsSorted[j].Name }
-
-type podPsSortedStatus struct{ podPsSorted }
-
-func (a podPsSortedStatus) Less(i, j int) bool {
- return a.podPsSorted[i].Status < a.podPsSorted[j].Status
-}
-
-var (
- podPsCommand cliconfig.PodPsValues
-
- podPsDescription = "List all pods on system including their names, ids and current state."
- _podPsCommand = &cobra.Command{
- Use: "ps",
- Aliases: []string{"ls", "list"},
- Args: noSubArgs,
- Short: "List pods",
- Long: podPsDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- podPsCommand.InputArgs = args
- podPsCommand.GlobalFlags = MainGlobalOpts
- podPsCommand.Remote = remoteclient
- return podPsCmd(&podPsCommand)
- },
- }
-)
-
-func init() {
- podPsCommand.Command = _podPsCommand
- podPsCommand.SetHelpTemplate(HelpTemplate())
- podPsCommand.SetUsageTemplate(UsageTemplate())
- flags := podPsCommand.Flags()
- flags.BoolVar(&podPsCommand.CtrNames, "ctr-names", false, "Display the container names")
- flags.BoolVar(&podPsCommand.CtrIDs, "ctr-ids", false, "Display the container UUIDs. If no-trunc is not set they will be truncated")
- flags.BoolVar(&podPsCommand.CtrStatus, "ctr-status", false, "Display the container status")
- flags.StringVarP(&podPsCommand.Filter, "filter", "f", "", "Filter output based on conditions given")
- flags.StringVar(&podPsCommand.Format, "format", "", "Pretty-print pods to JSON or using a Go template")
- flags.BoolVarP(&podPsCommand.Latest, "latest", "l", false, "Act on the latest pod podman is aware of")
- flags.BoolVar(&podPsCommand.Namespace, "namespace", false, "Display namespace information of the pod")
- flags.BoolVar(&podPsCommand.Namespace, "ns", false, "Display namespace information of the pod")
- flags.BoolVar(&podPsCommand.NoTrunc, "no-trunc", false, "Do not truncate pod and container IDs")
- flags.BoolVarP(&podPsCommand.Quiet, "quiet", "q", false, "Print the numeric IDs of the pods only")
- flags.StringVar(&podPsCommand.Sort, "sort", "created", "Sort output by created, id, name, or number")
- markFlagHiddenForRemoteClient("latest", flags)
-}
-
-func podPsCmd(c *cliconfig.PodPsValues) error {
- if err := podPsCheckFlagsPassed(c); err != nil {
- return errors.Wrapf(err, "error with flags passed")
- }
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "error creating libpod runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- opts := podPsOptions{
- NoTrunc: c.NoTrunc,
- Quiet: c.Quiet,
- Sort: c.Sort,
- IdsOfContainers: c.CtrIDs,
- NamesOfContainers: c.CtrNames,
- StatusOfContainers: c.CtrStatus,
- }
-
- opts.Format = genPodPsFormat(c)
-
- var pods []*adapter.Pod
-
- // If latest is set true filters are ignored.
- if c.Latest {
- pod, err := runtime.GetLatestPod()
- if err != nil {
- return err
- }
- pods = append(pods, pod)
- return generatePodPsOutput(pods, opts)
- }
-
- if c.Filter != "" {
- pods, err = runtime.GetPodsWithFilters(c.Filter)
- if err != nil {
- return err
- }
- } else {
- pods, err = runtime.GetAllPods()
- if err != nil {
- return err
- }
- }
-
- return generatePodPsOutput(pods, opts)
-}
-
-// podPsCheckFlagsPassed checks if mutually exclusive flags are passed together
-func podPsCheckFlagsPassed(c *cliconfig.PodPsValues) error {
- // quiet, and format with Go template are mutually exclusive
- flags := 0
- if c.Quiet {
- flags++
- }
- if c.Flag("format").Changed && c.Format != formats.JSONString {
- flags++
- }
- if flags > 1 {
- return errors.Errorf("quiet and format with Go template are mutually exclusive")
- }
- return nil
-}
-
-// generate the template based on conditions given
-func genPodPsFormat(c *cliconfig.PodPsValues) string {
- format := ""
- switch {
- case c.Format != "":
- // "\t" from the command line is not being recognized as a tab
- // replacing the string "\t" to a tab character if the user passes in "\t"
- format = strings.Replace(c.Format, `\t`, "\t", -1)
- case c.Quiet:
- format = formats.IDString
- default:
- format = "table {{.ID}}\t{{.Name}}\t{{.Status}}\t{{.Created}}"
- if c.Bool("namespace") {
- format += "\t{{.Cgroup}}\t{{.Namespaces}}"
- }
- if c.CtrNames || c.CtrIDs || c.CtrStatus {
- format += "\t{{.ContainerInfo}}"
- } else {
- format += "\t{{.NumberOfContainers}}"
- }
- format += "\t{{.InfraID}}"
- }
- return format
-}
-
-func podPsToGeneric(templParams []podPsTemplateParams, jsonParams []podPsJSONParams) (genericParams []interface{}) {
- if len(templParams) > 0 {
- for _, v := range templParams {
- genericParams = append(genericParams, interface{}(v))
- }
- return
- }
- for _, v := range jsonParams {
- genericParams = append(genericParams, interface{}(v))
- }
- return
-}
-
-// generate the accurate header based on template given
-func (p *podPsTemplateParams) podHeaderMap() map[string]string {
- v := reflect.Indirect(reflect.ValueOf(p))
- values := make(map[string]string)
-
- for i := 0; i < v.NumField(); i++ {
- key := v.Type().Field(i).Name
- value := key
- if value == "ID" {
- value = "Pod" + value
- }
- if value == "NumberOfContainers" {
- value = "#OfContainers"
- }
- values[key] = strings.ToUpper(splitCamelCase(value))
- }
- return values
-}
-
-func sortPodPsOutput(sortBy string, psOutput podPsSorted) (podPsSorted, error) {
- switch sortBy {
- case "created":
- sort.Sort(podPsSortedCreated{psOutput})
- case "id":
- sort.Sort(podPsSortedId{psOutput})
- case "name":
- sort.Sort(podPsSortedName{psOutput})
- case "number":
- sort.Sort(podPsSortedNumber{psOutput})
- case "status":
- sort.Sort(podPsSortedStatus{psOutput})
- default:
- return nil, errors.Errorf("invalid option for --sort, options are: id, names, or number")
- }
- return psOutput, nil
-}
-
-// getPodTemplateOutput returns the modified container information
-func getPodTemplateOutput(psParams []podPsJSONParams, opts podPsOptions) ([]podPsTemplateParams, error) {
- var (
- psOutput []podPsTemplateParams
- )
-
- for _, psParam := range psParams {
- podID := psParam.ID
- infraID := psParam.InfraID
- var ctrStr string
-
- truncated := ""
- if !opts.NoTrunc {
- podID = shortID(podID)
- if len(psParam.CtrsInfo) > NUM_CTR_INFO {
- psParam.CtrsInfo = psParam.CtrsInfo[:NUM_CTR_INFO]
- truncated = "..."
- }
- infraID = shortID(infraID)
- }
- for _, ctrInfo := range psParam.CtrsInfo {
- infoSlice := make([]string, 0)
- if opts.IdsOfContainers {
- if opts.NoTrunc {
- infoSlice = append(infoSlice, ctrInfo.Id)
- } else {
- infoSlice = append(infoSlice, shortID(ctrInfo.Id))
- }
- }
- if opts.NamesOfContainers {
- infoSlice = append(infoSlice, ctrInfo.Name)
- }
- if opts.StatusOfContainers {
- infoSlice = append(infoSlice, ctrInfo.Status)
- }
- if len(infoSlice) != 0 {
- ctrStr += fmt.Sprintf("[%s] ", strings.Join(infoSlice, ","))
- }
- }
- ctrStr += truncated
- params := podPsTemplateParams{
- Created: units.HumanDuration(time.Since(psParam.CreatedAt)) + " ago",
- ID: podID,
- Name: psParam.Name,
- Status: psParam.Status,
- NumberOfContainers: psParam.NumberOfContainers,
- Cgroup: psParam.Cgroup,
- ContainerInfo: ctrStr,
- InfraID: infraID,
- Namespaces: strings.Join(psParam.Namespaces, ","),
- }
-
- psOutput = append(psOutput, params)
- }
-
- return psOutput, nil
-}
-
-func getNamespaces(pod *adapter.Pod) []string {
- var shared []string
- if pod.SharesPID() {
- shared = append(shared, "pid")
- }
- if pod.SharesNet() {
- shared = append(shared, "net")
- }
- if pod.SharesMount() {
- shared = append(shared, "mnt")
- }
- if pod.SharesIPC() {
- shared = append(shared, "ipc")
- }
- if pod.SharesUser() {
- shared = append(shared, "user")
- }
- if pod.SharesCgroup() {
- shared = append(shared, "cgroup")
- }
- if pod.SharesUTS() {
- shared = append(shared, "uts")
- }
- return shared
-}
-
-// getAndSortPodJSONOutput returns the container info in its raw, sorted form
-func getAndSortPodJSONParams(pods []*adapter.Pod, opts podPsOptions) ([]podPsJSONParams, error) {
- var (
- psOutput []podPsJSONParams
- )
-
- for _, pod := range pods {
- ctrs, err := pod.AllContainers()
- ctrsInfo := make([]podPsCtrInfo, 0)
- if err != nil {
- return nil, err
- }
- ctrNum := len(ctrs)
- status, err := pod.GetPodStatus()
- if err != nil {
- return nil, err
- }
-
- infraID, err := pod.InfraContainerID()
- if err != nil {
- return nil, err
- }
- for _, ctr := range ctrs {
- batchInfo, err := adapter.BatchContainerOp(ctr, bc_opts)
- if err != nil {
- return nil, err
- }
- var status string
- switch batchInfo.ConState {
- case define.ContainerStateExited:
- fallthrough
- case define.ContainerStateStopped:
- status = EXITED
- case define.ContainerStateRunning:
- status = RUNNING
- case define.ContainerStatePaused:
- status = PAUSED
- case define.ContainerStateCreated, define.ContainerStateConfigured:
- status = CREATED
- default:
- status = ERROR
- }
- ctrsInfo = append(ctrsInfo, podPsCtrInfo{
- Name: batchInfo.ConConfig.Name,
- Id: ctr.ID(),
- Status: status,
- })
- }
- params := podPsJSONParams{
- CreatedAt: pod.CreatedTime(),
- ID: pod.ID(),
- Name: pod.Name(),
- Status: status,
- Cgroup: pod.CgroupParent(),
- NumberOfContainers: ctrNum,
- CtrsInfo: ctrsInfo,
- Namespaces: getNamespaces(pod),
- InfraID: infraID,
- }
-
- psOutput = append(psOutput, params)
- }
- return sortPodPsOutput(opts.Sort, psOutput)
-}
-
-func generatePodPsOutput(pods []*adapter.Pod, opts podPsOptions) error {
- if len(pods) == 0 && opts.Format != formats.JSONString {
- return nil
- }
- psOutput, err := getAndSortPodJSONParams(pods, opts)
- if err != nil {
- return err
- }
- var out formats.Writer
-
- switch opts.Format {
- case formats.JSONString:
- out = formats.JSONStructArray{Output: podPsToGeneric([]podPsTemplateParams{}, psOutput)}
- default:
- psOutput, err := getPodTemplateOutput(psOutput, opts)
- if err != nil {
- return errors.Wrapf(err, "unable to create output")
- }
- out = formats.StdoutTemplateArray{Output: podPsToGeneric(psOutput, []podPsJSONParams{}), Template: opts.Format, Fields: psOutput[0].podHeaderMap()}
- }
-
- return out.Out()
-}
diff --git a/cmd/podman/pod_restart.go b/cmd/podman/pod_restart.go
deleted file mode 100644
index cb9f3770f..000000000
--- a/cmd/podman/pod_restart.go
+++ /dev/null
@@ -1,78 +0,0 @@
-package main
-
-import (
- "fmt"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- "github.com/spf13/cobra"
-)
-
-var (
- podRestartCommand cliconfig.PodRestartValues
- podRestartDescription = `The pod ID or name can be used.
-
- All of the containers within each of the specified pods will be restarted. If a container in a pod is not currently running it will be started.`
- _podRestartCommand = &cobra.Command{
- Use: "restart [flags] POD [POD...]",
- Short: "Restart one or more pods",
- Long: podRestartDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- podRestartCommand.InputArgs = args
- podRestartCommand.GlobalFlags = MainGlobalOpts
- podRestartCommand.Remote = remoteclient
- return podRestartCmd(&podRestartCommand)
- },
- Args: func(cmd *cobra.Command, args []string) error {
- return checkAllLatestAndCIDFile(cmd, args, false, false)
- },
- Example: `podman pod restart podID1 podID2
- podman pod restart --latest
- podman pod restart --all`,
- }
-)
-
-func init() {
- podRestartCommand.Command = _podRestartCommand
- podRestartCommand.SetHelpTemplate(HelpTemplate())
- podRestartCommand.SetUsageTemplate(UsageTemplate())
- flags := podRestartCommand.Flags()
- flags.BoolVarP(&podRestartCommand.All, "all", "a", false, "Restart all running pods")
- flags.BoolVarP(&podRestartCommand.Latest, "latest", "l", false, "Restart the latest pod podman is aware of")
-
- markFlagHiddenForRemoteClient("latest", flags)
-}
-
-func podRestartCmd(c *cliconfig.PodRestartValues) error {
- var lastError error
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- restartIDs, conErrors, restartErrors := runtime.RestartPods(getContext(), c)
-
- for _, p := range restartIDs {
- fmt.Println(p)
- }
- if len(conErrors) > 0 {
- for ctr, err := range conErrors {
- if lastError != nil {
- logrus.Errorf("%q", lastError)
- }
- lastError = errors.Wrapf(err, "unable to pause container %s", ctr)
- }
- }
- if len(restartErrors) > 0 {
- lastError = restartErrors[len(restartErrors)-1]
- // Remove the last error from the error slice
- restartErrors = restartErrors[:len(restartErrors)-1]
- }
- for _, err := range restartErrors {
- logrus.Errorf("%q", err)
- }
- return lastError
-}
diff --git a/cmd/podman/pod_rm.go b/cmd/podman/pod_rm.go
deleted file mode 100644
index 02daf8764..000000000
--- a/cmd/podman/pod_rm.go
+++ /dev/null
@@ -1,74 +0,0 @@
-package main
-
-import (
- "fmt"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- "github.com/spf13/cobra"
-)
-
-var (
- podRmCommand cliconfig.PodRmValues
- podRmDescription = fmt.Sprintf(`podman rm will remove one or more stopped pods and their containers from the host.
-
- The pod name or ID can be used. A pod with containers will not be removed without --force. If --force is specified, all containers will be stopped, then removed.`)
- _podRmCommand = &cobra.Command{
- Use: "rm [flags] POD [POD...]",
- Short: "Remove one or more pods",
- Long: podRmDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- podRmCommand.InputArgs = args
- podRmCommand.GlobalFlags = MainGlobalOpts
- podRmCommand.Remote = remoteclient
- return podRmCmd(&podRmCommand)
- },
- Args: func(cmd *cobra.Command, args []string) error {
- return checkAllLatestAndCIDFile(cmd, args, false, false)
- },
- Example: `podman pod rm mywebserverpod
- podman pod rm -f 860a4b23
- podman pod rm -f -a`,
- }
-)
-
-func init() {
- podRmCommand.Command = _podRmCommand
- podRmCommand.SetHelpTemplate(HelpTemplate())
- podRmCommand.SetUsageTemplate(UsageTemplate())
- flags := podRmCommand.Flags()
- flags.BoolVarP(&podRmCommand.All, "all", "a", false, "Remove all running pods")
- flags.BoolVarP(&podRmCommand.Force, "force", "f", false, "Force removal of a running pod by first stopping all containers, then removing all containers in the pod. The default is false")
- flags.BoolVarP(&podRmCommand.Ignore, "ignore", "i", false, "Ignore errors when a specified pod is missing")
- flags.BoolVarP(&podRmCommand.Latest, "latest", "l", false, "Remove the latest pod podman is aware of")
- markFlagHiddenForRemoteClient("ignore", flags)
- markFlagHiddenForRemoteClient("latest", flags)
-}
-
-// podRmCmd deletes pods
-func podRmCmd(c *cliconfig.PodRmValues) error {
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- podRmIds, podRmErrors := runtime.RemovePods(getContext(), c)
- for _, p := range podRmIds {
- fmt.Println(p)
- }
- if len(podRmErrors) == 0 {
- return nil
- }
- // Grab the last error
- lastError := podRmErrors[len(podRmErrors)-1]
- // Remove the last error from the error slice
- podRmErrors = podRmErrors[:len(podRmErrors)-1]
-
- for _, err := range podRmErrors {
- logrus.Errorf("%q", err)
- }
- return lastError
-}
diff --git a/cmd/podman/pod_start.go b/cmd/podman/pod_start.go
deleted file mode 100644
index aa2e09e98..000000000
--- a/cmd/podman/pod_start.go
+++ /dev/null
@@ -1,70 +0,0 @@
-package main
-
-import (
- "fmt"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- "github.com/spf13/cobra"
-)
-
-var (
- podStartCommand cliconfig.PodStartValues
- podStartDescription = `The pod name or ID can be used.
-
- All containers defined in the pod will be started.`
- _podStartCommand = &cobra.Command{
- Use: "start [flags] POD [POD...]",
- Short: "Start one or more pods",
- Long: podStartDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- podStartCommand.InputArgs = args
- podStartCommand.GlobalFlags = MainGlobalOpts
- podStartCommand.Remote = remoteclient
- return podStartCmd(&podStartCommand)
- },
- Args: func(cmd *cobra.Command, args []string) error {
- return checkAllLatestAndCIDFile(cmd, args, false, false)
- },
- Example: `podman pod start podID
- podman pod start --latest
- podman pod start --all`,
- }
-)
-
-func init() {
- podStartCommand.Command = _podStartCommand
- podStartCommand.SetHelpTemplate(HelpTemplate())
- podStartCommand.SetUsageTemplate(UsageTemplate())
- flags := podStartCommand.Flags()
- flags.BoolVarP(&podStartCommand.All, "all", "a", false, "Start all pods")
- flags.BoolVarP(&podStartCommand.Latest, "latest", "l", false, "Start the latest pod podman is aware of")
- markFlagHiddenForRemoteClient("latest", flags)
-}
-
-func podStartCmd(c *cliconfig.PodStartValues) error {
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- podStartIDs, podStartErrors := runtime.StartPods(getContext(), c)
- for _, p := range podStartIDs {
- fmt.Println(p)
- }
- if len(podStartErrors) == 0 {
- return nil
- }
- // Grab the last error
- lastError := podStartErrors[len(podStartErrors)-1]
- // Remove the last error from the error slice
- podStartErrors = podStartErrors[:len(podStartErrors)-1]
-
- for _, err := range podStartErrors {
- logrus.Errorf("%q", err)
- }
- return lastError
-}
diff --git a/cmd/podman/pod_stats.go b/cmd/podman/pod_stats.go
deleted file mode 100644
index 297603410..000000000
--- a/cmd/podman/pod_stats.go
+++ /dev/null
@@ -1,286 +0,0 @@
-package main
-
-import (
- "fmt"
- "html/template"
- "os"
- "reflect"
- "strings"
- "text/tabwriter"
- "time"
-
- tm "github.com/buger/goterm"
- "github.com/containers/buildah/pkg/formats"
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/libpod"
- "github.com/containers/libpod/libpod/define"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/containers/libpod/pkg/cgroups"
- "github.com/containers/libpod/pkg/rootless"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- podStatsCommand cliconfig.PodStatsValues
- podStatsDescription = `For each specified pod this command will display percentage of CPU, memory, network I/O, block I/O and PIDs for containers in one the pods.`
-
- _podStatsCommand = &cobra.Command{
- Use: "stats [flags] [POD...]",
- Short: "Display a live stream of resource usage statistics for the containers in one or more pods",
- Long: podStatsDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- podStatsCommand.InputArgs = args
- podStatsCommand.GlobalFlags = MainGlobalOpts
- podStatsCommand.Remote = remoteclient
- return podStatsCmd(&podStatsCommand)
- },
- Example: `podman stats -a --no-stream
- podman stats --no-reset ctrID
- podman stats --no-stream --format "table {{.ID}} {{.Name}} {{.MemUsage}}" ctrID`,
- }
-)
-
-func init() {
- podStatsCommand.Command = _podStatsCommand
- podStatsCommand.SetHelpTemplate(HelpTemplate())
- podStatsCommand.SetUsageTemplate(UsageTemplate())
- flags := podStatsCommand.Flags()
- flags.BoolVarP(&podStatsCommand.All, "all", "a", false, "Provide stats for all running pods")
- flags.StringVar(&podStatsCommand.Format, "format", "", "Pretty-print container statistics to JSON or using a Go template")
- flags.BoolVarP(&podStatsCommand.Latest, "latest", "l", false, "Provide stats on the latest pod podman is aware of")
- flags.BoolVar(&podStatsCommand.NoStream, "no-stream", false, "Disable streaming stats and only pull the first result, default setting is false")
- flags.BoolVar(&podStatsCommand.NoReset, "no-reset", false, "Disable resetting the screen between intervals")
- markFlagHiddenForRemoteClient("latest", flags)
-}
-
-func podStatsCmd(c *cliconfig.PodStatsValues) error {
- if rootless.IsRootless() {
- unified, err := cgroups.IsCgroup2UnifiedMode()
- if err != nil {
- return err
- }
- if !unified {
- return errors.New("stats is not supported in rootless mode without cgroups v2")
- }
- }
-
- format := c.Format
- all := c.All
- latest := c.Latest
- ctr := 0
- if all {
- ctr += 1
- }
- if latest {
- ctr += 1
- }
- if len(c.InputArgs) > 0 {
- ctr += 1
- }
-
- if ctr > 1 {
- return errors.Errorf("--all, --latest and containers cannot be used together")
- }
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- times := -1
- if c.NoStream {
- times = 1
- }
-
- pods, err := runtime.GetStatPods(c)
- if err != nil {
- return errors.Wrapf(err, "unable to get a list of pods")
- }
-
- // Create empty container stat results for our first pass
- var previousPodStats []*adapter.PodContainerStats
- for _, p := range pods {
- cs := make(map[string]*libpod.ContainerStats)
- pcs := adapter.PodContainerStats{
- Pod: p,
- ContainerStats: cs,
- }
- previousPodStats = append(previousPodStats, &pcs)
- }
-
- step := 1
- if times == -1 {
- times = 1
- step = 0
- }
-
- headerNames := make(map[string]string)
- if c.Format != "" {
- // Make a map of the field names for the headers
- v := reflect.ValueOf(podStatOut{})
- t := v.Type()
- for i := 0; i < t.NumField(); i++ {
- value := strings.ToUpper(splitCamelCase(t.Field(i).Name))
- switch value {
- case "CPU", "MEM":
- value += " %"
- case "MEM USAGE":
- value = "MEM USAGE / LIMIT"
- }
- headerNames[t.Field(i).Name] = value
- }
- }
-
- for i := 0; i < times; i += step {
- var newStats []*adapter.PodContainerStats
- for _, p := range pods {
- prevStat := getPreviousPodContainerStats(p.ID(), previousPodStats)
- newPodStats, err := p.GetPodStats(prevStat)
- if errors.Cause(err) == define.ErrNoSuchPod {
- continue
- }
- if err != nil {
- return err
- }
- newPod := adapter.PodContainerStats{
- Pod: p,
- ContainerStats: newPodStats,
- }
- newStats = append(newStats, &newPod)
- }
- //Output
- if strings.ToLower(format) != formats.JSONString && !c.NoReset {
- tm.Clear()
- tm.MoveCursor(1, 1)
- tm.Flush()
- }
- if strings.ToLower(format) == formats.JSONString {
- if err := outputJson(newStats); err != nil {
- return err
- }
-
- } else {
- results := podContainerStatsToPodStatOut(newStats)
- if len(format) == 0 {
- outputToStdOut(results)
- } else if err := printPSFormat(c.Format, results, headerNames); err != nil {
- return err
- }
- }
- time.Sleep(time.Second)
- previousPodStats := new([]*libpod.PodContainerStats)
- if err := libpod.JSONDeepCopy(newStats, previousPodStats); err != nil {
- return err
- }
- pods, err = runtime.GetStatPods(c)
- if err != nil {
- return err
- }
- }
-
- return nil
-}
-
-func podContainerStatsToPodStatOut(stats []*adapter.PodContainerStats) []*podStatOut {
- var out []*podStatOut
- for _, p := range stats {
- for _, c := range p.ContainerStats {
- o := podStatOut{
- CPU: floatToPercentString(c.CPU),
- MemUsage: combineHumanValues(c.MemUsage, c.MemLimit),
- Mem: floatToPercentString(c.MemPerc),
- NetIO: combineHumanValues(c.NetInput, c.NetOutput),
- BlockIO: combineHumanValues(c.BlockInput, c.BlockOutput),
- PIDS: pidsToString(c.PIDs),
- CID: c.ContainerID[:12],
- Name: c.Name,
- Pod: p.Pod.ID()[:12],
- }
- out = append(out, &o)
- }
- }
- return out
-}
-
-type podStatOut struct {
- CPU string
- MemUsage string
- Mem string
- NetIO string
- BlockIO string
- PIDS string
- Pod string
- CID string
- Name string
-}
-
-func printPSFormat(format string, stats []*podStatOut, headerNames map[string]string) error {
- if len(stats) == 0 {
- return nil
- }
-
- // Use a tabwriter to align column format
- w := tabwriter.NewWriter(os.Stdout, 0, 0, 3, ' ', 0)
- // Spit out the header if "table" is present in the format
- if strings.HasPrefix(format, "table") {
- hformat := strings.Replace(strings.TrimSpace(format[5:]), " ", "\t", -1)
- format = hformat
- headerTmpl, err := template.New("header").Parse(hformat)
- if err != nil {
- return err
- }
- if err := headerTmpl.Execute(w, headerNames); err != nil {
- return err
- }
- fmt.Fprintln(w, "")
- }
-
- // Spit out the data rows now
- dataTmpl, err := template.New("data").Parse(format)
- if err != nil {
- return err
- }
- for _, container := range stats {
- if err := dataTmpl.Execute(w, container); err != nil {
- return err
- }
- fmt.Fprintln(w, "")
- }
- // Flush the writer
- return w.Flush()
-
-}
-
-func outputToStdOut(stats []*podStatOut) {
- w := tabwriter.NewWriter(os.Stdout, 0, 0, 2, ' ', 0)
- outFormat := "%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\n"
- fmt.Fprintf(w, outFormat, "POD", "CID", "NAME", "CPU %", "MEM USAGE/ LIMIT", "MEM %", "NET IO", "BLOCK IO", "PIDS")
- for _, i := range stats {
- if len(stats) == 0 {
- fmt.Fprintf(w, outFormat, i.Pod, "--", "--", "--", "--", "--", "--", "--", "--")
- } else {
- fmt.Fprintf(w, outFormat, i.Pod, i.CID, i.Name, i.CPU, i.MemUsage, i.Mem, i.NetIO, i.BlockIO, i.PIDS)
- }
- }
- w.Flush()
-}
-
-func getPreviousPodContainerStats(podID string, prev []*adapter.PodContainerStats) map[string]*libpod.ContainerStats {
- for _, p := range prev {
- if podID == p.Pod.ID() {
- return p.ContainerStats
- }
- }
- return map[string]*libpod.ContainerStats{}
-}
-
-func outputJson(stats []*adapter.PodContainerStats) error {
- b, err := json.MarshalIndent(&stats, "", " ")
- if err != nil {
- return err
- }
- fmt.Println(string(b))
- return nil
-}
diff --git a/cmd/podman/pod_stop.go b/cmd/podman/pod_stop.go
deleted file mode 100644
index 395731551..000000000
--- a/cmd/podman/pod_stop.go
+++ /dev/null
@@ -1,75 +0,0 @@
-package main
-
-import (
- "fmt"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- "github.com/spf13/cobra"
-)
-
-var (
- podStopCommand cliconfig.PodStopValues
- podStopDescription = `The pod name or ID can be used.
-
- This command will stop all running containers in each of the specified pods.`
-
- _podStopCommand = &cobra.Command{
- Use: "stop [flags] POD [POD...]",
- Short: "Stop one or more pods",
- Long: podStopDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- podStopCommand.InputArgs = args
- podStopCommand.GlobalFlags = MainGlobalOpts
- podStopCommand.Remote = remoteclient
- return podStopCmd(&podStopCommand)
- },
- Args: func(cmd *cobra.Command, args []string) error {
- return checkAllLatestAndCIDFile(cmd, args, false, false)
- },
- Example: `podman pod stop mywebserverpod
- podman pod stop --latest
- podman pod stop --time 0 490eb 3557fb`,
- }
-)
-
-func init() {
- podStopCommand.Command = _podStopCommand
- podStopCommand.SetHelpTemplate(HelpTemplate())
- podStopCommand.SetUsageTemplate(UsageTemplate())
- flags := podStopCommand.Flags()
- flags.BoolVarP(&podStopCommand.All, "all", "a", false, "Stop all running pods")
- flags.BoolVarP(&podStopCommand.Ignore, "ignore", "i", false, "Ignore errors when a specified pod is missing")
- flags.BoolVarP(&podStopCommand.Latest, "latest", "l", false, "Stop the latest pod podman is aware of")
- flags.UintVarP(&podStopCommand.Timeout, "time", "t", defaultContainerConfig.Engine.StopTimeout, "Seconds to wait for pod stop before killing the container")
- flags.SetNormalizeFunc(aliasFlags)
- markFlagHiddenForRemoteClient("ignore", flags)
- markFlagHiddenForRemoteClient("latest", flags)
-}
-
-func podStopCmd(c *cliconfig.PodStopValues) error {
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- podStopIds, podStopErrors := runtime.StopPods(getContext(), c)
- for _, p := range podStopIds {
- fmt.Println(p)
- }
- if len(podStopErrors) == 0 {
- return nil
- }
- // Grab the last error
- lastError := podStopErrors[len(podStopErrors)-1]
- // Remove the last error from the error slice
- podStopErrors = podStopErrors[:len(podStopErrors)-1]
-
- for _, err := range podStopErrors {
- logrus.Errorf("%q", err)
- }
- return lastError
-}
diff --git a/cmd/podman/pod_top.go b/cmd/podman/pod_top.go
deleted file mode 100644
index 734472817..000000000
--- a/cmd/podman/pod_top.go
+++ /dev/null
@@ -1,92 +0,0 @@
-package main
-
-import (
- "fmt"
- "os"
- "strings"
- "text/tabwriter"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/containers/libpod/pkg/util"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- podTopCommand cliconfig.PodTopValues
-
- podTopDescription = fmt.Sprintf(`Specify format descriptors to alter the output.
-
- You may run "podman pod top -l pid pcpu seccomp" to print the process ID, the CPU percentage and the seccomp mode of each process of the latest pod.
-%s`, getDescriptorString())
-
- _podTopCommand = &cobra.Command{
- Use: "top [flags] CONTAINER [FORMAT-DESCRIPTORS]",
- Short: "Display the running processes of containers in a pod",
- Long: podTopDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- podTopCommand.InputArgs = args
- podTopCommand.GlobalFlags = MainGlobalOpts
- podTopCommand.Remote = remoteclient
- return podTopCmd(&podTopCommand)
- },
- Example: `podman top ctrID
- podman top --latest
- podman top --latest pid seccomp args %C`,
- }
-)
-
-func init() {
- podTopCommand.Command = _podTopCommand
- podTopCommand.SetHelpTemplate(HelpTemplate())
- podTopCommand.SetUsageTemplate(UsageTemplate())
- flags := podTopCommand.Flags()
- flags.BoolVarP(&podTopCommand.Latest, "latest", "l", false, "Act on the latest pod podman is aware of")
- flags.BoolVar(&podTopCommand.ListDescriptors, "list-descriptors", false, "")
- markFlagHidden(flags, "list-descriptors")
-}
-
-func podTopCmd(c *cliconfig.PodTopValues) error {
- var (
- descriptors []string
- )
- args := c.InputArgs
-
- if c.ListDescriptors {
- descriptors, err := util.GetContainerPidInformationDescriptors()
- if err != nil {
- return err
- }
- fmt.Println(strings.Join(descriptors, "\n"))
- return nil
- }
-
- if len(args) < 1 && !c.Latest {
- return errors.Errorf("you must provide the name or id of a running pod")
- }
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "error creating libpod runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- if c.Latest {
- descriptors = args
- } else {
- descriptors = args[1:]
- }
-
- w := tabwriter.NewWriter(os.Stdout, 5, 1, 3, ' ', 0)
- psOutput, err := runtime.PodTop(c, descriptors)
- if err != nil {
- return err
- }
- for _, proc := range psOutput {
- if _, err := fmt.Fprintln(w, proc); err != nil {
- return err
- }
- }
- return w.Flush()
-}
diff --git a/cmd/podman/pod_unpause.go b/cmd/podman/pod_unpause.go
deleted file mode 100644
index 1f80a7c79..000000000
--- a/cmd/podman/pod_unpause.go
+++ /dev/null
@@ -1,77 +0,0 @@
-package main
-
-import (
- "fmt"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- "github.com/spf13/cobra"
-)
-
-var (
- podUnpauseCommand cliconfig.PodUnpauseValues
- podUnpauseDescription = `The podman unpause command will unpause all "paused" containers assigned to the pod.
-
- The pod name or ID can be used.`
- _podUnpauseCommand = &cobra.Command{
- Use: "unpause [flags] POD [POD...]",
- Short: "Unpause one or more pods",
- Long: podUnpauseDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- podUnpauseCommand.InputArgs = args
- podUnpauseCommand.GlobalFlags = MainGlobalOpts
- podUnpauseCommand.Remote = remoteclient
- return podUnpauseCmd(&podUnpauseCommand)
- },
- Args: func(cmd *cobra.Command, args []string) error {
- return checkAllLatestAndCIDFile(cmd, args, false, false)
- },
- Example: `podman pod unpause podID1 podID2
- podman pod unpause --all
- podman pod unpause --latest`,
- }
-)
-
-func init() {
- podUnpauseCommand.Command = _podUnpauseCommand
- podUnpauseCommand.SetHelpTemplate(HelpTemplate())
- podUnpauseCommand.SetUsageTemplate(UsageTemplate())
- flags := podUnpauseCommand.Flags()
- flags.BoolVarP(&podUnpauseCommand.All, "all", "a", false, "Unpause all running pods")
- flags.BoolVarP(&podUnpauseCommand.Latest, "latest", "l", false, "Unpause the latest pod podman is aware of")
- markFlagHiddenForRemoteClient("latest", flags)
-}
-
-func podUnpauseCmd(c *cliconfig.PodUnpauseValues) error {
- var lastError error
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "error creating libpod runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- unpauseIDs, conErrors, unpauseErrors := runtime.UnpausePods(c)
-
- for _, p := range unpauseIDs {
- fmt.Println(p)
- }
- if len(conErrors) > 0 {
- for ctr, err := range conErrors {
- if lastError != nil {
- logrus.Errorf("%q", lastError)
- }
- lastError = errors.Wrapf(err, "unable to unpause container %s", ctr)
- }
- }
- if len(unpauseErrors) > 0 {
- lastError = unpauseErrors[len(unpauseErrors)-1]
- // Remove the last error from the error slice
- unpauseErrors = unpauseErrors[:len(unpauseErrors)-1]
- }
- for _, err := range unpauseErrors {
- logrus.Errorf("%q", err)
- }
- return lastError
-}
diff --git a/cmd/podmanV2/pods/create.go b/cmd/podman/pods/create.go
index 2aaf0cd2c..63dab4707 100644
--- a/cmd/podmanV2/pods/create.go
+++ b/cmd/podman/pods/create.go
@@ -6,9 +6,9 @@ import (
"os"
"strings"
- "github.com/containers/libpod/cmd/podmanV2/common"
- "github.com/containers/libpod/cmd/podmanV2/parse"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/common"
+ "github.com/containers/libpod/cmd/podman/parse"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/libpod/define"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/containers/libpod/pkg/errorhandling"
diff --git a/cmd/podmanV2/pods/exists.go b/cmd/podman/pods/exists.go
index e37f2ebd7..ad0e28b90 100644
--- a/cmd/podmanV2/pods/exists.go
+++ b/cmd/podman/pods/exists.go
@@ -4,7 +4,7 @@ import (
"context"
"os"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
)
diff --git a/cmd/podmanV2/pods/inspect.go b/cmd/podman/pods/inspect.go
index 9aab610f2..901ae50b2 100644
--- a/cmd/podmanV2/pods/inspect.go
+++ b/cmd/podman/pods/inspect.go
@@ -4,7 +4,7 @@ import (
"context"
"fmt"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
jsoniter "github.com/json-iterator/go"
"github.com/pkg/errors"
diff --git a/cmd/podmanV2/pods/kill.go b/cmd/podman/pods/kill.go
index 06cca916c..02089016e 100644
--- a/cmd/podmanV2/pods/kill.go
+++ b/cmd/podman/pods/kill.go
@@ -4,9 +4,9 @@ import (
"context"
"fmt"
- "github.com/containers/libpod/cmd/podmanV2/parse"
- "github.com/containers/libpod/cmd/podmanV2/registry"
- "github.com/containers/libpod/cmd/podmanV2/utils"
+ "github.com/containers/libpod/cmd/podman/parse"
+ "github.com/containers/libpod/cmd/podman/registry"
+ "github.com/containers/libpod/cmd/podman/utils"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
)
diff --git a/cmd/podmanV2/pods/pause.go b/cmd/podman/pods/pause.go
index dc86e534d..4ee182661 100644
--- a/cmd/podmanV2/pods/pause.go
+++ b/cmd/podman/pods/pause.go
@@ -4,9 +4,9 @@ import (
"context"
"fmt"
- "github.com/containers/libpod/cmd/podmanV2/parse"
- "github.com/containers/libpod/cmd/podmanV2/registry"
- "github.com/containers/libpod/cmd/podmanV2/utils"
+ "github.com/containers/libpod/cmd/podman/parse"
+ "github.com/containers/libpod/cmd/podman/registry"
+ "github.com/containers/libpod/cmd/podman/utils"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
)
diff --git a/cmd/podmanV2/pods/pod.go b/cmd/podman/pods/pod.go
index 3434bfc02..1cac50e40 100644
--- a/cmd/podmanV2/pods/pod.go
+++ b/cmd/podman/pods/pod.go
@@ -1,7 +1,7 @@
package pods
import (
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
)
diff --git a/cmd/podmanV2/pods/ps.go b/cmd/podman/pods/ps.go
index 3dac607df..8cb7b6266 100644
--- a/cmd/podmanV2/pods/ps.go
+++ b/cmd/podman/pods/ps.go
@@ -13,7 +13,7 @@ import (
"github.com/docker/go-units"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/pkg/errors"
"github.com/spf13/cobra"
diff --git a/cmd/podmanV2/pods/restart.go b/cmd/podman/pods/restart.go
index 1c8709704..1f617a277 100644
--- a/cmd/podmanV2/pods/restart.go
+++ b/cmd/podman/pods/restart.go
@@ -4,9 +4,9 @@ import (
"context"
"fmt"
- "github.com/containers/libpod/cmd/podmanV2/parse"
- "github.com/containers/libpod/cmd/podmanV2/registry"
- "github.com/containers/libpod/cmd/podmanV2/utils"
+ "github.com/containers/libpod/cmd/podman/parse"
+ "github.com/containers/libpod/cmd/podman/registry"
+ "github.com/containers/libpod/cmd/podman/utils"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
)
diff --git a/cmd/podmanV2/pods/rm.go b/cmd/podman/pods/rm.go
index b43dd2d6c..ea3a6476a 100644
--- a/cmd/podmanV2/pods/rm.go
+++ b/cmd/podman/pods/rm.go
@@ -4,9 +4,9 @@ import (
"context"
"fmt"
- "github.com/containers/libpod/cmd/podmanV2/parse"
- "github.com/containers/libpod/cmd/podmanV2/registry"
- "github.com/containers/libpod/cmd/podmanV2/utils"
+ "github.com/containers/libpod/cmd/podman/parse"
+ "github.com/containers/libpod/cmd/podman/registry"
+ "github.com/containers/libpod/cmd/podman/utils"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
)
diff --git a/cmd/podmanV2/pods/start.go b/cmd/podman/pods/start.go
index 11ac312f9..d0150a3c2 100644
--- a/cmd/podmanV2/pods/start.go
+++ b/cmd/podman/pods/start.go
@@ -4,9 +4,9 @@ import (
"context"
"fmt"
- "github.com/containers/libpod/cmd/podmanV2/parse"
- "github.com/containers/libpod/cmd/podmanV2/registry"
- "github.com/containers/libpod/cmd/podmanV2/utils"
+ "github.com/containers/libpod/cmd/podman/parse"
+ "github.com/containers/libpod/cmd/podman/registry"
+ "github.com/containers/libpod/cmd/podman/utils"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
)
diff --git a/cmd/podmanV2/pods/stop.go b/cmd/podman/pods/stop.go
index 403c7d95d..683d9c00a 100644
--- a/cmd/podmanV2/pods/stop.go
+++ b/cmd/podman/pods/stop.go
@@ -4,9 +4,9 @@ import (
"context"
"fmt"
- "github.com/containers/libpod/cmd/podmanV2/parse"
- "github.com/containers/libpod/cmd/podmanV2/registry"
- "github.com/containers/libpod/cmd/podmanV2/utils"
+ "github.com/containers/libpod/cmd/podman/parse"
+ "github.com/containers/libpod/cmd/podman/registry"
+ "github.com/containers/libpod/cmd/podman/utils"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
)
diff --git a/cmd/podmanV2/pods/top.go b/cmd/podman/pods/top.go
index e501bb478..ad602f4ea 100644
--- a/cmd/podmanV2/pods/top.go
+++ b/cmd/podman/pods/top.go
@@ -7,7 +7,7 @@ import (
"strings"
"text/tabwriter"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/containers/psgo"
"github.com/pkg/errors"
diff --git a/cmd/podmanV2/pods/unpause.go b/cmd/podman/pods/unpause.go
index 2de7b964f..b30bd930a 100644
--- a/cmd/podmanV2/pods/unpause.go
+++ b/cmd/podman/pods/unpause.go
@@ -4,9 +4,9 @@ import (
"context"
"fmt"
- "github.com/containers/libpod/cmd/podmanV2/parse"
- "github.com/containers/libpod/cmd/podmanV2/registry"
- "github.com/containers/libpod/cmd/podmanV2/utils"
+ "github.com/containers/libpod/cmd/podman/parse"
+ "github.com/containers/libpod/cmd/podman/registry"
+ "github.com/containers/libpod/cmd/podman/utils"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
)
diff --git a/cmd/podman/pods_prune.go b/cmd/podman/pods_prune.go
deleted file mode 100644
index 1c5c0bb58..000000000
--- a/cmd/podman/pods_prune.go
+++ /dev/null
@@ -1,50 +0,0 @@
-package main
-
-import (
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- podPruneCommand cliconfig.PodPruneValues
- podPruneDescription = `
- podman pod prune
-
- Removes all exited pods
-`
- _prunePodsCommand = &cobra.Command{
- Use: "prune",
- Args: noSubArgs,
- Short: "Remove all stopped pods and their containers",
- Long: podPruneDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- podPruneCommand.InputArgs = args
- podPruneCommand.GlobalFlags = MainGlobalOpts
- return podPruneCmd(&podPruneCommand)
- },
- }
-)
-
-func init() {
- podPruneCommand.Command = _prunePodsCommand
- podPruneCommand.SetHelpTemplate(HelpTemplate())
- podPruneCommand.SetUsageTemplate(UsageTemplate())
- flags := podPruneCommand.Flags()
- flags.BoolVarP(&podPruneCommand.Force, "force", "f", false, "Force removal of all running pods. The default is false")
-}
-
-func podPruneCmd(c *cliconfig.PodPruneValues) error {
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- ok, failures, err := runtime.PrunePods(getContext(), c)
- if err != nil {
- return err
- }
- return printCmdResults(ok, failures)
-}
diff --git a/cmd/podman/port.go b/cmd/podman/port.go
deleted file mode 100644
index 4bb79a3a2..000000000
--- a/cmd/podman/port.go
+++ /dev/null
@@ -1,135 +0,0 @@
-package main
-
-import (
- "fmt"
- "strconv"
- "strings"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/docker/go-connections/nat"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- portCommand cliconfig.PortValues
- portDescription = `List port mappings for the CONTAINER, or lookup the public-facing port that is NAT-ed to the PRIVATE_PORT
-`
- _portCommand = &cobra.Command{
- Use: "port [flags] CONTAINER [PORT]",
- Short: "List port mappings or a specific mapping for the container",
- Long: portDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- portCommand.InputArgs = args
- portCommand.GlobalFlags = MainGlobalOpts
- portCommand.Remote = remoteclient
- return portCmd(&portCommand)
- },
- Args: func(cmd *cobra.Command, args []string) error {
- return checkAllLatestAndCIDFile(cmd, args, true, false)
- },
- Example: `podman port --all
- podman port ctrID 80/tcp
- podman port --latest 80`,
- }
-)
-
-func init() {
- portCommand.Command = _portCommand
- portCommand.SetHelpTemplate(HelpTemplate())
- portCommand.SetUsageTemplate(UsageTemplate())
- flags := portCommand.Flags()
-
- flags.BoolVarP(&portCommand.All, "all", "a", false, "Display port information for all containers")
- flags.BoolVarP(&portCommand.Latest, "latest", "l", false, "Act on the latest container podman is aware of")
-
- markFlagHiddenForRemoteClient("latest", flags)
-}
-
-func portCmd(c *cliconfig.PortValues) error {
- var (
- userPort nat.Port
- err error
- )
- args := c.InputArgs
-
- if c.Latest && c.All {
- return errors.Errorf("the 'all' and 'latest' options cannot be used together")
- }
- if c.All && len(args) > 0 {
- return errors.Errorf("no additional arguments can be used with 'all'")
- }
- if len(args) == 0 && !c.Latest && !c.All {
- return errors.Errorf("you must supply a running container name or id")
- }
-
- port := ""
- if len(args) > 1 && !c.Latest {
- port = args[1]
- }
- if len(args) == 1 && c.Latest {
- port = args[0]
- }
- if len(port) > 0 {
- fields := strings.Split(port, "/")
- if len(fields) > 2 || len(fields) < 1 {
- return errors.Errorf("port formats are port/protocol. '%s' is invalid", port)
- }
- if len(fields) == 1 {
- fields = append(fields, "tcp")
- }
-
- userPort, err = nat.NewPort(fields[1], fields[0])
- if err != nil {
- return err
- }
- }
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
- containers, err := runtime.Port(c)
- if err != nil {
- return err
- }
- for _, con := range containers {
- portmappings, err := con.PortMappings()
- if err != nil {
- return err
- }
- var found bool
- // Iterate mappings
- for _, v := range portmappings {
- hostIP := v.HostIP
- // Set host IP to 0.0.0.0 if blank
- if hostIP == "" {
- hostIP = "0.0.0.0"
- }
- if c.All {
- fmt.Printf("%s\t", con.ID()[:12])
- }
- // If not searching by port or port/proto, then dump what we see
- if port == "" {
- fmt.Printf("%d/%s -> %s:%d\n", v.ContainerPort, v.Protocol, hostIP, v.HostPort)
- continue
- }
- containerPort, err := nat.NewPort(v.Protocol, strconv.Itoa(int(v.ContainerPort)))
- if err != nil {
- return err
- }
- if containerPort == userPort {
- fmt.Printf("%s:%d\n", hostIP, v.HostPort)
- found = true
- break
- }
- }
- if !found && port != "" {
- return errors.Errorf("failed to find published port %q", port)
- }
- }
-
- return nil
-}
diff --git a/cmd/podman/ps.go b/cmd/podman/ps.go
deleted file mode 100644
index accd5b51a..000000000
--- a/cmd/podman/ps.go
+++ /dev/null
@@ -1,410 +0,0 @@
-package main
-
-import (
- "fmt"
- "html/template"
- "os"
- "reflect"
- "sort"
- "strings"
- "text/tabwriter"
- "time"
-
- tm "github.com/buger/goterm"
- "github.com/containers/buildah/pkg/formats"
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/cmd/podman/shared"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/docker/go-units"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-const (
- hid = "CONTAINER ID"
- himage = "IMAGE"
- hcommand = "COMMAND"
- hcreated = "CREATED"
- hstatus = "STATUS"
- hports = "PORTS"
- hnames = "NAMES"
- hsize = "SIZE"
- hinfra = "IS INFRA" //nolint
- hpod = "POD"
- hpodname = "POD NAME"
- nspid = "PID"
- nscgroup = "CGROUPNS"
- nsipc = "IPC"
- nsmnt = "MNT"
- nsnet = "NET"
- nspidns = "PIDNS"
- nsuserns = "USERNS"
- nsuts = "UTS"
-)
-
-// Type declaration and functions for sorting the PS output
-type psSorted []shared.PsContainerOutput
-
-func (a psSorted) Len() int { return len(a) }
-func (a psSorted) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
-
-type psSortedCommand struct{ psSorted }
-
-func (a psSortedCommand) Less(i, j int) bool {
- return a.psSorted[i].Command < a.psSorted[j].Command
-}
-
-type psSortedCreated struct{ psSorted }
-
-func (a psSortedCreated) Less(i, j int) bool {
- return a.psSorted[i].CreatedAt.After(a.psSorted[j].CreatedAt)
-}
-
-type psSortedId struct{ psSorted }
-
-func (a psSortedId) Less(i, j int) bool { return a.psSorted[i].ID < a.psSorted[j].ID }
-
-type psSortedImage struct{ psSorted }
-
-func (a psSortedImage) Less(i, j int) bool { return a.psSorted[i].Image < a.psSorted[j].Image }
-
-type psSortedNames struct{ psSorted }
-
-func (a psSortedNames) Less(i, j int) bool { return a.psSorted[i].Names < a.psSorted[j].Names }
-
-type psSortedPod struct{ psSorted }
-
-func (a psSortedPod) Less(i, j int) bool { return a.psSorted[i].Pod < a.psSorted[j].Pod }
-
-type psSortedRunningFor struct{ psSorted }
-
-func (a psSortedRunningFor) Less(i, j int) bool {
- return a.psSorted[j].StartedAt.After(a.psSorted[i].StartedAt)
-}
-
-type psSortedStatus struct{ psSorted }
-
-func (a psSortedStatus) Less(i, j int) bool { return a.psSorted[i].Status < a.psSorted[j].Status }
-
-type psSortedSize struct{ psSorted }
-
-func (a psSortedSize) Less(i, j int) bool {
- if a.psSorted[i].Size == nil || a.psSorted[j].Size == nil {
- return false
- }
- return a.psSorted[i].Size.RootFsSize < a.psSorted[j].Size.RootFsSize
-}
-
-var (
- psCommand cliconfig.PsValues
- psDescription = "Prints out information about the containers"
- _psCommand = cobra.Command{
- Use: "ps",
- Args: noSubArgs,
- Short: "List containers",
- Long: psDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- psCommand.InputArgs = args
- psCommand.GlobalFlags = MainGlobalOpts
- psCommand.Remote = remoteclient
- return psCmd(&psCommand)
- },
- Example: `podman ps -a
- podman ps -a --format "{{.ID}} {{.Image}} {{.Labels}} {{.Mounts}}"
- podman ps --size --sort names`,
- }
-)
-
-func psInit(command *cliconfig.PsValues) {
- command.SetHelpTemplate(HelpTemplate())
- command.SetUsageTemplate(UsageTemplate())
- flags := command.Flags()
- flags.BoolVarP(&command.All, "all", "a", false, "Show all the containers, default is only running containers")
- flags.StringSliceVarP(&command.Filter, "filter", "f", []string{}, "Filter output based on conditions given")
- flags.StringVar(&command.Format, "format", "", "Pretty-print containers to JSON or using a Go template")
- flags.IntVarP(&command.Last, "last", "n", -1, "Print the n last created containers (all states)")
- flags.BoolVarP(&command.Latest, "latest", "l", false, "Show the latest container created (all states)")
- flags.BoolVar(&command.Namespace, "namespace", false, "Display namespace information")
- flags.BoolVar(&command.Namespace, "ns", false, "Display namespace information")
- flags.BoolVar(&command.NoTrunct, "no-trunc", false, "Display the extended information")
- flags.BoolVarP(&command.Pod, "pod", "p", false, "Print the ID and name of the pod the containers are associated with")
- flags.BoolVarP(&command.Quiet, "quiet", "q", false, "Print the numeric IDs of the containers only")
- flags.BoolVarP(&command.Size, "size", "s", false, "Display the total file sizes")
- flags.StringVar(&command.Sort, "sort", "created", "Sort output by command, created, id, image, names, runningfor, size, or status")
- flags.BoolVar(&command.Sync, "sync", false, "Sync container state with OCI runtime")
- flags.UintVarP(&command.Watch, "watch", "w", 0, "Watch the ps output on an interval in seconds")
-
- markFlagHiddenForRemoteClient("latest", flags)
-}
-
-func init() {
- psCommand.Command = &_psCommand
- psInit(&psCommand)
-}
-
-func psCmd(c *cliconfig.PsValues) error {
- var (
- watch bool
- runtime *adapter.LocalRuntime
- err error
- )
-
- if c.Watch > 0 {
- watch = true
- }
-
- if c.Watch > 0 && c.Latest {
- return errors.New("the watch and latest flags cannot be used together")
- }
-
- if err := checkFlagsPassed(c); err != nil {
- return errors.Wrapf(err, "error with flags passed")
- }
- if !c.Size {
- runtime, err = adapter.GetRuntimeNoStore(getContext(), &c.PodmanCommand)
- } else {
- runtime, err = adapter.GetRuntime(getContext(), &c.PodmanCommand)
- }
- if err != nil {
- return errors.Wrapf(err, "error creating libpod runtime")
- }
-
- defer runtime.DeferredShutdown(false)
-
- if !watch {
- if err := psDisplay(c, runtime); err != nil {
- return err
- }
- } else {
- for {
- tm.Clear()
- tm.MoveCursor(1, 1)
- tm.Flush()
- if err := psDisplay(c, runtime); err != nil {
- return err
- }
- time.Sleep(time.Duration(c.Watch) * time.Second)
- tm.Clear()
- tm.MoveCursor(1, 1)
- tm.Flush()
- }
- }
- return nil
-}
-
-func printQuiet(containers []shared.PsContainerOutput) error {
- for _, c := range containers {
- fmt.Println(c.ID)
- }
- return nil
-}
-
-// checkFlagsPassed checks if mutually exclusive flags are passed together
-func checkFlagsPassed(c *cliconfig.PsValues) error {
- // latest, and last are mutually exclusive.
- if c.Last >= 0 && c.Latest {
- return errors.Errorf("last and latest are mutually exclusive")
- }
- // Filter on status forces all
- if len(c.Filter) > 0 {
- for _, filter := range c.Filter {
- splitFilter := strings.SplitN(filter, "=", 2)
- if strings.ToLower(splitFilter[0]) == "status" {
- c.All = true
- break
- }
- }
- }
- // Quiet conflicts with size and namespace and is overridden by a Go
- // template.
- if c.Quiet {
- if c.Size || c.Namespace {
- return errors.Errorf("quiet conflicts with size and namespace")
- }
- if c.Flag("format").Changed && c.Format != formats.JSONString {
- // Quiet is overridden by Go template output.
- c.Quiet = false
- }
- }
- // Size and namespace conflict with each other
- if c.Size && c.Namespace {
- return errors.Errorf("size and namespace options conflict")
- }
- return nil
-}
-
-func sortPsOutput(sortBy string, psOutput psSorted) (psSorted, error) {
- switch sortBy {
- case "id":
- sort.Sort(psSortedId{psOutput})
- case "image":
- sort.Sort(psSortedImage{psOutput})
- case "command":
- sort.Sort(psSortedCommand{psOutput})
- case "runningfor":
- sort.Sort(psSortedRunningFor{psOutput})
- case "status":
- sort.Sort(psSortedStatus{psOutput})
- case "size":
- sort.Sort(psSortedSize{psOutput})
- case "names":
- sort.Sort(psSortedNames{psOutput})
- case "created":
- sort.Sort(psSortedCreated{psOutput})
- case "pod":
- sort.Sort(psSortedPod{psOutput})
- default:
- return nil, errors.Errorf("invalid option for --sort, options are: command, created, id, image, names, runningfor, size, or status")
- }
- return psOutput, nil
-}
-
-func printFormat(format string, containers []shared.PsContainerOutput) error {
- // return immediately if no containers are present
- if len(containers) == 0 {
- return nil
- }
-
- // Use a tabwriter to align column format
- w := tabwriter.NewWriter(os.Stdout, 0, 0, 3, ' ', 0)
-
- // Make a map of the field names for the headers
- headerNames := make(map[string]string)
- v := reflect.ValueOf(containers[0])
- t := v.Type()
- for i := 0; i < t.NumField(); i++ {
- headerNames[t.Field(i).Name] = t.Field(i).Name
- }
-
- // Spit out the header if "table" is present in the format
- if strings.HasPrefix(format, "table") {
- hformat := strings.Replace(strings.TrimSpace(format[5:]), " ", "\t", -1)
- format = hformat
- headerTmpl, err := template.New("header").Parse(hformat)
- if err != nil {
- return err
- }
- if err := headerTmpl.Execute(w, headerNames); err != nil {
- return err
- }
- fmt.Fprintln(w, "")
- }
-
- // Spit out the data rows now
- dataTmpl, err := template.New("data").Parse(format)
- if err != nil {
- return err
- }
-
- for _, container := range containers {
- if err := dataTmpl.Execute(w, container); err != nil {
- return err
- }
- fmt.Fprintln(w, "")
- }
- // Flush the writer
- return w.Flush()
-}
-
-func dumpJSON(containers []shared.PsContainerOutput) error {
- b, err := json.MarshalIndent(containers, "", " ")
- if err != nil {
- return err
- }
- os.Stdout.Write(b)
- return nil
-}
-
-func psDisplay(c *cliconfig.PsValues, runtime *adapter.LocalRuntime) error {
- var (
- err error
- )
- opts := shared.PsOptions{
- All: c.All,
- Format: c.Format,
- Last: c.Last,
- Latest: c.Latest,
- NoTrunc: c.NoTrunct,
- Pod: c.Pod,
- Quiet: c.Quiet,
- Size: c.Size,
- Namespace: c.Namespace,
- Sort: c.Sort,
- Sync: c.Sync,
- }
-
- pss, err := runtime.Ps(c, opts)
- if err != nil {
- return err
- }
- // Here and down
- if opts.Sort != "" {
- pss, err = sortPsOutput(opts.Sort, pss)
- if err != nil {
- return err
- }
- }
-
- // If quiet, print only cids and return
- if opts.Quiet {
- return printQuiet(pss)
- }
-
- // If the user wants their own GO template format
- if opts.Format != "" {
- if opts.Format == "json" {
- return dumpJSON(pss)
- }
- return printFormat(opts.Format, pss)
- }
-
- // Define a tab writer with stdout as the output
- w := tabwriter.NewWriter(os.Stdout, 0, 0, 2, ' ', 0)
-
- // Output standard PS headers
- if !opts.Namespace {
- fmt.Fprintf(w, "%s\t%s\t%s\t%s\t%s\t%s\t%s", hid, himage, hcommand, hcreated, hstatus, hports, hnames)
- // User wants pod info
- if opts.Pod {
- fmt.Fprintf(w, "\t%s\t%s", hpod, hpodname)
- }
- //User wants size info
- if opts.Size {
- fmt.Fprintf(w, "\t%s", hsize)
- }
- } else {
- // Output Namespace headers
- fmt.Fprintf(w, "%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s", hid, hnames, nspid, nscgroup, nsipc, nsmnt, nsnet, nspidns, nsuserns, nsuts)
- }
-
- // Now iterate each container and output its information
- for _, container := range pss {
-
- // Standard PS output
- if !opts.Namespace {
- fmt.Fprintf(w, "\n%s\t%s\t%s\t%s\t%s\t%s\t%s", container.ID, container.Image, container.Command, container.Created, container.Status, container.Ports, container.Names)
- // User wants pod info
- if opts.Pod {
- fmt.Fprintf(w, "\t%s\t%s", container.Pod, container.PodName)
- }
- //User wants size info
- if opts.Size {
- var size string
- if container.Size == nil {
- size = units.HumanSizeWithPrecision(0, 0)
- } else {
- size = units.HumanSizeWithPrecision(float64(container.Size.RwSize), 3) + " (virtual " + units.HumanSizeWithPrecision(float64(container.Size.RootFsSize), 3) + ")"
- }
- fmt.Fprintf(w, "\t%s", size)
- }
-
- } else {
- // Print namespace information
- ns := runtime.GetNamespaces(container)
- fmt.Fprintf(w, "\n%s\t%s\t%d\t%s\t%s\t%s\t%s\t%s\t%s\t%s", container.ID, container.Names, container.Pid, ns.Cgroup, ns.IPC, ns.MNT, ns.NET, ns.PIDNS, ns.User, ns.UTS)
- }
-
- }
- fmt.Fprint(w, "\n")
- return w.Flush()
-}
diff --git a/cmd/podman/pull.go b/cmd/podman/pull.go
deleted file mode 100644
index f800d68fe..000000000
--- a/cmd/podman/pull.go
+++ /dev/null
@@ -1,200 +0,0 @@
-package main
-
-import (
- "fmt"
- "io"
- "os"
-
- buildahcli "github.com/containers/buildah/pkg/cli"
- "github.com/containers/image/v5/docker"
- dockerarchive "github.com/containers/image/v5/docker/archive"
- "github.com/containers/image/v5/transports/alltransports"
- "github.com/containers/image/v5/types"
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/libpod/image"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/containers/libpod/pkg/util"
- "github.com/docker/distribution/reference"
- "github.com/opentracing/opentracing-go"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- "github.com/spf13/cobra"
-)
-
-var (
- pullCommand cliconfig.PullValues
- pullDescription = `Pulls an image from a registry and stores it locally.
-
- An image can be pulled using its tag or digest. If a tag is not specified, the image with the 'latest' tag (if it exists) is pulled.`
- _pullCommand = &cobra.Command{
- Use: "pull [flags] IMAGE-PATH",
- Short: "Pull an image from a registry",
- Long: pullDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- pullCommand.InputArgs = args
- pullCommand.GlobalFlags = MainGlobalOpts
- pullCommand.Remote = remoteclient
- return pullCmd(&pullCommand)
- },
- Example: `podman pull imageName
- podman pull fedora:latest`,
- }
-)
-
-func init() {
-
- if !remote {
- _pullCommand.Example = fmt.Sprintf("%s\n podman pull --cert-dir image/certs --authfile temp-auths/myauths.json docker://docker.io/myrepo/finaltest", _pullCommand.Example)
-
- }
- pullCommand.Command = _pullCommand
- pullCommand.SetHelpTemplate(HelpTemplate())
- pullCommand.SetUsageTemplate(UsageTemplate())
- flags := pullCommand.Flags()
- flags.BoolVar(&pullCommand.AllTags, "all-tags", false, "All tagged images in the repository will be pulled")
- flags.StringVar(&pullCommand.Creds, "creds", "", "`Credentials` (USERNAME:PASSWORD) to use for authenticating to a registry")
- flags.BoolVarP(&pullCommand.Quiet, "quiet", "q", false, "Suppress output information when pulling images")
- flags.StringVar(&pullCommand.OverrideArch, "override-arch", "", "use `ARCH` instead of the architecture of the machine for choosing images")
- flags.StringVar(&pullCommand.OverrideOS, "override-os", "", "use `OS` instead of the running OS for choosing images")
- markFlagHidden(flags, "override-os")
- // Disabled flags for the remote client
- if !remote {
- flags.StringVar(&pullCommand.Authfile, "authfile", buildahcli.GetDefaultAuthFile(), "Path of the authentication file. Use REGISTRY_AUTH_FILE environment variable to override")
- flags.StringVar(&pullCommand.CertDir, "cert-dir", "", "`Pathname` of a directory containing TLS certificates and keys")
- flags.StringVar(&pullCommand.SignaturePolicy, "signature-policy", "", "`Pathname` of signature policy file (not usually used)")
- flags.BoolVar(&pullCommand.TlsVerify, "tls-verify", true, "Require HTTPS and verify certificates when contacting registries")
- markFlagHidden(flags, "signature-policy")
- }
-}
-
-// pullCmd gets the data from the command line and calls pullImage
-// to copy an image from a registry to a local machine
-func pullCmd(c *cliconfig.PullValues) (retError error) {
- defer func() {
- if retError != nil && exitCode == 0 {
- exitCode = 1
- }
- }()
- if c.Bool("trace") {
- span, _ := opentracing.StartSpanFromContext(Ctx, "pullCmd")
- defer span.Finish()
- }
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
-
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- args := c.InputArgs
- if len(args) == 0 {
- return errors.Errorf("an image name must be specified")
- }
- if len(args) > 1 {
- return errors.Errorf("too many arguments. Requires exactly 1")
- }
-
- if c.Authfile != "" {
- if _, err := os.Stat(c.Authfile); err != nil {
- return errors.Wrapf(err, "error getting authfile %s", c.Authfile)
- }
- }
-
- ctx := getContext()
- imageName := args[0]
-
- imageRef, err := alltransports.ParseImageName(imageName)
- if err != nil {
- imageRef, err = alltransports.ParseImageName(fmt.Sprintf("%s://%s", docker.Transport.Name(), imageName))
- if err != nil {
- return errors.Errorf("invalid image reference %q", imageName)
- }
- }
-
- var writer io.Writer
- if !c.Quiet {
- writer = os.Stderr
- }
- // Special-case for docker-archive which allows multiple tags.
- if imageRef.Transport().Name() == dockerarchive.Transport.Name() {
- newImage, err := runtime.LoadFromArchiveReference(getContext(), imageRef, c.SignaturePolicy, writer)
- if err != nil {
- return errors.Wrapf(err, "error pulling image %q", imageName)
- }
- fmt.Println(newImage[0].ID())
- return nil
- }
-
- var registryCreds *types.DockerAuthConfig
- if c.Flag("creds").Changed {
- creds, err := util.ParseRegistryCreds(c.Creds)
- if err != nil {
- return err
- }
- registryCreds = creds
- }
- dockerRegistryOptions := image.DockerRegistryOptions{
- DockerRegistryCreds: registryCreds,
- DockerCertPath: c.CertDir,
- OSChoice: c.OverrideOS,
- ArchitectureChoice: c.OverrideArch,
- }
- if c.IsSet("tls-verify") {
- dockerRegistryOptions.DockerInsecureSkipTLSVerify = types.NewOptionalBool(!c.TlsVerify)
- }
-
- if !c.Bool("all-tags") {
- newImage, err := runtime.New(getContext(), imageName, c.SignaturePolicy, c.Authfile, writer, &dockerRegistryOptions, image.SigningOptions{}, nil, util.PullImageAlways)
- if err != nil {
- return errors.Wrapf(err, "error pulling image %q", imageName)
- }
- fmt.Println(newImage.ID())
- return nil
- }
-
- // --all-tags requires the docker transport
- if imageRef.Transport().Name() != docker.Transport.Name() {
- return errors.New("--all-tags requires docker transport")
- }
-
- // all-tags doesn't work with a tagged reference, so let's check early
- namedRef, err := reference.Parse(imageName)
- if err != nil {
- return errors.Wrapf(err, "error parsing %q", imageName)
- }
- if _, isTagged := namedRef.(reference.Tagged); isTagged {
- return errors.New("--all-tags requires a reference without a tag")
-
- }
-
- systemContext := image.GetSystemContext("", c.Authfile, false)
- tags, err := docker.GetRepositoryTags(ctx, systemContext, imageRef)
- if err != nil {
- return errors.Wrapf(err, "error getting repository tags")
- }
-
- var foundIDs []string
- for _, tag := range tags {
- name := imageName + ":" + tag
- newImage, err := runtime.New(getContext(), name, c.SignaturePolicy, c.Authfile, writer, &dockerRegistryOptions, image.SigningOptions{}, nil, util.PullImageAlways)
- if err != nil {
- logrus.Errorf("error pulling image %q", name)
- continue
- }
- foundIDs = append(foundIDs, newImage.ID())
- }
-
- if len(tags) != len(foundIDs) {
- return errors.Errorf("error pulling image %q", imageName)
- }
-
- if len(foundIDs) > 1 {
- fmt.Println("Pulled Images:")
- }
- for _, id := range foundIDs {
- fmt.Println(id)
- }
-
- return nil
-}
diff --git a/cmd/podman/push.go b/cmd/podman/push.go
deleted file mode 100644
index b078959ba..000000000
--- a/cmd/podman/push.go
+++ /dev/null
@@ -1,155 +0,0 @@
-package main
-
-import (
- "fmt"
- "io"
- "os"
- "strings"
-
- buildahcli "github.com/containers/buildah/pkg/cli"
- "github.com/containers/image/v5/directory"
- "github.com/containers/image/v5/manifest"
- "github.com/containers/image/v5/types"
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/libpod/image"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/containers/libpod/pkg/util"
- imgspecv1 "github.com/opencontainers/image-spec/specs-go/v1"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- pushCommand cliconfig.PushValues
- pushDescription = fmt.Sprintf(`Pushes an image to a specified location.
-
- The Image "DESTINATION" uses a "transport":"details" format. See podman-push(1) section "DESTINATION" for the expected format.`)
-
- _pushCommand = &cobra.Command{
- Use: "push [flags] IMAGE REGISTRY",
- Short: "Push an image to a specified destination",
- Long: pushDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- pushCommand.InputArgs = args
- pushCommand.GlobalFlags = MainGlobalOpts
- pushCommand.Remote = remoteclient
- return pushCmd(&pushCommand)
- },
- Example: `podman push imageID docker://registry.example.com/repository:tag
- podman push imageID oci-archive:/path/to/layout:image:tag`,
- }
-)
-
-func init() {
- if !remote {
- _pushCommand.Example = fmt.Sprintf("%s\n podman push --authfile temp-auths/myauths.json alpine docker://docker.io/myrepo/alpine", _pushCommand.Example)
-
- }
-
- pushCommand.Command = _pushCommand
- pushCommand.SetHelpTemplate(HelpTemplate())
- pushCommand.SetUsageTemplate(UsageTemplate())
- flags := pushCommand.Flags()
- flags.StringVar(&pushCommand.Creds, "creds", "", "`Credentials` (USERNAME:PASSWORD) to use for authenticating to a registry")
- flags.StringVar(&pushCommand.Digestfile, "digestfile", "", "After copying the image, write the digest of the resulting image to the file")
- flags.StringVarP(&pushCommand.Format, "format", "f", "", "Manifest type (oci, v2s1, or v2s2) to use when pushing an image using the 'dir:' transport (default is manifest type of source)")
- flags.BoolVarP(&pushCommand.Quiet, "quiet", "q", false, "Don't output progress information when pushing images")
- flags.BoolVar(&pushCommand.RemoveSignatures, "remove-signatures", false, "Discard any pre-existing signatures in the image")
- flags.StringVar(&pushCommand.SignBy, "sign-by", "", "Add a signature at the destination using the specified key")
-
- // Disabled flags for the remote client
- if !remote {
- flags.StringVar(&pushCommand.Authfile, "authfile", buildahcli.GetDefaultAuthFile(), "Path of the authentication file. Use REGISTRY_AUTH_FILE environment variable to override")
- flags.StringVar(&pushCommand.CertDir, "cert-dir", "", "`Pathname` of a directory containing TLS certificates and keys")
- flags.BoolVar(&pushCommand.Compress, "compress", false, "Compress tarball image layers when pushing to a directory using the 'dir' transport. (default is same compression type as source)")
- flags.StringVar(&pushCommand.SignaturePolicy, "signature-policy", "", "`Pathname` of signature policy file (not usually used)")
- flags.BoolVar(&pushCommand.TlsVerify, "tls-verify", true, "Require HTTPS and verify certificates when contacting registries")
- markFlagHidden(flags, "signature-policy")
- }
-}
-
-func pushCmd(c *cliconfig.PushValues) error {
- var (
- registryCreds *types.DockerAuthConfig
- destName string
- )
-
- if c.Authfile != "" {
- if _, err := os.Stat(c.Authfile); err != nil {
- return errors.Wrapf(err, "error getting authfile %s", c.Authfile)
- }
- }
-
- args := c.InputArgs
- if len(args) == 0 || len(args) > 2 {
- return errors.New("podman push requires at least one image name, and optionally a second to specify a different destination name")
- }
- srcName := args[0]
- switch len(args) {
- case 1:
- destName = args[0]
- case 2:
- destName = args[1]
- }
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not create runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- // --compress and --format can only be used for the "dir" transport
- splitArg := strings.SplitN(destName, ":", 2)
-
- if c.IsSet("compress") || c.Flag("format").Changed {
- if splitArg[0] != directory.Transport.Name() {
- return errors.Errorf("--compress and --format can be set only when pushing to a directory using the 'dir' transport")
- }
- }
-
- certPath := c.CertDir
- removeSignatures := c.RemoveSignatures
- signBy := c.SignBy
-
- if c.Flag("creds").Changed {
- creds, err := util.ParseRegistryCreds(c.Creds)
- if err != nil {
- return err
- }
- registryCreds = creds
- }
-
- var writer io.Writer
- if !c.Quiet {
- writer = os.Stderr
- }
-
- var manifestType string
- if c.Flag("format").Changed {
- switch c.String("format") {
- case "oci":
- manifestType = imgspecv1.MediaTypeImageManifest
- case "v2s1":
- manifestType = manifest.DockerV2Schema1SignedMediaType
- case "v2s2", "docker":
- manifestType = manifest.DockerV2Schema2MediaType
- default:
- return fmt.Errorf("unknown format %q. Choose on of the supported formats: 'oci', 'v2s1', or 'v2s2'", c.String("format"))
- }
- }
-
- dockerRegistryOptions := image.DockerRegistryOptions{
- DockerRegistryCreds: registryCreds,
- DockerCertPath: certPath,
- }
- if c.IsSet("tls-verify") {
- dockerRegistryOptions.DockerInsecureSkipTLSVerify = types.NewOptionalBool(!c.TlsVerify)
- }
-
- so := image.SigningOptions{
- RemoveSignatures: removeSignatures,
- SignBy: signBy,
- }
-
- return runtime.Push(getContext(), srcName, destName, manifestType, c.Authfile, c.String("digestfile"), c.SignaturePolicy, writer, c.Compress, so, &dockerRegistryOptions, nil)
-}
diff --git a/cmd/podman/refresh.go b/cmd/podman/refresh.go
deleted file mode 100644
index b21a4ff79..000000000
--- a/cmd/podman/refresh.go
+++ /dev/null
@@ -1,65 +0,0 @@
-package main
-
-import (
- "fmt"
- "os"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/cmd/podman/libpodruntime"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- refreshCommand cliconfig.RefreshValues
- refreshDescription = `Resets the state of all containers to handle database changes after a Podman upgrade.
-
- All running containers will be restarted.
-`
- _refreshCommand = &cobra.Command{
- Use: "refresh",
- Args: noSubArgs,
- Short: "Refresh container state",
- Long: refreshDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- refreshCommand.InputArgs = args
- refreshCommand.GlobalFlags = MainGlobalOpts
- refreshCommand.Remote = remoteclient
- return refreshCmd(&refreshCommand)
- },
- }
-)
-
-func init() {
- _refreshCommand.Hidden = true
- refreshCommand.Command = _refreshCommand
- refreshCommand.SetHelpTemplate(HelpTemplate())
- refreshCommand.SetUsageTemplate(UsageTemplate())
-}
-
-func refreshCmd(c *cliconfig.RefreshValues) error {
- runtime, err := libpodruntime.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "error creating libpod runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- allCtrs, err := runtime.GetAllContainers()
- if err != nil {
- return err
- }
-
- ctx := getContext()
-
- var lastError error
- for _, ctr := range allCtrs {
- if err := ctr.Refresh(ctx); err != nil {
- if lastError != nil {
- fmt.Fprintln(os.Stderr, lastError)
- }
- lastError = errors.Wrapf(err, "error refreshing container %s state", ctr.ID())
- }
- }
-
- return lastError
-}
diff --git a/cmd/podmanV2/registry/config.go b/cmd/podman/registry/config.go
index 358f9172e..358f9172e 100644
--- a/cmd/podmanV2/registry/config.go
+++ b/cmd/podman/registry/config.go
diff --git a/cmd/podmanV2/registry/registry.go b/cmd/podman/registry/registry.go
index 1c5e5d21b..1c5e5d21b 100644
--- a/cmd/podmanV2/registry/registry.go
+++ b/cmd/podman/registry/registry.go
diff --git a/cmd/podmanV2/registry/remote.go b/cmd/podman/registry/remote.go
index 5378701e7..5378701e7 100644
--- a/cmd/podmanV2/registry/remote.go
+++ b/cmd/podman/registry/remote.go
diff --git a/cmd/podman/remoteclientconfig/config.go b/cmd/podman/remoteclientconfig/config.go
deleted file mode 100644
index 3faa7954a..000000000
--- a/cmd/podman/remoteclientconfig/config.go
+++ /dev/null
@@ -1,24 +0,0 @@
-package remoteclientconfig
-
-const remoteConfigFileName string = "podman-remote.conf"
-
-// RemoteConfig describes the podman remote configuration file
-type RemoteConfig struct {
- Connections map[string]RemoteConnection
-}
-
-// RemoteConnection describes the attributes of a podman-remote endpoint
-type RemoteConnection struct {
- Destination string `toml:"destination"`
- Username string `toml:"username"`
- IsDefault bool `toml:"default"`
- Port int `toml:"port"`
- IdentityFile string `toml:"identity_file"`
- IgnoreHosts bool `toml:"ignore_hosts"`
-}
-
-// GetConfigFilePath is a simple helper to export the configuration file's
-// path based on arch, etc
-func GetConfigFilePath() string {
- return getConfigFilePath()
-}
diff --git a/cmd/podman/remoteclientconfig/config_darwin.go b/cmd/podman/remoteclientconfig/config_darwin.go
deleted file mode 100644
index dddb217ac..000000000
--- a/cmd/podman/remoteclientconfig/config_darwin.go
+++ /dev/null
@@ -1,12 +0,0 @@
-package remoteclientconfig
-
-import (
- "path/filepath"
-
- "github.com/containers/storage/pkg/homedir"
-)
-
-func getConfigFilePath() string {
- homeDir := homedir.Get()
- return filepath.Join(homeDir, ".config", "containers", remoteConfigFileName)
-}
diff --git a/cmd/podman/remoteclientconfig/config_linux.go b/cmd/podman/remoteclientconfig/config_linux.go
deleted file mode 100644
index afcf73e6d..000000000
--- a/cmd/podman/remoteclientconfig/config_linux.go
+++ /dev/null
@@ -1,17 +0,0 @@
-package remoteclientconfig
-
-import (
- "os"
- "path/filepath"
-
- "github.com/containers/storage/pkg/homedir"
-)
-
-func getConfigFilePath() string {
- path := os.Getenv("XDG_CONFIG_HOME")
- if path == "" {
- homeDir := homedir.Get()
- path = filepath.Join(homeDir, ".config")
- }
- return filepath.Join(path, "containers", remoteConfigFileName)
-}
diff --git a/cmd/podman/remoteclientconfig/config_windows.go b/cmd/podman/remoteclientconfig/config_windows.go
deleted file mode 100644
index 3a8f3bc7a..000000000
--- a/cmd/podman/remoteclientconfig/config_windows.go
+++ /dev/null
@@ -1,12 +0,0 @@
-package remoteclientconfig
-
-import (
- "path/filepath"
-
- "github.com/containers/storage/pkg/homedir"
-)
-
-func getConfigFilePath() string {
- homeDir := homedir.Get()
- return filepath.Join(homeDir, "AppData", "podman", remoteConfigFileName)
-}
diff --git a/cmd/podman/remoteclientconfig/configfile.go b/cmd/podman/remoteclientconfig/configfile.go
deleted file mode 100644
index 56a868733..000000000
--- a/cmd/podman/remoteclientconfig/configfile.go
+++ /dev/null
@@ -1,64 +0,0 @@
-package remoteclientconfig
-
-import (
- "io"
-
- "github.com/BurntSushi/toml"
- "github.com/pkg/errors"
-)
-
-// ReadRemoteConfig takes an io.Reader representing the remote configuration
-// file and returns a remoteconfig
-func ReadRemoteConfig(reader io.Reader) (*RemoteConfig, error) {
- var remoteConfig RemoteConfig
- // the configuration file does not exist
- if reader == nil {
- return &remoteConfig, ErrNoConfigationFile
- }
- _, err := toml.DecodeReader(reader, &remoteConfig)
- if err != nil {
- return nil, err
- }
- // We need to validate each remote connection has fields filled out
- for name, conn := range remoteConfig.Connections {
- if len(conn.Destination) < 1 {
- return nil, errors.Errorf("connection %q has no destination defined", name)
- }
- }
- return &remoteConfig, err
-}
-
-// GetDefault returns the default RemoteConnection. If there is only one
-// connection, we assume it is the default as well
-func (r *RemoteConfig) GetDefault() (*RemoteConnection, error) {
- if len(r.Connections) == 0 {
- return nil, ErrNoDefinedConnections
- }
- for _, v := range r.Connections {
- v := v
- if len(r.Connections) == 1 {
- // if there is only one defined connection, we assume it is
- // the default whether tagged as such or not
- return &v, nil
- }
- if v.IsDefault {
- return &v, nil
- }
- }
- return nil, ErrNoDefaultConnection
-}
-
-// GetRemoteConnection "looks up" a remote connection by name and returns it in the
-// form of a RemoteConnection
-func (r *RemoteConfig) GetRemoteConnection(name string) (*RemoteConnection, error) {
- if len(r.Connections) == 0 {
- return nil, ErrNoDefinedConnections
- }
- for k, v := range r.Connections {
- v := v
- if k == name {
- return &v, nil
- }
- }
- return nil, errors.Wrap(ErrConnectionNotFound, name)
-}
diff --git a/cmd/podman/remoteclientconfig/configfile_test.go b/cmd/podman/remoteclientconfig/configfile_test.go
deleted file mode 100644
index 4ad2c2100..000000000
--- a/cmd/podman/remoteclientconfig/configfile_test.go
+++ /dev/null
@@ -1,212 +0,0 @@
-package remoteclientconfig
-
-import (
- "io"
- "reflect"
- "strings"
- "testing"
-)
-
-var goodConfig = `
-[connections]
-
-[connections.homer]
-destination = "192.168.1.1"
-username = "myuser"
-port = 22
-default = true
-
-[connections.bart]
-destination = "foobar.com"
-username = "root"
-port = 22
-`
-var noDest = `
-[connections]
-
-[connections.homer]
-destination = "192.168.1.1"
-username = "myuser"
-default = true
-port = 22
-
-[connections.bart]
-username = "root"
-port = 22
-`
-
-var noUser = `
-[connections]
-
-[connections.homer]
-destination = "192.168.1.1"
-port = 22
-`
-
-func makeGoodResult() *RemoteConfig {
- var goodConnections = make(map[string]RemoteConnection)
- goodConnections["homer"] = RemoteConnection{
- Destination: "192.168.1.1",
- Username: "myuser",
- IsDefault: true,
- Port: 22,
- }
- goodConnections["bart"] = RemoteConnection{
- Destination: "foobar.com",
- Username: "root",
- Port: 22,
- }
- var goodResult = RemoteConfig{
- Connections: goodConnections,
- }
- return &goodResult
-}
-
-func makeNoUserResult() *RemoteConfig {
- var goodConnections = make(map[string]RemoteConnection)
- goodConnections["homer"] = RemoteConnection{
- Destination: "192.168.1.1",
- Port: 22,
- }
- var goodResult = RemoteConfig{
- Connections: goodConnections,
- }
- return &goodResult
-}
-
-func TestReadRemoteConfig(t *testing.T) {
- type args struct {
- reader io.Reader
- }
- tests := []struct {
- name string
- args args
- want *RemoteConfig
- wantErr bool
- }{
- // good test should pass
- {"good", args{reader: strings.NewReader(goodConfig)}, makeGoodResult(), false},
- // a connection with no destination is an error
- {"nodest", args{reader: strings.NewReader(noDest)}, nil, true},
- // a connection with no user is OK
- {"nouser", args{reader: strings.NewReader(noUser)}, makeNoUserResult(), false},
- }
- for _, tt := range tests {
- test := tt
- t.Run(tt.name, func(t *testing.T) {
- got, err := ReadRemoteConfig(test.args.reader)
- if (err != nil) != test.wantErr {
- t.Errorf("ReadRemoteConfig() error = %v, wantErr %v", err, test.wantErr)
- return
- }
- if !reflect.DeepEqual(got, test.want) {
- t.Errorf("ReadRemoteConfig() = %v, want %v", got, test.want)
- }
- })
- }
-}
-
-func TestRemoteConfig_GetDefault(t *testing.T) {
- good := make(map[string]RemoteConnection)
- good["homer"] = RemoteConnection{
- Username: "myuser",
- Destination: "192.168.1.1",
- IsDefault: true,
- }
- good["bart"] = RemoteConnection{
- Username: "root",
- Destination: "foobar.com",
- }
- noDefault := make(map[string]RemoteConnection)
- noDefault["homer"] = RemoteConnection{
- Username: "myuser",
- Destination: "192.168.1.1",
- }
- noDefault["bart"] = RemoteConnection{
- Username: "root",
- Destination: "foobar.com",
- }
- single := make(map[string]RemoteConnection)
- single["homer"] = RemoteConnection{
- Username: "myuser",
- Destination: "192.168.1.1",
- }
-
- none := make(map[string]RemoteConnection)
-
- type fields struct {
- Connections map[string]RemoteConnection
- }
- tests := []struct {
- name string
- fields fields
- want *RemoteConnection
- wantErr bool
- }{
- // A good toml should return the connection that is marked isDefault
- {"good", fields{Connections: makeGoodResult().Connections}, &RemoteConnection{"192.168.1.1", "myuser", true, 22, "", false}, false},
- // If nothing is marked as isDefault and there is more than one connection, error should occur
- {"nodefault", fields{Connections: noDefault}, nil, true},
- // if nothing is marked as isDefault but there is only one connection, the one connection is considered the default
- {"single", fields{Connections: none}, nil, true},
- }
- for _, tt := range tests {
- test := tt
- t.Run(test.name, func(t *testing.T) {
- r := &RemoteConfig{
- Connections: test.fields.Connections,
- }
- got, err := r.GetDefault()
- if (err != nil) != test.wantErr {
- t.Errorf("RemoteConfig.GetDefault() error = %v, wantErr %v", err, test.wantErr)
- return
- }
- if !reflect.DeepEqual(got, test.want) {
- t.Errorf("RemoteConfig.GetDefault() = %v, want %v", got, test.want)
- }
- })
- }
-}
-
-func TestRemoteConfig_GetRemoteConnection(t *testing.T) {
- type fields struct {
- Connections map[string]RemoteConnection
- }
- type args struct {
- name string
- }
-
- blank := make(map[string]RemoteConnection)
- tests := []struct {
- name string
- fields fields
- args args
- want *RemoteConnection
- wantErr bool
- }{
- // Good connection
- {"goodhomer", fields{Connections: makeGoodResult().Connections}, args{name: "homer"}, &RemoteConnection{"192.168.1.1", "myuser", true, 22, "", false}, false},
- // Good connection
- {"goodbart", fields{Connections: makeGoodResult().Connections}, args{name: "bart"}, &RemoteConnection{"foobar.com", "root", false, 22, "", false}, false},
- // Getting an unknown connection should result in error
- {"noexist", fields{Connections: makeGoodResult().Connections}, args{name: "foobar"}, nil, true},
- // Getting a connection when there are none should result in an error
- {"none", fields{Connections: blank}, args{name: "foobar"}, nil, true},
- }
- for _, tt := range tests {
- test := tt
- t.Run(test.name, func(t *testing.T) {
- r := &RemoteConfig{
- Connections: test.fields.Connections,
- }
- got, err := r.GetRemoteConnection(test.args.name)
- if (err != nil) != test.wantErr {
- t.Errorf("RemoteConfig.GetRemoteConnection() error = %v, wantErr %v", err, test.wantErr)
- return
- }
- if !reflect.DeepEqual(got, test.want) {
- t.Errorf("RemoteConfig.GetRemoteConnection() = %v, want %v", got, test.want)
- }
- })
- }
-}
diff --git a/cmd/podman/remoteclientconfig/errors.go b/cmd/podman/remoteclientconfig/errors.go
deleted file mode 100644
index 2689d3b49..000000000
--- a/cmd/podman/remoteclientconfig/errors.go
+++ /dev/null
@@ -1,14 +0,0 @@
-package remoteclientconfig
-
-import "errors"
-
-var (
- // ErrNoDefaultConnection no default connection is defined in the podman-remote.conf file
- ErrNoDefaultConnection = errors.New("no default connection is defined")
- // ErrNoDefinedConnections no connections are defined in the podman-remote.conf file
- ErrNoDefinedConnections = errors.New("no remote connections have been defined")
- // ErrConnectionNotFound unable to lookup connection by name
- ErrConnectionNotFound = errors.New("remote connection not found by name")
- // ErrNoConfigationFile no config file found
- ErrNoConfigationFile = errors.New("no configuration file found")
-)
diff --git a/cmd/podmanV2/report/diff.go b/cmd/podman/report/diff.go
index b36189d75..b36189d75 100644
--- a/cmd/podmanV2/report/diff.go
+++ b/cmd/podman/report/diff.go
diff --git a/cmd/podman/reset.go b/cmd/podman/reset.go
deleted file mode 100644
index 203399047..000000000
--- a/cmd/podman/reset.go
+++ /dev/null
@@ -1,71 +0,0 @@
-package main
-
-import (
- "bufio"
- "fmt"
- "os"
- "strings"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- systemResetCommand cliconfig.SystemResetValues
- systemResetDescription = `Reset podman storage back to default state"
-
- All containers will be stopped and removed, and all images, volumes and container content will be removed.
-`
- _systemResetCommand = &cobra.Command{
- Use: "reset",
- Args: noSubArgs,
- Short: "Reset podman storage",
- Long: systemResetDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- systemResetCommand.InputArgs = args
- systemResetCommand.GlobalFlags = MainGlobalOpts
- systemResetCommand.Remote = remoteclient
- return systemResetCmd(&systemResetCommand)
- },
- }
-)
-
-func init() {
- systemResetCommand.Command = _systemResetCommand
- flags := systemResetCommand.Flags()
- flags.BoolVarP(&systemResetCommand.Force, "force", "f", false, "Do not prompt for confirmation")
-
- systemResetCommand.SetHelpTemplate(HelpTemplate())
- systemResetCommand.SetUsageTemplate(UsageTemplate())
-}
-
-func systemResetCmd(c *cliconfig.SystemResetValues) error {
- // Prompt for confirmation if --force is not set
- if !c.Force {
- reader := bufio.NewReader(os.Stdin)
- fmt.Print(`
-WARNING! This will remove:
- - all containers
- - all pods
- - all images
- - all build cache
-Are you sure you want to continue? [y/N] `)
- answer, err := reader.ReadString('\n')
- if err != nil {
- return errors.Wrapf(err, "error reading input")
- }
- if strings.ToLower(answer)[0] != 'y' {
- return nil
- }
- }
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "error creating libpod runtime")
- }
- // No shutdown, since storage will be destroyed when command completes
-
- return runtime.Reset()
-}
diff --git a/cmd/podman/restart.go b/cmd/podman/restart.go
deleted file mode 100644
index 4ee043442..000000000
--- a/cmd/podman/restart.go
+++ /dev/null
@@ -1,77 +0,0 @@
-package main
-
-import (
- "fmt"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/libpod/define"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- restartCommand cliconfig.RestartValues
- restartDescription = fmt.Sprintf(`Restarts one or more running containers. The container ID or name can be used.
-
- A timeout before forcibly stopping can be set, but defaults to %d seconds.`, defaultContainerConfig.Engine.StopTimeout)
- _restartCommand = &cobra.Command{
- Use: "restart [flags] CONTAINER [CONTAINER...]",
- Short: "Restart one or more containers",
- Long: restartDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- restartCommand.InputArgs = args
- restartCommand.GlobalFlags = MainGlobalOpts
- return restartCmd(&restartCommand)
- },
- Args: func(cmd *cobra.Command, args []string) error {
- return checkAllLatestAndCIDFile(cmd, args, false, false)
- },
- Example: `podman restart ctrID
- podman restart --latest
- podman restart ctrID1 ctrID2`,
- }
-)
-
-func init() {
- restartCommand.Command = _restartCommand
- restartCommand.SetHelpTemplate(HelpTemplate())
- restartCommand.SetUsageTemplate(UsageTemplate())
- flags := restartCommand.Flags()
- flags.BoolVarP(&restartCommand.All, "all", "a", false, "Restart all non-running containers")
- flags.BoolVarP(&restartCommand.Latest, "latest", "l", false, "Act on the latest container podman is aware of")
- flags.BoolVar(&restartCommand.Running, "running", false, "Restart only running containers when --all is used")
- flags.UintVarP(&restartCommand.Timeout, "time", "t", defaultContainerConfig.Engine.StopTimeout, "Seconds to wait for stop before killing the container")
-
- markFlagHiddenForRemoteClient("latest", flags)
- flags.SetNormalizeFunc(aliasFlags)
-}
-
-func restartCmd(c *cliconfig.RestartValues) error {
- all := c.All
- if len(c.InputArgs) < 1 && !c.Latest && !all {
- return errors.Wrapf(define.ErrInvalidArg, "you must provide at least one container name or ID")
- }
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "error creating libpod runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- ok, failures, err := runtime.Restart(getContext(), c)
- if err != nil {
- if errors.Cause(err) == define.ErrNoSuchCtr {
- if len(c.InputArgs) > 1 {
- exitCode = define.ExecErrorCodeGeneric
- } else {
- exitCode = 1
- }
- }
- return err
- }
- if len(failures) > 0 {
- exitCode = define.ExecErrorCodeGeneric
- }
- return printCmdResults(ok, failures)
-}
diff --git a/cmd/podman/restore.go b/cmd/podman/restore.go
deleted file mode 100644
index a8db7fa94..000000000
--- a/cmd/podman/restore.go
+++ /dev/null
@@ -1,96 +0,0 @@
-package main
-
-import (
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/containers/libpod/pkg/rootless"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- restoreCommand cliconfig.RestoreValues
- restoreDescription = `
- podman container restore
-
- Restores a container from a checkpoint. The container name or ID can be used.
-`
- _restoreCommand = &cobra.Command{
- Use: "restore [flags] CONTAINER [CONTAINER...]",
- Short: "Restores one or more containers from a checkpoint",
- Long: restoreDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- restoreCommand.InputArgs = args
- restoreCommand.GlobalFlags = MainGlobalOpts
- restoreCommand.Remote = remoteclient
- return restoreCmd(&restoreCommand, cmd)
- },
- Args: func(cmd *cobra.Command, args []string) error {
- return checkAllLatestAndCIDFile(cmd, args, true, false)
- },
- Example: `podman container restore ctrID
- podman container restore --latest
- podman container restore --all`,
- }
-)
-
-func init() {
- restoreCommand.Command = _restoreCommand
- restoreCommand.SetHelpTemplate(HelpTemplate())
- restoreCommand.SetUsageTemplate(UsageTemplate())
- flags := restoreCommand.Flags()
- flags.BoolVarP(&restoreCommand.All, "all", "a", false, "Restore all checkpointed containers")
- flags.BoolVarP(&restoreCommand.Keep, "keep", "k", false, "Keep all temporary checkpoint files")
- flags.BoolVarP(&restoreCommand.Latest, "latest", "l", false, "Act on the latest container podman is aware of")
- flags.BoolVar(&restoreCommand.TcpEstablished, "tcp-established", false, "Restore a container with established TCP connections")
- flags.StringVarP(&restoreCommand.Import, "import", "i", "", "Restore from exported checkpoint archive (tar.gz)")
- flags.StringVarP(&restoreCommand.Name, "name", "n", "", "Specify new name for container restored from exported checkpoint (only works with --import)")
- flags.BoolVar(&restoreCommand.IgnoreRootfs, "ignore-rootfs", false, "Do not apply root file-system changes when importing from exported checkpoint")
- flags.BoolVar(&restoreCommand.IgnoreStaticIP, "ignore-static-ip", false, "Ignore IP address set via --static-ip")
- flags.BoolVar(&restoreCommand.IgnoreStaticMAC, "ignore-static-mac", false, "Ignore MAC address set via --mac-address")
-
- markFlagHiddenForRemoteClient("latest", flags)
-}
-
-func restoreCmd(c *cliconfig.RestoreValues, cmd *cobra.Command) error {
- if rootless.IsRootless() {
- return errors.New("restoring a container requires root")
- }
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- if c.Import == "" && c.IgnoreRootfs {
- return errors.Errorf("--ignore-rootfs can only be used with --import")
- }
-
- if c.Import == "" && c.Name != "" {
- return errors.Errorf("--name can only be used with --import")
- }
-
- if c.Name != "" && c.TcpEstablished {
- return errors.Errorf("--tcp-established cannot be used with --name")
- }
-
- argLen := len(c.InputArgs)
- if c.Import != "" {
- if c.All || c.Latest {
- return errors.Errorf("Cannot use --import with --all or --latest")
- }
- if argLen > 0 {
- return errors.Errorf("Cannot use --import with positional arguments")
- }
- }
-
- if (c.All || c.Latest) && argLen > 0 {
- return errors.Errorf("no arguments are needed with --all or --latest")
- }
- if argLen < 1 && !c.All && !c.Latest && c.Import == "" {
- return errors.Errorf("you must provide at least one name or id")
- }
-
- return runtime.Restore(getContext(), c)
-}
diff --git a/cmd/podman/rm.go b/cmd/podman/rm.go
deleted file mode 100644
index 644b0ef76..000000000
--- a/cmd/podman/rm.go
+++ /dev/null
@@ -1,90 +0,0 @@
-package main
-
-import (
- "fmt"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/libpod/define"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- "github.com/spf13/cobra"
-)
-
-var (
- rmCommand cliconfig.RmValues
- rmDescription = fmt.Sprintf(`Removes one or more containers from the host. The container name or ID can be used.
-
- Command does not remove images. Running or unusable containers will not be removed without the -f option.`)
- _rmCommand = &cobra.Command{
- Use: "rm [flags] CONTAINER [CONTAINER...]",
- Short: "Remove one or more containers",
- Long: rmDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- rmCommand.InputArgs = args
- rmCommand.GlobalFlags = MainGlobalOpts
- rmCommand.Remote = remoteclient
- return rmCmd(&rmCommand)
- },
- Args: func(cmd *cobra.Command, args []string) error {
- return checkAllLatestAndCIDFile(cmd, args, false, true)
- },
- Example: `podman rm imageID
- podman rm mywebserver myflaskserver 860a4b23
- podman rm --force --all
- podman rm -f c684f0d469f2`,
- }
-)
-
-func init() {
- rmCommand.Command = _rmCommand
- rmCommand.SetHelpTemplate(HelpTemplate())
- rmCommand.SetUsageTemplate(UsageTemplate())
- flags := rmCommand.Flags()
- flags.BoolVarP(&rmCommand.All, "all", "a", false, "Remove all containers")
- flags.BoolVarP(&rmCommand.Ignore, "ignore", "i", false, "Ignore errors when a specified container is missing")
- flags.BoolVarP(&rmCommand.Force, "force", "f", false, "Force removal of a running or unusable container. The default is false")
- flags.BoolVarP(&rmCommand.Latest, "latest", "l", false, "Act on the latest container podman is aware of")
- flags.BoolVar(&rmCommand.Storage, "storage", false, "Remove container from storage library")
- flags.BoolVarP(&rmCommand.Volumes, "volumes", "v", false, "Remove anonymous volumes associated with the container")
- flags.StringArrayVarP(&rmCommand.CIDFiles, "cidfile", "", nil, "Read the container ID from the file")
- markFlagHiddenForRemoteClient("ignore", flags)
- markFlagHiddenForRemoteClient("cidfile", flags)
- markFlagHiddenForRemoteClient("latest", flags)
- markFlagHiddenForRemoteClient("storage", flags)
-}
-
-// rmCmd removes one or more containers
-func rmCmd(c *cliconfig.RmValues) error {
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- // Storage conflicts with --all/--latest/--volumes/--cidfile/--ignore
- if c.Storage {
- if c.All || c.Ignore || c.Latest || c.Volumes || c.CIDFiles != nil {
- return errors.Errorf("--storage conflicts with --volumes, --all, --latest, --ignore and --cidfile")
- }
- }
-
- ok, failures, err := runtime.RemoveContainers(getContext(), c)
- if err != nil {
- if len(c.InputArgs) < 2 {
- exitCode = setExitCode(err)
- }
- return err
- }
-
- if len(failures) > 0 {
- for _, err := range failures {
- if errors.Cause(err) == define.ErrWillDeadlock {
- logrus.Errorf("Potential deadlock detected - please run 'podman system renumber' to resolve")
- }
- exitCode = setExitCode(err)
- }
- }
-
- return printCmdResults(ok, failures)
-}
diff --git a/cmd/podman/rmi.go b/cmd/podman/rmi.go
deleted file mode 100644
index caaa8984d..000000000
--- a/cmd/podman/rmi.go
+++ /dev/null
@@ -1,156 +0,0 @@
-package main
-
-import (
- "fmt"
- "os"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/containers/storage"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- rmiCommand cliconfig.RmiValues
- rmiDescription = "Removes one or more previously pulled or locally created images."
- _rmiCommand = cobra.Command{
- Use: "rmi [flags] IMAGE [IMAGE...]",
- Short: "Removes one or more images from local storage",
- Long: rmiDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- rmiCommand.InputArgs = args
- rmiCommand.GlobalFlags = MainGlobalOpts
- rmiCommand.Remote = remoteclient
- return rmiCmd(&rmiCommand)
- },
- Example: `podman rmi imageID
- podman rmi --force alpine
- podman rmi c4dfb1609ee2 93fd78260bd1 c0ed59d05ff7`,
- }
-)
-
-func rmiInit(command *cliconfig.RmiValues) {
- command.SetHelpTemplate(HelpTemplate())
- command.SetUsageTemplate(UsageTemplate())
- flags := command.Flags()
- flags.BoolVarP(&command.All, "all", "a", false, "Remove all images")
- flags.BoolVarP(&command.Force, "force", "f", false, "Force Removal of the image")
-}
-
-func init() {
- rmiCommand.Command = &_rmiCommand
- rmiInit(&rmiCommand)
-}
-
-func rmiCmd(c *cliconfig.RmiValues) error {
- var (
- lastError error
- failureCnt int
- )
-
- ctx := getContext()
- removeAll := c.All
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- args := c.InputArgs
- if len(args) == 0 && !removeAll {
- return errors.Errorf("image name or ID must be specified")
- }
- if len(args) > 0 && removeAll {
- return errors.Errorf("when using the --all switch, you may not pass any images names or IDs")
- }
-
- images := args
-
- removeImage := func(img *adapter.ContainerImage) {
- response, err := runtime.RemoveImage(ctx, img, c.Force)
- if err != nil {
- if errors.Cause(err) == storage.ErrImageUsedByContainer {
- fmt.Printf("A container associated with containers/storage, i.e. via Buildah, CRI-O, etc., may be associated with this image: %-12.12s\n", img.ID())
- }
- if !adapter.IsImageNotFound(err) {
- exitCode = 2
- failureCnt++
- }
- if lastError != nil {
- fmt.Fprintln(os.Stderr, lastError)
- }
- lastError = err
- return
- }
- // Iterate if any images tags were deleted
- for _, i := range response.Untagged {
- fmt.Printf("Untagged: %s\n", i)
- }
- // Make sure an image was deleted (and not just untagged); else print it
- if len(response.Deleted) > 0 {
- fmt.Printf("Deleted: %s\n", response.Deleted)
- }
- }
-
- if removeAll {
- var imagesToDelete []*adapter.ContainerImage
- imagesToDelete, err = runtime.GetRWImages()
- if err != nil {
- return errors.Wrapf(err, "unable to query local images")
- }
- lastNumberofImages := 0
- for len(imagesToDelete) > 0 {
- if lastNumberofImages == len(imagesToDelete) {
- return errors.New("unable to delete all images; re-run the rmi command again.")
- }
- for _, i := range imagesToDelete {
- isParent, err := i.IsParent(ctx)
- if err != nil {
- return err
- }
- if isParent {
- continue
- }
- removeImage(i)
- }
- lastNumberofImages = len(imagesToDelete)
- imagesToDelete, err = runtime.GetRWImages()
- if err != nil {
- return err
- }
- // If no images are left to delete or there is just one image left and it cannot be deleted,
- // lets break out and display the error
- if len(imagesToDelete) == 0 || (lastNumberofImages == 1 && lastError != nil) {
- break
- }
- }
- } else {
- // Create image.image objects for deletion from user input.
- // Note that we have to query the storage one-by-one to
- // always get the latest state for each image. Otherwise, we
- // run inconsistency issues, for instance, with repoTags.
- // See https://github.com/containers/libpod/issues/930 as
- // an exemplary inconsistency issue.
- for _, i := range images {
- newImage, err := runtime.NewImageFromLocal(i)
- if err != nil {
- if lastError != nil {
- if !adapter.IsImageNotFound(lastError) {
- failureCnt++
- }
- fmt.Fprintln(os.Stderr, lastError)
- }
- lastError = err
- continue
- }
- removeImage(newImage)
- }
- }
-
- if adapter.IsImageNotFound(lastError) && failureCnt == 0 {
- exitCode = 1
- }
-
- return lastError
-}
diff --git a/cmd/podmanV2/root.go b/cmd/podman/root.go
index 801e728f0..259e10c55 100644
--- a/cmd/podmanV2/root.go
+++ b/cmd/podman/root.go
@@ -8,7 +8,7 @@ import (
"runtime/pprof"
"strings"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/containers/libpod/pkg/rootless"
"github.com/containers/libpod/pkg/tracing"
diff --git a/cmd/podman/run.go b/cmd/podman/run.go
deleted file mode 100644
index 27247c5b5..000000000
--- a/cmd/podman/run.go
+++ /dev/null
@@ -1,78 +0,0 @@
-package main
-
-import (
- "os"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/opentracing/opentracing-go"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- "github.com/spf13/cobra"
-)
-
-var (
- runCommand cliconfig.RunValues
-
- runDescription = "Runs a command in a new container from the given image"
- _runCommand = &cobra.Command{
- Use: "run [flags] IMAGE [COMMAND [ARG...]]",
- Short: "Run a command in a new container",
- Long: runDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- runCommand.InputArgs = args
- runCommand.GlobalFlags = MainGlobalOpts
- runCommand.Remote = remoteclient
- return runCmd(&runCommand)
- },
- Example: `podman run imageID ls -alF /etc
- podman run --network=host imageID dnf -y install java
- podman run --volume /var/hostdir:/var/ctrdir -i -t fedora /bin/bash`,
- }
-)
-
-func init() {
- runCommand.Command = _runCommand
- runCommand.SetHelpTemplate(HelpTemplate())
- runCommand.SetUsageTemplate(UsageTemplate())
- flags := runCommand.Flags()
- flags.SetInterspersed(false)
- flags.SetNormalizeFunc(aliasFlags)
- flags.Bool("sig-proxy", true, "Proxy received signals to the process")
- flags.Bool("rmi", false, "Remove container image unless used by other containers")
- flags.AddFlagSet(getNetFlags())
- getCreateFlags(&runCommand.PodmanCommand)
- markFlagHiddenForRemoteClient("authfile", flags)
-}
-
-func runCmd(c *cliconfig.RunValues) error {
- if !remote && c.Bool("trace") {
- span, _ := opentracing.StartSpanFromContext(Ctx, "runCmd")
- defer span.Finish()
- }
- if c.String("authfile") != "" {
- if _, err := os.Stat(c.String("authfile")); err != nil {
- return errors.Wrapf(err, "error checking authfile path %s", c.String("authfile"))
- }
- }
- if err := createInit(&c.PodmanCommand); err != nil {
- return err
- }
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "error creating libpod runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- exitCode, err = runtime.Run(getContext(), c, exitCode)
- if c.Bool("rmi") {
- imageName := c.InputArgs[0]
- if newImage, newImageErr := runtime.NewImageFromLocal(imageName); newImageErr != nil {
- logrus.Errorf("%s", errors.Wrapf(newImageErr, "failed creating image object"))
- } else if _, errImage := runtime.RemoveImage(getContext(), newImage, false); errImage != nil {
- logrus.Errorf("%s", errors.Wrapf(errImage, "failed removing image"))
- }
- }
- return err
-}
diff --git a/cmd/podman/runlabel.go b/cmd/podman/runlabel.go
deleted file mode 100644
index 193cc5aec..000000000
--- a/cmd/podman/runlabel.go
+++ /dev/null
@@ -1,224 +0,0 @@
-package main
-
-import (
- "fmt"
- "io"
- "os"
- "strings"
-
- buildahcli "github.com/containers/buildah/pkg/cli"
- "github.com/containers/image/v5/types"
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/cmd/podman/libpodruntime"
- "github.com/containers/libpod/cmd/podman/shared"
- "github.com/containers/libpod/libpod/define"
- "github.com/containers/libpod/libpod/image"
- "github.com/containers/libpod/utils"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- "github.com/spf13/cobra"
- "github.com/spf13/pflag"
-)
-
-var (
- runlabelCommand cliconfig.RunlabelValues
- runlabelDescription = `
-Executes a command as described by a container image label.
-`
- _runlabelCommand = &cobra.Command{
- Use: "runlabel [flags] LABEL IMAGE [ARG...]",
- Short: "Execute the command described by an image label",
- Long: runlabelDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- runlabelCommand.InputArgs = args
- runlabelCommand.GlobalFlags = MainGlobalOpts
- runlabelCommand.Remote = remoteclient
- return runlabelCmd(&runlabelCommand)
- },
- Example: `podman container runlabel run imageID
- podman container runlabel --pull install imageID arg1 arg2
- podman container runlabel --display run myImage`,
- }
-)
-
-func init() {
- runlabelCommand.Command = _runlabelCommand
- runlabelCommand.SetHelpTemplate(HelpTemplate())
- runlabelCommand.SetUsageTemplate(UsageTemplate())
- flags := runlabelCommand.Flags()
- flags.StringVar(&runlabelCommand.Creds, "creds", "", "`Credentials` (USERNAME:PASSWORD) to use for authenticating to a registry")
- flags.BoolVar(&runlabelCommand.Display, "display", false, "Preview the command that the label would run")
- flags.BoolVar(&runlabelCommand.Replace, "replace", false, "Replace existing container with a new one from the image")
- flags.StringVarP(&runlabelCommand.Name, "name", "n", "", "Assign a name to the container")
-
- flags.StringVar(&runlabelCommand.Opt1, "opt1", "", "Optional parameter to pass for install")
- flags.StringVar(&runlabelCommand.Opt2, "opt2", "", "Optional parameter to pass for install")
- flags.StringVar(&runlabelCommand.Opt3, "opt3", "", "Optional parameter to pass for install")
- markFlagHidden(flags, "opt1")
- markFlagHidden(flags, "opt2")
- markFlagHidden(flags, "opt3")
- flags.BoolP("pull", "p", false, "Pull the image if it does not exist locally prior to executing the label contents")
- flags.BoolVarP(&runlabelCommand.Quiet, "quiet", "q", false, "Suppress output information when installing images")
- // Disabled flags for the remote client
- if !remote {
- flags.StringVar(&runlabelCommand.Authfile, "authfile", buildahcli.GetDefaultAuthFile(), "Path of the authentication file. Use REGISTRY_AUTH_FILE environment variable to override")
- flags.StringVar(&runlabelCommand.CertDir, "cert-dir", "", "`Pathname` of a directory containing TLS certificates and keys")
- flags.StringVar(&runlabelCommand.SignaturePolicy, "signature-policy", "", "`Pathname` of signature policy file (not usually used)")
- flags.BoolVar(&runlabelCommand.TlsVerify, "tls-verify", true, "Require HTTPS and verify certificates when contacting registries")
-
- if err := flags.MarkDeprecated("pull", "podman will pull if not found in local storage"); err != nil {
- logrus.Error("unable to mark pull flag deprecated")
- }
- markFlagHidden(flags, "signature-policy")
- }
-}
-
-// installCmd gets the data from the command line and calls installImage
-// to copy an image from a registry to a local machine
-func runlabelCmd(c *cliconfig.RunlabelValues) error {
- var (
- imageName string
- stdErr, stdOut io.Writer
- stdIn io.Reader
- extraArgs []string
- )
-
- // Evil images could trick into recursively executing the runlabel
- // command. Avoid this by setting the "PODMAN_RUNLABEL_NESTED" env
- // variable when executing a label first.
- nested := os.Getenv("PODMAN_RUNLABEL_NESTED")
- if nested == "1" {
- return fmt.Errorf("nested runlabel calls: runlabels cannot execute the runlabel command")
- }
-
- opts := make(map[string]string)
- runtime, err := libpodruntime.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- if c.Authfile != "" {
- if _, err := os.Stat(c.Authfile); err != nil {
- return errors.Wrapf(err, "error getting authfile %s", c.Authfile)
- }
- }
-
- args := c.InputArgs
- if len(args) < 2 {
- return errors.Errorf("the runlabel command requires at least 2 arguments: LABEL IMAGE")
- }
- if c.Display && c.Quiet {
- return errors.Errorf("the display and quiet flags cannot be used together.")
- }
-
- if len(args) > 2 {
- extraArgs = args[2:]
- }
- label := args[0]
-
- runlabelImage := args[1]
-
- if c.Flag("opt1").Changed {
- opts["opt1"] = c.Opt1
- }
-
- if c.Flag("opt2").Changed {
- opts["opt2"] = c.Opt2
- }
- if c.Flag("opt3").Changed {
- opts["opt3"] = c.Opt3
- }
-
- ctx := getContext()
-
- stdErr = os.Stderr
- stdOut = os.Stdout
- stdIn = os.Stdin
-
- if c.Quiet {
- stdErr = nil
- stdOut = nil
- stdIn = nil
- }
-
- dockerRegistryOptions := image.DockerRegistryOptions{
- DockerCertPath: c.CertDir,
- }
- if c.Flag("tls-verify").Changed {
- dockerRegistryOptions.DockerInsecureSkipTLSVerify = types.NewOptionalBool(!c.TlsVerify)
- }
-
- runLabel, imageName, err := shared.GetRunlabel(label, runlabelImage, ctx, runtime, true, c.Creds, dockerRegistryOptions, c.Authfile, c.SignaturePolicy, stdOut)
- if err != nil {
- return err
- }
- if runLabel == "" {
- return errors.Errorf("%s does not have a label of %s", runlabelImage, label)
- }
-
- globalOpts := GetGlobalOpts(c)
- cmd, env, err := shared.GenerateRunlabelCommand(runLabel, imageName, c.Name, opts, extraArgs, globalOpts)
- if err != nil {
- return err
- }
- if !c.Quiet {
- fmt.Printf("command: %s\n", strings.Join(append([]string{os.Args[0]}, cmd[1:]...), " "))
- if c.Display {
- return nil
- }
- }
-
- // If container already exists && --replace given -- Nuke it
- if c.Replace {
- for i, entry := range cmd {
- if entry == "--name" {
- name := cmd[i+1]
- ctr, err := runtime.LookupContainer(name)
- if err != nil {
- if errors.Cause(err) != define.ErrNoSuchCtr {
- logrus.Debugf("Error occurred searching for container %s: %s", name, err.Error())
- return err
- }
- } else {
- logrus.Debugf("Runlabel --replace option given. Container %s will be deleted. The new container will be named %s", ctr.ID(), name)
- if err := runtime.RemoveContainer(ctx, ctr, true, false); err != nil {
- return err
- }
- }
- break
- }
- }
- }
-
- return utils.ExecCmdWithStdStreams(stdIn, stdOut, stdErr, env, cmd[0], cmd[1:]...)
-}
-
-// GetGlobalOpts checks all global flags and generates the command string
-func GetGlobalOpts(c *cliconfig.RunlabelValues) string {
- globalFlags := map[string]bool{
- "cgroup-manager": true, "cni-config-dir": true, "conmon": true, "default-mounts-file": true,
- "hooks-dir": true, "namespace": true, "root": true, "runroot": true,
- "runtime": true, "storage-driver": true, "storage-opt": true, "syslog": true,
- "trace": true, "network-cmd-path": true, "config": true, "cpu-profile": true,
- "log-level": true, "tmpdir": true}
- const stringSliceType string = "stringSlice"
-
- var optsCommand []string
- c.PodmanCommand.Command.Flags().VisitAll(func(f *pflag.Flag) {
- if !f.Changed {
- return
- }
- if _, exist := globalFlags[f.Name]; exist {
- if f.Value.Type() == stringSliceType {
- flagValue := strings.TrimSuffix(strings.TrimPrefix(f.Value.String(), "["), "]")
- for _, value := range strings.Split(flagValue, ",") {
- optsCommand = append(optsCommand, fmt.Sprintf("--%s %s", f.Name, value))
- }
- } else {
- optsCommand = append(optsCommand, fmt.Sprintf("--%s %s", f.Name, f.Value.String()))
- }
- }
- })
- return strings.Join(optsCommand, " ")
-}
diff --git a/cmd/podman/save.go b/cmd/podman/save.go
deleted file mode 100644
index 237ebde03..000000000
--- a/cmd/podman/save.go
+++ /dev/null
@@ -1,94 +0,0 @@
-package main
-
-import (
- "os"
- "strings"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/cmd/podman/shared/parse"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/containers/libpod/pkg/util"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
- "golang.org/x/crypto/ssh/terminal"
-)
-
-const (
- ociManifestDir = "oci-dir"
- ociArchive = "oci-archive"
- v2s2ManifestDir = "docker-dir"
- v2s2Archive = "docker-archive"
-)
-
-var validFormats = []string{ociManifestDir, ociArchive, v2s2ManifestDir, v2s2Archive}
-
-var (
- saveCommand cliconfig.SaveValues
- saveDescription = `Save an image to docker-archive or oci-archive on the local machine. Default is docker-archive.`
-
- _saveCommand = &cobra.Command{
- Use: "save [flags] IMAGE",
- Short: "Save image to an archive",
- Long: saveDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- saveCommand.InputArgs = args
- saveCommand.GlobalFlags = MainGlobalOpts
- saveCommand.Remote = remoteclient
- return saveCmd(&saveCommand)
- },
- Args: func(cmd *cobra.Command, args []string) error {
- format, err := cmd.Flags().GetString("format")
- if err != nil {
- return err
- }
- if !util.StringInSlice(format, validFormats) {
- return errors.Errorf("format value must be one of %s", strings.Join(validFormats, " "))
- }
- return nil
- },
- Example: `podman save --quiet -o myimage.tar imageID
- podman save --format docker-dir -o ubuntu-dir ubuntu
- podman save > alpine-all.tar alpine:latest`,
- }
-)
-
-func init() {
- saveCommand.Command = _saveCommand
- saveCommand.SetHelpTemplate(HelpTemplate())
- saveCommand.SetUsageTemplate(UsageTemplate())
- flags := saveCommand.Flags()
- flags.BoolVar(&saveCommand.Compress, "compress", false, "Compress tarball image layers when saving to a directory using the 'dir' transport. (default is same compression type as source)")
- flags.StringVar(&saveCommand.Format, "format", v2s2Archive, "Save image to oci-archive, oci-dir (directory with oci manifest type), docker-archive, docker-dir (directory with v2s2 manifest type)")
- flags.StringVarP(&saveCommand.Output, "output", "o", "", "Write to a specified file (default: stdout, which must be redirected)")
- flags.BoolVarP(&saveCommand.Quiet, "quiet", "q", false, "Suppress the output")
-}
-
-// saveCmd saves the image to either docker-archive or oci
-func saveCmd(c *cliconfig.SaveValues) error {
- args := c.InputArgs
- if len(args) == 0 {
- return errors.Errorf("need at least 1 argument")
- }
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not create runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- if c.Flag("compress").Changed && (c.Format != ociManifestDir && c.Format != v2s2ManifestDir && c.Format == "") {
- return errors.Errorf("--compress can only be set when --format is either 'oci-dir' or 'docker-dir'")
- }
-
- if len(c.Output) == 0 {
- fi := os.Stdout
- if terminal.IsTerminal(int(fi.Fd())) {
- return errors.Errorf("refusing to save to terminal. Use -o flag or redirect")
- }
- c.Output = "/dev/stdout"
- }
- if err := parse.ValidateFileName(c.Output); err != nil {
- return err
- }
- return runtime.SaveImage(getContext(), c)
-}
diff --git a/cmd/podman/search.go b/cmd/podman/search.go
deleted file mode 100644
index 87a26e544..000000000
--- a/cmd/podman/search.go
+++ /dev/null
@@ -1,125 +0,0 @@
-package main
-
-import (
- "os"
- "reflect"
- "strings"
-
- buildahcli "github.com/containers/buildah/pkg/cli"
- "github.com/containers/buildah/pkg/formats"
- "github.com/containers/image/v5/types"
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/libpod/image"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- searchCommand cliconfig.SearchValues
- searchDescription = `Search registries for a given image. Can search all the default registries or a specific registry.
-
- Users can limit the number of results, and filter the output based on certain conditions.`
- _searchCommand = &cobra.Command{
- Use: "search [flags] TERM",
- Short: "Search registry for image",
- Long: searchDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- searchCommand.InputArgs = args
- searchCommand.GlobalFlags = MainGlobalOpts
- searchCommand.Remote = remoteclient
- return searchCmd(&searchCommand)
- },
- Example: `podman search --filter=is-official --limit 3 alpine
- podman search registry.fedoraproject.org/ # only works with v2 registries
- podman search --format "table {{.Index}} {{.Name}}" registry.fedoraproject.org/fedora`,
- }
-)
-
-func init() {
- searchCommand.Command = _searchCommand
- searchCommand.SetHelpTemplate(HelpTemplate())
- searchCommand.SetUsageTemplate(UsageTemplate())
- flags := searchCommand.Flags()
- flags.StringSliceVarP(&searchCommand.Filter, "filter", "f", []string{}, "Filter output based on conditions provided (default [])")
- flags.StringVar(&searchCommand.Format, "format", "", "Change the output format to a Go template")
- flags.IntVar(&searchCommand.Limit, "limit", 0, "Limit the number of results")
- flags.BoolVar(&searchCommand.NoTrunc, "no-trunc", false, "Do not truncate the output")
- // Disabled flags for the remote client
- if !remote {
- flags.StringVar(&searchCommand.Authfile, "authfile", buildahcli.GetDefaultAuthFile(), "Path of the authentication file. Use REGISTRY_AUTH_FILE environment variable to override")
- flags.BoolVar(&searchCommand.TlsVerify, "tls-verify", true, "Require HTTPS and verify certificates when contacting registries")
- }
-}
-
-func searchCmd(c *cliconfig.SearchValues) error {
- args := c.InputArgs
- if len(args) > 1 {
- return errors.Errorf("too many arguments. Requires exactly 1")
- }
- if len(args) == 0 {
- return errors.Errorf("no argument given, requires exactly 1 argument")
- }
- term := args[0]
-
- filter, err := image.ParseSearchFilter(c.Filter)
- if err != nil {
- return err
- }
-
- if c.Authfile != "" {
- if _, err := os.Stat(c.Authfile); err != nil {
- return errors.Wrapf(err, "error getting authfile %s", c.Authfile)
- }
- }
-
- searchOptions := image.SearchOptions{
- NoTrunc: c.NoTrunc,
- Limit: c.Limit,
- Filter: *filter,
- Authfile: c.Authfile,
- }
- if c.Flag("tls-verify").Changed {
- searchOptions.InsecureSkipTLSVerify = types.NewOptionalBool(!c.TlsVerify)
- }
-
- results, err := image.SearchImages(term, searchOptions)
- if err != nil {
- return err
- }
- format := genSearchFormat(c.Format)
- if len(results) == 0 {
- return nil
- }
- out := formats.StdoutTemplateArray{Output: searchToGeneric(results), Template: format, Fields: searchHeaderMap()}
- return out.Out()
-}
-
-// searchHeaderMap returns the headers of a SearchResult.
-func searchHeaderMap() map[string]string {
- s := new(image.SearchResult)
- v := reflect.Indirect(reflect.ValueOf(s))
- values := make(map[string]string, v.NumField())
-
- for i := 0; i < v.NumField(); i++ {
- key := v.Type().Field(i).Name
- value := key
- values[key] = strings.ToUpper(splitCamelCase(value))
- }
- return values
-}
-
-func genSearchFormat(format string) string {
- if format != "" {
- // "\t" from the command line is not being recognized as a tab
- // replacing the string "\t" to a tab character if the user passes in "\t"
- return strings.Replace(format, `\t`, "\t", -1)
- }
- return "table {{.Index}}\t{{.Name}}\t{{.Description}}\t{{.Stars}}\t{{.Official}}\t{{.Automated}}\t"
-}
-
-func searchToGeneric(params []image.SearchResult) (genericParams []interface{}) {
- for _, v := range params {
- genericParams = append(genericParams, interface{}(v))
- }
- return genericParams
-}
diff --git a/cmd/podman/service.go b/cmd/podman/service.go
deleted file mode 100644
index 0280b01a4..000000000
--- a/cmd/podman/service.go
+++ /dev/null
@@ -1,190 +0,0 @@
-// +build varlink,!remoteclient
-
-package main
-
-import (
- "fmt"
- "net"
- "os"
- "path/filepath"
- "strings"
- "time"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/cmd/podman/libpodruntime"
- "github.com/containers/libpod/libpod"
- "github.com/containers/libpod/pkg/adapter"
- api "github.com/containers/libpod/pkg/api/server"
- "github.com/containers/libpod/pkg/rootless"
- "github.com/containers/libpod/pkg/systemd"
- "github.com/containers/libpod/pkg/util"
- iopodman "github.com/containers/libpod/pkg/varlink"
- "github.com/containers/libpod/pkg/varlinkapi"
- "github.com/containers/libpod/version"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- "github.com/spf13/cobra"
- "github.com/varlink/go/varlink"
-)
-
-var (
- serviceCommand cliconfig.ServiceValues
- serviceDescription = `Run an API service
-
-Enable a listening service for API access to Podman commands.
-`
-
- _serviceCommand = &cobra.Command{
- Use: "service [flags] [URI]",
- Short: "Run API service",
- Long: serviceDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- serviceCommand.InputArgs = args
- serviceCommand.GlobalFlags = MainGlobalOpts
- return serviceCmd(&serviceCommand)
- },
- }
-)
-
-func init() {
- serviceCommand.Command = _serviceCommand
- serviceCommand.SetHelpTemplate(HelpTemplate())
- serviceCommand.SetUsageTemplate(UsageTemplate())
- flags := serviceCommand.Flags()
- flags.Int64VarP(&serviceCommand.Timeout, "timeout", "t", 5, "Time until the service session expires in seconds. Use 0 to disable the timeout")
- flags.BoolVar(&serviceCommand.Varlink, "varlink", false, "Use legacy varlink service instead of REST")
-}
-
-func serviceCmd(c *cliconfig.ServiceValues) error {
- apiURI, err := resolveApiURI(c)
- if err != nil {
- return err
- }
-
- // Create a single runtime api consumption
- runtime, err := libpodruntime.GetRuntimeDisableFDs(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "error creating libpod runtime")
- }
- defer func() {
- if err := runtime.Shutdown(false); err != nil {
- fmt.Fprintf(os.Stderr, "Failed to shutdown libpod runtime: %v", err)
- }
- }()
-
- timeout := time.Duration(c.Timeout) * time.Second
- if c.Varlink {
- return runVarlink(runtime, apiURI, timeout, c)
- }
- return runREST(runtime, apiURI, timeout)
-}
-
-func resolveApiURI(c *cliconfig.ServiceValues) (string, error) {
- var apiURI string
-
- // When determining _*THE*_ listening endpoint --
- // 1) User input wins always
- // 2) systemd socket activation
- // 3) rootless honors XDG_RUNTIME_DIR
- // 4) if varlink -- adapter.DefaultVarlinkAddress
- // 5) lastly adapter.DefaultAPIAddress
-
- if len(c.InputArgs) > 0 {
- apiURI = c.InputArgs[0]
- } else if ok := systemd.SocketActivated(); ok { // nolint: gocritic
- apiURI = ""
- } else if rootless.IsRootless() {
- xdg, err := util.GetRuntimeDir()
- if err != nil {
- return "", err
- }
- socketName := "podman.sock"
- if c.Varlink {
- socketName = "io.podman"
- }
- socketDir := filepath.Join(xdg, "podman", socketName)
- if _, err := os.Stat(filepath.Dir(socketDir)); err != nil {
- if os.IsNotExist(err) {
- if err := os.Mkdir(filepath.Dir(socketDir), 0755); err != nil {
- return "", err
- }
- } else {
- return "", err
- }
- }
- apiURI = "unix:" + socketDir
- } else if c.Varlink {
- apiURI = adapter.DefaultVarlinkAddress
- } else {
- // For V2, default to the REST socket
- apiURI = adapter.DefaultAPIAddress
- }
-
- if "" == apiURI {
- logrus.Info("using systemd socket activation to determine API endpoint")
- } else {
- logrus.Infof("using API endpoint: %s", apiURI)
- }
- return apiURI, nil
-}
-
-func runREST(r *libpod.Runtime, uri string, timeout time.Duration) error {
- logrus.Warn("This function is EXPERIMENTAL")
- fmt.Println("This function is EXPERIMENTAL.")
-
- var listener *net.Listener
- if uri != "" {
- fields := strings.Split(uri, ":")
- if len(fields) == 1 {
- return errors.Errorf("%s is an invalid socket destination", uri)
- }
- address := strings.Join(fields[1:], ":")
- l, err := net.Listen(fields[0], address)
- if err != nil {
- return errors.Wrapf(err, "unable to create socket %s", uri)
- }
- listener = &l
- }
- server, err := api.NewServerWithSettings(r, timeout, listener)
- if err != nil {
- return err
- }
- defer func() {
- if err := server.Shutdown(); err != nil {
- fmt.Fprintf(os.Stderr, "Error when stopping service: %s", err)
- }
- }()
-
- return server.Serve()
-}
-
-func runVarlink(r *libpod.Runtime, uri string, timeout time.Duration, c *cliconfig.ServiceValues) error {
- var varlinkInterfaces = []*iopodman.VarlinkInterface{varlinkapi.New(c.PodmanCommand.Command, r)}
- service, err := varlink.NewService(
- "Atomic",
- "podman",
- version.Version,
- "https://github.com/containers/libpod",
- )
- if err != nil {
- return errors.Wrapf(err, "unable to create new varlink service")
- }
-
- for _, i := range varlinkInterfaces {
- if err := service.RegisterInterface(i); err != nil {
- return errors.Errorf("unable to register varlink interface %v", i)
- }
- }
-
- // Run the varlink server at the given address
- if err = service.Listen(uri, timeout); err != nil {
- switch err.(type) {
- case varlink.ServiceTimeoutError:
- logrus.Infof("varlink service expired (use --timeout to increase session time beyond %s ms, 0 means never timeout)", timeout.String())
- return nil
- default:
- return errors.Wrapf(err, "unable to start varlink service")
- }
- }
- return nil
-}
diff --git a/cmd/podman/service_dummy.go b/cmd/podman/service_dummy.go
deleted file mode 100644
index a726f21c1..000000000
--- a/cmd/podman/service_dummy.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// +build !varlink
-
-package main
-
-import "github.com/spf13/cobra"
-
-var (
- // nolint:varcheck,deadcode,unused
- _serviceCommand = &cobra.Command{
- Use: "",
- }
-)
diff --git a/cmd/podman/shared/create_cli.go b/cmd/podman/shared/create_cli.go
deleted file mode 100644
index 10e27350b..000000000
--- a/cmd/podman/shared/create_cli.go
+++ /dev/null
@@ -1,192 +0,0 @@
-package shared
-
-import (
- "fmt"
- "strings"
-
- "github.com/containers/libpod/pkg/cgroups"
- cc "github.com/containers/libpod/pkg/spec"
- "github.com/containers/libpod/pkg/sysinfo"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
-)
-
-// validateSysctl validates a sysctl and returns it.
-func validateSysctl(strSlice []string) (map[string]string, error) {
- sysctl := make(map[string]string)
- validSysctlMap := map[string]bool{
- "kernel.msgmax": true,
- "kernel.msgmnb": true,
- "kernel.msgmni": true,
- "kernel.sem": true,
- "kernel.shmall": true,
- "kernel.shmmax": true,
- "kernel.shmmni": true,
- "kernel.shm_rmid_forced": true,
- }
- validSysctlPrefixes := []string{
- "net.",
- "fs.mqueue.",
- }
-
- for _, val := range strSlice {
- foundMatch := false
- arr := strings.Split(val, "=")
- if len(arr) < 2 {
- return nil, errors.Errorf("%s is invalid, sysctl values must be in the form of KEY=VALUE", val)
- }
- if validSysctlMap[arr[0]] {
- sysctl[arr[0]] = arr[1]
- continue
- }
-
- for _, prefix := range validSysctlPrefixes {
- if strings.HasPrefix(arr[0], prefix) {
- sysctl[arr[0]] = arr[1]
- foundMatch = true
- break
- }
- }
- if !foundMatch {
- return nil, errors.Errorf("sysctl '%s' is not whitelisted", arr[0])
- }
- }
- return sysctl, nil
-}
-
-func addWarning(warnings []string, msg string) []string {
- logrus.Warn(msg)
- return append(warnings, msg)
-}
-
-func verifyContainerResources(config *cc.CreateConfig, update bool) ([]string, error) {
- warnings := []string{}
-
- cgroup2, err := cgroups.IsCgroup2UnifiedMode()
- if err != nil || cgroup2 {
- return warnings, err
- }
-
- sysInfo := sysinfo.New(true)
-
- // memory subsystem checks and adjustments
- if config.Resources.Memory > 0 && !sysInfo.MemoryLimit {
- warnings = addWarning(warnings, "Your kernel does not support memory limit capabilities or the cgroup is not mounted. Limitation discarded.")
- config.Resources.Memory = 0
- config.Resources.MemorySwap = -1
- }
- if config.Resources.Memory > 0 && config.Resources.MemorySwap != -1 && !sysInfo.SwapLimit {
- warnings = addWarning(warnings, "Your kernel does not support swap limit capabilities,or the cgroup is not mounted. Memory limited without swap.")
- config.Resources.MemorySwap = -1
- }
- if config.Resources.Memory > 0 && config.Resources.MemorySwap > 0 && config.Resources.MemorySwap < config.Resources.Memory {
- return warnings, fmt.Errorf("minimum memoryswap limit should be larger than memory limit, see usage")
- }
- if config.Resources.Memory == 0 && config.Resources.MemorySwap > 0 && !update {
- return warnings, fmt.Errorf("you should always set the memory limit when using memoryswap limit, see usage")
- }
- if config.Resources.MemorySwappiness != -1 {
- if !sysInfo.MemorySwappiness {
- msg := "Your kernel does not support memory swappiness capabilities, or the cgroup is not mounted. Memory swappiness discarded."
- warnings = addWarning(warnings, msg)
- config.Resources.MemorySwappiness = -1
- } else {
- swappiness := config.Resources.MemorySwappiness
- if swappiness < -1 || swappiness > 100 {
- return warnings, fmt.Errorf("invalid value: %v, valid memory swappiness range is 0-100", swappiness)
- }
- }
- }
- if config.Resources.MemoryReservation > 0 && !sysInfo.MemoryReservation {
- warnings = addWarning(warnings, "Your kernel does not support memory soft limit capabilities or the cgroup is not mounted. Limitation discarded.")
- config.Resources.MemoryReservation = 0
- }
- if config.Resources.Memory > 0 && config.Resources.MemoryReservation > 0 && config.Resources.Memory < config.Resources.MemoryReservation {
- return warnings, fmt.Errorf("minimum memory limit cannot be less than memory reservation limit, see usage")
- }
- if config.Resources.KernelMemory > 0 && !sysInfo.KernelMemory {
- warnings = addWarning(warnings, "Your kernel does not support kernel memory limit capabilities or the cgroup is not mounted. Limitation discarded.")
- config.Resources.KernelMemory = 0
- }
- if config.Resources.DisableOomKiller && !sysInfo.OomKillDisable {
- // only produce warnings if the setting wasn't to *disable* the OOM Kill; no point
- // warning the caller if they already wanted the feature to be off
- warnings = addWarning(warnings, "Your kernel does not support OomKillDisable. OomKillDisable discarded.")
- config.Resources.DisableOomKiller = false
- }
-
- if config.Resources.PidsLimit != 0 && !sysInfo.PidsLimit {
- warnings = addWarning(warnings, "Your kernel does not support pids limit capabilities or the cgroup is not mounted. PIDs limit discarded.")
- config.Resources.PidsLimit = 0
- }
-
- if config.Resources.CPUShares > 0 && !sysInfo.CPUShares {
- warnings = addWarning(warnings, "Your kernel does not support CPU shares or the cgroup is not mounted. Shares discarded.")
- config.Resources.CPUShares = 0
- }
- if config.Resources.CPUPeriod > 0 && !sysInfo.CPUCfsPeriod {
- warnings = addWarning(warnings, "Your kernel does not support CPU cfs period or the cgroup is not mounted. Period discarded.")
- config.Resources.CPUPeriod = 0
- }
- if config.Resources.CPUPeriod != 0 && (config.Resources.CPUPeriod < 1000 || config.Resources.CPUPeriod > 1000000) {
- return warnings, fmt.Errorf("CPU cfs period cannot be less than 1ms (i.e. 1000) or larger than 1s (i.e. 1000000)")
- }
- if config.Resources.CPUQuota > 0 && !sysInfo.CPUCfsQuota {
- warnings = addWarning(warnings, "Your kernel does not support CPU cfs quota or the cgroup is not mounted. Quota discarded.")
- config.Resources.CPUQuota = 0
- }
- if config.Resources.CPUQuota > 0 && config.Resources.CPUQuota < 1000 {
- return warnings, fmt.Errorf("CPU cfs quota cannot be less than 1ms (i.e. 1000)")
- }
- // cpuset subsystem checks and adjustments
- if (config.Resources.CPUsetCPUs != "" || config.Resources.CPUsetMems != "") && !sysInfo.Cpuset {
- warnings = addWarning(warnings, "Your kernel does not support cpuset or the cgroup is not mounted. CPUset discarded.")
- config.Resources.CPUsetCPUs = ""
- config.Resources.CPUsetMems = ""
- }
- cpusAvailable, err := sysInfo.IsCpusetCpusAvailable(config.Resources.CPUsetCPUs)
- if err != nil {
- return warnings, fmt.Errorf("invalid value %s for cpuset cpus", config.Resources.CPUsetCPUs)
- }
- if !cpusAvailable {
- return warnings, fmt.Errorf("requested CPUs are not available - requested %s, available: %s", config.Resources.CPUsetCPUs, sysInfo.Cpus)
- }
- memsAvailable, err := sysInfo.IsCpusetMemsAvailable(config.Resources.CPUsetMems)
- if err != nil {
- return warnings, fmt.Errorf("invalid value %s for cpuset mems", config.Resources.CPUsetMems)
- }
- if !memsAvailable {
- return warnings, fmt.Errorf("requested memory nodes are not available - requested %s, available: %s", config.Resources.CPUsetMems, sysInfo.Mems)
- }
-
- // blkio subsystem checks and adjustments
- if config.Resources.BlkioWeight > 0 && !sysInfo.BlkioWeight {
- warnings = addWarning(warnings, "Your kernel does not support Block I/O weight or the cgroup is not mounted. Weight discarded.")
- config.Resources.BlkioWeight = 0
- }
- if config.Resources.BlkioWeight > 0 && (config.Resources.BlkioWeight < 10 || config.Resources.BlkioWeight > 1000) {
- return warnings, fmt.Errorf("range of blkio weight is from 10 to 1000")
- }
- if len(config.Resources.BlkioWeightDevice) > 0 && !sysInfo.BlkioWeightDevice {
- warnings = addWarning(warnings, "Your kernel does not support Block I/O weight_device or the cgroup is not mounted. Weight-device discarded.")
- config.Resources.BlkioWeightDevice = []string{}
- }
- if len(config.Resources.DeviceReadBps) > 0 && !sysInfo.BlkioReadBpsDevice {
- warnings = addWarning(warnings, "Your kernel does not support BPS Block I/O read limit or the cgroup is not mounted. Block I/O BPS read limit discarded")
- config.Resources.DeviceReadBps = []string{}
- }
- if len(config.Resources.DeviceWriteBps) > 0 && !sysInfo.BlkioWriteBpsDevice {
- warnings = addWarning(warnings, "Your kernel does not support BPS Block I/O write limit or the cgroup is not mounted. Block I/O BPS write limit discarded.")
- config.Resources.DeviceWriteBps = []string{}
- }
- if len(config.Resources.DeviceReadIOps) > 0 && !sysInfo.BlkioReadIOpsDevice {
- warnings = addWarning(warnings, "Your kernel does not support IOPS Block read limit or the cgroup is not mounted. Block I/O IOPS read limit discarded.")
- config.Resources.DeviceReadIOps = []string{}
- }
- if len(config.Resources.DeviceWriteIOps) > 0 && !sysInfo.BlkioWriteIOpsDevice {
- warnings = addWarning(warnings, "Your kernel does not support IOPS Block I/O write limit or the cgroup is not mounted. Block I/O IOPS write limit discarded.")
- config.Resources.DeviceWriteIOps = []string{}
- }
-
- return warnings, nil
-}
diff --git a/cmd/podman/shared/create_cli_test.go b/cmd/podman/shared/create_cli_test.go
deleted file mode 100644
index a045962cb..000000000
--- a/cmd/podman/shared/create_cli_test.go
+++ /dev/null
@@ -1,19 +0,0 @@
-package shared
-
-import (
- "testing"
-
- "github.com/stretchr/testify/assert"
-)
-
-func TestValidateSysctl(t *testing.T) {
- strSlice := []string{"net.core.test1=4", "kernel.msgmax=2"}
- result, _ := validateSysctl(strSlice)
- assert.Equal(t, result["net.core.test1"], "4")
-}
-
-func TestValidateSysctlBadSysctl(t *testing.T) {
- strSlice := []string{"BLAU=BLUE", "GELB^YELLOW"}
- _, err := validateSysctl(strSlice)
- assert.Error(t, err)
-}
diff --git a/cmd/podman/shared/funcs_linux_test.go b/cmd/podman/shared/funcs_linux_test.go
deleted file mode 100644
index 88571153f..000000000
--- a/cmd/podman/shared/funcs_linux_test.go
+++ /dev/null
@@ -1,119 +0,0 @@
-package shared
-
-import (
- "fmt"
- "io/ioutil"
- "os"
- "path/filepath"
- "strings"
- "testing"
-
- "github.com/stretchr/testify/assert"
-)
-
-func TestGenerateCommand(t *testing.T) {
- inputCommand := "docker run -it --name NAME -e NAME=NAME -e IMAGE=IMAGE IMAGE echo \"hello world\""
- correctCommand := "/proc/self/exe run -it --name bar -e NAME=bar -e IMAGE=foo foo echo hello world"
- newCommand, err := GenerateCommand(inputCommand, "foo", "bar", "")
- assert.Nil(t, err)
- assert.Equal(t, "hello world", newCommand[11])
- assert.Equal(t, correctCommand, strings.Join(newCommand, " "))
-}
-
-func TestGenerateCommandCheckSubstitution(t *testing.T) {
- type subsTest struct {
- input string
- expected string
- shouldFail bool
- }
-
- absTmpFile, err := ioutil.TempFile("", "podmanRunlabelTestAbsolutePath")
- assert.Nil(t, err, "error creating tempfile")
- defer os.Remove(absTmpFile.Name())
-
- relTmpFile, err := ioutil.TempFile("./", "podmanRunlabelTestRelativePath")
- assert.Nil(t, err, "error creating tempfile")
- defer os.Remove(relTmpFile.Name())
- relTmpCmd, err := filepath.Abs(relTmpFile.Name())
- assert.Nil(t, err, "error getting absolute path for relative tmpfile")
-
- // this has a (low) potential of race conditions but no other way
- removedTmpFile, err := ioutil.TempFile("", "podmanRunlabelTestRemove")
- assert.Nil(t, err, "error creating tempfile")
- os.Remove(removedTmpFile.Name())
-
- absTmpCmd := fmt.Sprintf("%s --flag1 --flag2 --args=foo", absTmpFile.Name())
- tests := []subsTest{
- {
- input: "docker run -it alpine:latest",
- expected: "/proc/self/exe run -it alpine:latest",
- shouldFail: false,
- },
- {
- input: "podman run -it alpine:latest",
- expected: "/proc/self/exe run -it alpine:latest",
- shouldFail: false,
- },
- {
- input: absTmpCmd,
- expected: absTmpCmd,
- shouldFail: false,
- },
- {
- input: "./" + relTmpFile.Name(),
- expected: relTmpCmd,
- shouldFail: false,
- },
- {
- input: "ls -la",
- expected: "ls -la",
- shouldFail: false,
- },
- {
- input: removedTmpFile.Name(),
- expected: "",
- shouldFail: true,
- },
- }
-
- for _, test := range tests {
- newCommand, err := GenerateCommand(test.input, "foo", "bar", "")
- if test.shouldFail {
- assert.NotNil(t, err)
- } else {
- assert.Nil(t, err)
- }
- assert.Equal(t, test.expected, strings.Join(newCommand, " "))
- }
-}
-
-func TestGenerateCommandPath(t *testing.T) {
- inputCommand := "docker run -it --name NAME -e NAME=NAME -e IMAGE=IMAGE IMAGE echo install"
- correctCommand := "/proc/self/exe run -it --name bar -e NAME=bar -e IMAGE=foo foo echo install"
- newCommand, _ := GenerateCommand(inputCommand, "foo", "bar", "")
- assert.Equal(t, correctCommand, strings.Join(newCommand, " "))
-}
-
-func TestGenerateCommandNoSetName(t *testing.T) {
- inputCommand := "docker run -it --name NAME -e NAME=NAME -e IMAGE=IMAGE IMAGE echo install"
- correctCommand := "/proc/self/exe run -it --name foo -e NAME=foo -e IMAGE=foo foo echo install"
- newCommand, err := GenerateCommand(inputCommand, "foo", "", "")
- assert.Nil(t, err)
- assert.Equal(t, correctCommand, strings.Join(newCommand, " "))
-}
-
-func TestGenerateCommandNoName(t *testing.T) {
- inputCommand := "docker run -it -e IMAGE=IMAGE IMAGE echo install"
- correctCommand := "/proc/self/exe run -it -e IMAGE=foo foo echo install"
- newCommand, err := GenerateCommand(inputCommand, "foo", "", "")
- assert.Nil(t, err)
- assert.Equal(t, correctCommand, strings.Join(newCommand, " "))
-}
-
-func TestGenerateCommandAlreadyPodman(t *testing.T) {
- inputCommand := "podman run -it --name NAME -e NAME=NAME -e IMAGE=IMAGE IMAGE echo install"
- correctCommand := "/proc/self/exe run -it --name bar -e NAME=bar -e IMAGE=foo foo echo install"
- newCommand, err := GenerateCommand(inputCommand, "foo", "bar", "")
- assert.Nil(t, err)
- assert.Equal(t, correctCommand, strings.Join(newCommand, " "))
-}
diff --git a/cmd/podman/shared/funcs_test.go b/cmd/podman/shared/funcs_test.go
deleted file mode 100644
index dd856166e..000000000
--- a/cmd/podman/shared/funcs_test.go
+++ /dev/null
@@ -1,53 +0,0 @@
-package shared
-
-import (
- "testing"
-
- "github.com/containers/libpod/pkg/util"
- "github.com/stretchr/testify/assert"
-)
-
-var (
- name = "foo"
- imageName = "bar"
-)
-
-func TestGenerateRunEnvironment(t *testing.T) {
- opts := make(map[string]string)
- opts["opt1"] = "one"
- opts["opt2"] = "two"
- opts["opt3"] = "three"
- envs := GenerateRunEnvironment(name, imageName, opts)
- assert.True(t, util.StringInSlice("OPT1=one", envs))
- assert.True(t, util.StringInSlice("OPT2=two", envs))
- assert.True(t, util.StringInSlice("OPT3=three", envs))
-}
-
-func TestGenerateRunEnvironmentNoOpts(t *testing.T) {
- opts := make(map[string]string)
- envs := GenerateRunEnvironment(name, imageName, opts)
- assert.False(t, util.StringInSlice("OPT1=", envs))
- assert.False(t, util.StringInSlice("OPT2=", envs))
- assert.False(t, util.StringInSlice("OPT3=", envs))
-}
-
-func TestGenerateRunEnvironmentSingleOpt(t *testing.T) {
- opts := make(map[string]string)
- opts["opt1"] = "one"
- envs := GenerateRunEnvironment(name, imageName, opts)
- assert.True(t, util.StringInSlice("OPT1=one", envs))
- assert.False(t, util.StringInSlice("OPT2=", envs))
- assert.False(t, util.StringInSlice("OPT3=", envs))
-}
-
-func TestGenerateRunEnvironmentName(t *testing.T) {
- opts := make(map[string]string)
- envs := GenerateRunEnvironment(name, imageName, opts)
- assert.True(t, util.StringInSlice("NAME=foo", envs))
-}
-
-func TestGenerateRunEnvironmentImage(t *testing.T) {
- opts := make(map[string]string)
- envs := GenerateRunEnvironment(name, imageName, opts)
- assert.True(t, util.StringInSlice("IMAGE=bar", envs))
-}
diff --git a/cmd/podman/shared/intermediate.go b/cmd/podman/shared/intermediate.go
deleted file mode 100644
index e76750042..000000000
--- a/cmd/podman/shared/intermediate.go
+++ /dev/null
@@ -1,479 +0,0 @@
-package shared
-
-import (
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/sirupsen/logrus"
-)
-
-/*
-attention
-
-in this file you will see a lot of struct duplication. this was done because people wanted a strongly typed
-varlink mechanism. this resulted in us creating this intermediate layer that allows us to take the input
-from the cli and make an intermediate layer which can be transferred as strongly typed structures over a varlink
-interface.
-
-we intentionally avoided heavy use of reflection here because we were concerned about performance impacts to the
-non-varlink intermediate layer generation.
-*/
-
-// GenericCLIResult describes the overall interface for dealing with
-// the create command cli in both local and remote uses
-type GenericCLIResult interface {
- IsSet() bool
- Name() string
- Value() interface{}
-}
-
-// CRStringSlice describes a string slice cli struct
-type CRStringSlice struct {
- Val []string
- createResult
-}
-
-// CRString describes a string cli struct
-type CRString struct {
- Val string
- createResult
-}
-
-// CRUint64 describes a uint64 cli struct
-type CRUint64 struct {
- Val uint64
- createResult
-}
-
-// CRFloat64 describes a float64 cli struct
-type CRFloat64 struct {
- Val float64
- createResult
-}
-
-//CRBool describes a bool cli struct
-type CRBool struct {
- Val bool
- createResult
-}
-
-// CRInt64 describes an int64 cli struct
-type CRInt64 struct {
- Val int64
- createResult
-}
-
-// CRUint describes a uint cli struct
-type CRUint struct {
- Val uint
- createResult
-}
-
-// CRInt describes an int cli struct
-type CRInt struct {
- Val int
- createResult
-}
-
-// CRStringArray describes a stringarray cli struct
-type CRStringArray struct {
- Val []string
- createResult
-}
-
-type createResult struct {
- Flag string
- Changed bool
-}
-
-// GenericCLIResults in the intermediate object between the cobra cli
-// and createconfig
-type GenericCLIResults struct {
- results map[string]GenericCLIResult
- InputArgs []string
-}
-
-// IsSet returns a bool if the flag was changed
-func (f GenericCLIResults) IsSet(flag string) bool {
- r := f.findResult(flag)
- if r == nil {
- return false
- }
- return r.IsSet()
-}
-
-// Value returns the value of the cli flag
-func (f GenericCLIResults) Value(flag string) interface{} {
- r := f.findResult(flag)
- if r == nil {
- return ""
- }
- return r.Value()
-}
-
-func (f GenericCLIResults) findResult(flag string) GenericCLIResult {
- val, ok := f.results[flag]
- if ok {
- return val
- }
- logrus.Debugf("unable to find flag %s", flag)
- return nil
-}
-
-// Bool is a wrapper to get a bool value from GenericCLIResults
-func (f GenericCLIResults) Bool(flag string) bool {
- r := f.findResult(flag)
- if r == nil {
- return false
- }
- return r.Value().(bool)
-}
-
-// String is a wrapper to get a string value from GenericCLIResults
-func (f GenericCLIResults) String(flag string) string {
- r := f.findResult(flag)
- if r == nil {
- return ""
- }
- return r.Value().(string)
-}
-
-// Uint is a wrapper to get an uint value from GenericCLIResults
-func (f GenericCLIResults) Uint(flag string) uint {
- r := f.findResult(flag)
- if r == nil {
- return 0
- }
- return r.Value().(uint)
-}
-
-// StringSlice is a wrapper to get a stringslice value from GenericCLIResults
-func (f GenericCLIResults) StringSlice(flag string) []string {
- r := f.findResult(flag)
- if r == nil {
- return []string{}
- }
- return r.Value().([]string)
-}
-
-// StringArray is a wrapper to get a stringslice value from GenericCLIResults
-func (f GenericCLIResults) StringArray(flag string) []string {
- r := f.findResult(flag)
- if r == nil {
- return []string{}
- }
- return r.Value().([]string)
-}
-
-// Uint64 is a wrapper to get an uint64 value from GenericCLIResults
-func (f GenericCLIResults) Uint64(flag string) uint64 {
- r := f.findResult(flag)
- if r == nil {
- return 0
- }
- return r.Value().(uint64)
-}
-
-// Int64 is a wrapper to get an int64 value from GenericCLIResults
-func (f GenericCLIResults) Int64(flag string) int64 {
- r := f.findResult(flag)
- if r == nil {
- return 0
- }
- return r.Value().(int64)
-}
-
-// Int is a wrapper to get an int value from GenericCLIResults
-func (f GenericCLIResults) Int(flag string) int {
- r := f.findResult(flag)
- if r == nil {
- return 0
- }
- return r.Value().(int)
-}
-
-// Float64 is a wrapper to get an float64 value from GenericCLIResults
-func (f GenericCLIResults) Float64(flag string) float64 {
- r := f.findResult(flag)
- if r == nil {
- return 0
- }
- return r.Value().(float64)
-}
-
-// Float64 is a wrapper to get an float64 value from GenericCLIResults
-func (f GenericCLIResults) Changed(flag string) bool {
- r := f.findResult(flag)
- if r == nil {
- return false
- }
- return r.IsSet()
-}
-
-// IsSet ...
-func (c CRStringSlice) IsSet() bool { return c.Changed }
-
-// Name ...
-func (c CRStringSlice) Name() string { return c.Flag }
-
-// Value ...
-func (c CRStringSlice) Value() interface{} { return c.Val }
-
-// IsSet ...
-func (c CRString) IsSet() bool { return c.Changed }
-
-// Name ...
-func (c CRString) Name() string { return c.Flag }
-
-// Value ...
-func (c CRString) Value() interface{} { return c.Val }
-
-// IsSet ...
-func (c CRUint64) IsSet() bool { return c.Changed }
-
-// Name ...
-func (c CRUint64) Name() string { return c.Flag }
-
-// Value ...
-func (c CRUint64) Value() interface{} { return c.Val }
-
-// IsSet ...
-func (c CRFloat64) IsSet() bool { return c.Changed }
-
-// Name ...
-func (c CRFloat64) Name() string { return c.Flag }
-
-// Value ...
-func (c CRFloat64) Value() interface{} { return c.Val }
-
-// IsSet ...
-func (c CRBool) IsSet() bool { return c.Changed }
-
-// Name ...
-func (c CRBool) Name() string { return c.Flag }
-
-// Value ...
-func (c CRBool) Value() interface{} { return c.Val }
-
-// IsSet ...
-func (c CRInt64) IsSet() bool { return c.Changed }
-
-// Name ...
-func (c CRInt64) Name() string { return c.Flag }
-
-// Value ...
-func (c CRInt64) Value() interface{} { return c.Val }
-
-// IsSet ...
-func (c CRUint) IsSet() bool { return c.Changed }
-
-// Name ...
-func (c CRUint) Name() string { return c.Flag }
-
-// Value ...
-func (c CRUint) Value() interface{} { return c.Val }
-
-// IsSet ...
-func (c CRInt) IsSet() bool { return c.Changed }
-
-// Name ...
-func (c CRInt) Name() string { return c.Flag }
-
-// Value ...
-func (c CRInt) Value() interface{} { return c.Val }
-
-// IsSet ...
-func (c CRStringArray) IsSet() bool { return c.Changed }
-
-// Name ...
-func (c CRStringArray) Name() string { return c.Flag }
-
-// Value ...
-func (c CRStringArray) Value() interface{} { return c.Val }
-
-func newCreateResult(c *cliconfig.PodmanCommand, flag string) createResult {
- return createResult{
- Flag: flag,
- Changed: c.IsSet(flag),
- }
-}
-
-func newCRStringSlice(c *cliconfig.PodmanCommand, flag string) CRStringSlice {
- return CRStringSlice{
- Val: c.StringSlice(flag),
- createResult: newCreateResult(c, flag),
- }
-}
-
-func newCRString(c *cliconfig.PodmanCommand, flag string) CRString {
- return CRString{
- Val: c.String(flag),
- createResult: newCreateResult(c, flag),
- }
-}
-
-func newCRUint64(c *cliconfig.PodmanCommand, flag string) CRUint64 {
- return CRUint64{
- Val: c.Uint64(flag),
- createResult: newCreateResult(c, flag),
- }
-}
-
-func newCRFloat64(c *cliconfig.PodmanCommand, flag string) CRFloat64 {
- return CRFloat64{
- Val: c.Float64(flag),
- createResult: newCreateResult(c, flag),
- }
-}
-
-func newCRBool(c *cliconfig.PodmanCommand, flag string) CRBool {
- return CRBool{
- Val: c.Bool(flag),
- createResult: newCreateResult(c, flag),
- }
-}
-
-func newCRInt64(c *cliconfig.PodmanCommand, flag string) CRInt64 {
- return CRInt64{
- Val: c.Int64(flag),
- createResult: newCreateResult(c, flag),
- }
-}
-
-func newCRUint(c *cliconfig.PodmanCommand, flag string) CRUint {
- return CRUint{
- Val: c.Uint(flag),
- createResult: newCreateResult(c, flag),
- }
-}
-
-func newCRInt(c *cliconfig.PodmanCommand, flag string) CRInt {
- return CRInt{
- Val: c.Int(flag),
- createResult: newCreateResult(c, flag),
- }
-}
-
-func newCRStringArray(c *cliconfig.PodmanCommand, flag string) CRStringArray {
- return CRStringArray{
- Val: c.StringArray(flag),
- createResult: newCreateResult(c, flag),
- }
-}
-
-// NewIntermediateLayer creates a GenericCLIResults from a create or run cli-command
-func NewIntermediateLayer(c *cliconfig.PodmanCommand, remote bool) GenericCLIResults {
- m := make(map[string]GenericCLIResult)
-
- m["add-host"] = newCRStringSlice(c, "add-host")
- m["annotation"] = newCRStringSlice(c, "annotation")
- m["attach"] = newCRStringSlice(c, "attach")
- m["blkio-weight"] = newCRString(c, "blkio-weight")
- m["blkio-weight-device"] = newCRStringSlice(c, "blkio-weight-device")
- m["cap-add"] = newCRStringSlice(c, "cap-add")
- m["cap-drop"] = newCRStringSlice(c, "cap-drop")
- m["cgroupns"] = newCRString(c, "cgroupns")
- m["cgroups"] = newCRString(c, "cgroups")
- m["cgroup-parent"] = newCRString(c, "cgroup-parent")
- m["cidfile"] = newCRString(c, "cidfile")
- m["conmon-pidfile"] = newCRString(c, "conmon-pidfile")
- m["cpu-period"] = newCRUint64(c, "cpu-period")
- m["cpu-quota"] = newCRInt64(c, "cpu-quota")
- m["cpu-rt-period"] = newCRUint64(c, "cpu-rt-period")
- m["cpu-rt-runtime"] = newCRInt64(c, "cpu-rt-runtime")
- m["cpu-shares"] = newCRUint64(c, "cpu-shares")
- m["cpus"] = newCRFloat64(c, "cpus")
- m["cpuset-cpus"] = newCRString(c, "cpuset-cpus")
- m["cpuset-mems"] = newCRString(c, "cpuset-mems")
- m["detach"] = newCRBool(c, "detach")
- m["detach-keys"] = newCRString(c, "detach-keys")
- m["device"] = newCRStringSlice(c, "device")
- m["device-cgroup-rule"] = newCRStringSlice(c, "device-cgroup-rule")
- m["device-read-bps"] = newCRStringSlice(c, "device-read-bps")
- m["device-read-iops"] = newCRStringSlice(c, "device-read-iops")
- m["device-write-bps"] = newCRStringSlice(c, "device-write-bps")
- m["device-write-iops"] = newCRStringSlice(c, "device-write-iops")
- m["dns"] = newCRStringSlice(c, "dns")
- m["dns-opt"] = newCRStringSlice(c, "dns-opt")
- m["dns-search"] = newCRStringSlice(c, "dns-search")
- m["entrypoint"] = newCRString(c, "entrypoint")
- m["env"] = newCRStringArray(c, "env")
- m["env-file"] = newCRStringSlice(c, "env-file")
- m["expose"] = newCRStringSlice(c, "expose")
- m["gidmap"] = newCRStringSlice(c, "gidmap")
- m["group-add"] = newCRStringSlice(c, "group-add")
- m["help"] = newCRBool(c, "help")
- m["healthcheck-command"] = newCRString(c, "health-cmd")
- m["healthcheck-interval"] = newCRString(c, "health-interval")
- m["healthcheck-retries"] = newCRUint(c, "health-retries")
- m["healthcheck-start-period"] = newCRString(c, "health-start-period")
- m["healthcheck-timeout"] = newCRString(c, "health-timeout")
- m["hostname"] = newCRString(c, "hostname")
- m["image-volume"] = newCRString(c, "image-volume")
- m["init"] = newCRBool(c, "init")
- m["init-path"] = newCRString(c, "init-path")
- m["interactive"] = newCRBool(c, "interactive")
- m["ip"] = newCRString(c, "ip")
- m["ipc"] = newCRString(c, "ipc")
- m["kernel-memory"] = newCRString(c, "kernel-memory")
- m["label"] = newCRStringArray(c, "label")
- m["label-file"] = newCRStringSlice(c, "label-file")
- m["log-driver"] = newCRString(c, "log-driver")
- m["log-opt"] = newCRStringSlice(c, "log-opt")
- m["mac-address"] = newCRString(c, "mac-address")
- m["memory"] = newCRString(c, "memory")
- m["memory-reservation"] = newCRString(c, "memory-reservation")
- m["memory-swap"] = newCRString(c, "memory-swap")
- m["memory-swappiness"] = newCRInt64(c, "memory-swappiness")
- m["name"] = newCRString(c, "name")
- m["network"] = newCRString(c, "network")
- m["no-healthcheck"] = newCRBool(c, "no-healthcheck")
- m["no-hosts"] = newCRBool(c, "no-hosts")
- m["oom-kill-disable"] = newCRBool(c, "oom-kill-disable")
- m["oom-score-adj"] = newCRInt(c, "oom-score-adj")
- m["override-arch"] = newCRString(c, "override-arch")
- m["override-os"] = newCRString(c, "override-os")
- m["pid"] = newCRString(c, "pid")
- m["pids-limit"] = newCRInt64(c, "pids-limit")
- m["pod"] = newCRString(c, "pod")
- m["privileged"] = newCRBool(c, "privileged")
- m["publish"] = newCRStringSlice(c, "publish")
- m["publish-all"] = newCRBool(c, "publish-all")
- m["pull"] = newCRString(c, "pull")
- m["quiet"] = newCRBool(c, "quiet")
- m["read-only"] = newCRBool(c, "read-only")
- m["read-only-tmpfs"] = newCRBool(c, "read-only-tmpfs")
- m["restart"] = newCRString(c, "restart")
- m["rm"] = newCRBool(c, "rm")
- m["rootfs"] = newCRBool(c, "rootfs")
- m["security-opt"] = newCRStringArray(c, "security-opt")
- m["shm-size"] = newCRString(c, "shm-size")
- m["stop-signal"] = newCRString(c, "stop-signal")
- m["stop-timeout"] = newCRUint(c, "stop-timeout")
- m["storage-opt"] = newCRStringSlice(c, "storage-opt")
- m["subgidname"] = newCRString(c, "subgidname")
- m["subuidname"] = newCRString(c, "subuidname")
- m["sysctl"] = newCRStringSlice(c, "sysctl")
- m["systemd"] = newCRString(c, "systemd")
- m["tmpfs"] = newCRStringArray(c, "tmpfs")
- m["tty"] = newCRBool(c, "tty")
- m["uidmap"] = newCRStringSlice(c, "uidmap")
- m["ulimit"] = newCRStringSlice(c, "ulimit")
- m["user"] = newCRString(c, "user")
- m["userns"] = newCRString(c, "userns")
- m["uts"] = newCRString(c, "uts")
- m["mount"] = newCRStringArray(c, "mount")
- m["volume"] = newCRStringArray(c, "volume")
- m["volumes-from"] = newCRStringSlice(c, "volumes-from")
- m["workdir"] = newCRString(c, "workdir")
- m["seccomp-policy"] = newCRString(c, "seccomp-policy")
- // global flag
- if !remote {
- m["authfile"] = newCRString(c, "authfile")
- m["cgroupns"] = newCRString(c, "cgroupns")
- m["env-host"] = newCRBool(c, "env-host")
- m["http-proxy"] = newCRBool(c, "http-proxy")
- m["trace"] = newCRBool(c, "trace")
- m["syslog"] = newCRBool(c, "syslog")
- }
-
- return GenericCLIResults{m, c.InputArgs}
-}
diff --git a/cmd/podman/shared/intermediate_novarlink.go b/cmd/podman/shared/intermediate_novarlink.go
deleted file mode 100644
index c6f011fe0..000000000
--- a/cmd/podman/shared/intermediate_novarlink.go
+++ /dev/null
@@ -1,70 +0,0 @@
-// +build !varlink
-// +build !remoteclient
-
-package shared
-
-/*
-attention
-
-in this file you will see a lot of struct duplication. this was done because people wanted a strongly typed
-varlink mechanism. this resulted in us creating this intermediate layer that allows us to take the input
-from the cli and make an intermediate layer which can be transferred as strongly typed structures over a varlink
-interface.
-
-we intentionally avoided heavy use of reflection here because we were concerned about performance impacts to the
-non-varlink intermediate layer generation.
-*/
-
-// ToString wrapper for build without varlink
-func (c CRStringSlice) ToVarlink() interface{} {
- var v interface{}
- return v
-}
-
-// ToString wrapper for build without varlink
-func (c CRString) ToVarlink() interface{} {
- var v interface{}
- return v
-}
-
-// ToString wrapper for build without varlink
-func (c CRBool) ToVarlink() interface{} {
- var v interface{}
- return v
-}
-
-// ToString wrapper for build without varlink
-func (c CRUint64) ToVarlink() interface{} {
- var v interface{}
- return v
-}
-
-// ToString wrapper for build without varlink
-func (c CRInt64) ToVarlink() interface{} {
- var v interface{}
- return v
-}
-
-// ToString wrapper for build without varlink
-func (c CRFloat64) ToVarlink() interface{} {
- var v interface{}
- return v
-}
-
-// ToString wrapper for build without varlink
-func (c CRUint) ToVarlink() interface{} {
- var v interface{}
- return v
-}
-
-// ToString wrapper for build without varlink
-func (c CRStringArray) ToVarlink() interface{} {
- var v interface{}
- return v
-}
-
-// ToString wrapper for build without varlink
-func (c CRInt) ToVarlink() interface{} {
- var v interface{}
- return v
-}
diff --git a/cmd/podman/shared/parallel.go b/cmd/podman/shared/parallel.go
deleted file mode 100644
index eb1d40073..000000000
--- a/cmd/podman/shared/parallel.go
+++ /dev/null
@@ -1,112 +0,0 @@
-package shared
-
-import (
- "runtime"
- "sync"
-)
-
-type pFunc func() error
-
-// ParallelWorkerInput is a struct used to pass in a slice of parallel funcs to be
-// performed on a container ID
-type ParallelWorkerInput struct {
- ContainerID string
- ParallelFunc pFunc
-}
-
-type containerError struct {
- ContainerID string
- Err error
-}
-
-// ParallelWorker is a "threaded" worker that takes jobs from the channel "queue"
-func ParallelWorker(wg *sync.WaitGroup, jobs <-chan ParallelWorkerInput, results chan<- containerError) {
- for j := range jobs {
- err := j.ParallelFunc()
- results <- containerError{ContainerID: j.ContainerID, Err: err}
- wg.Done()
- }
-}
-
-// ParallelExecuteWorkerPool takes container jobs and performs them in parallel. The worker
-// int determines how many workers/threads should be premade.
-func ParallelExecuteWorkerPool(workers int, functions []ParallelWorkerInput) (map[string]error, int) {
- var (
- wg sync.WaitGroup
- errorCount int
- )
-
- resultChan := make(chan containerError, len(functions))
- results := make(map[string]error)
- paraJobs := make(chan ParallelWorkerInput, len(functions))
-
- // If we have more workers than functions, match up the number of workers and functions
- if workers > len(functions) {
- workers = len(functions)
- }
-
- // Create the workers
- for w := 1; w <= workers; w++ {
- go ParallelWorker(&wg, paraJobs, resultChan)
- }
-
- // Add jobs to the workers
- for _, j := range functions {
- j := j
- wg.Add(1)
- paraJobs <- j
- }
-
- close(paraJobs)
- wg.Wait()
-
- close(resultChan)
- for ctrError := range resultChan {
- results[ctrError.ContainerID] = ctrError.Err
- if ctrError.Err != nil {
- errorCount += 1
- }
- }
-
- return results, errorCount
-}
-
-// Parallelize provides the maximum number of parallel workers (int) as calculated by a basic
-// heuristic. This can be overridden by the --max-workers primary switch to podman.
-func Parallelize(job string) int {
- numCpus := runtime.NumCPU()
- switch job {
- case "kill":
- if numCpus <= 3 {
- return numCpus * 3
- }
- return numCpus * 4
- case "pause":
- if numCpus <= 3 {
- return numCpus * 3
- }
- return numCpus * 4
- case "ps":
- return 8
- case "restart":
- return numCpus * 2
- case "rm":
- if numCpus <= 3 {
- return numCpus * 3
- } else {
- return numCpus * 4
- }
- case "stop":
- if numCpus <= 2 {
- return 4
- } else {
- return numCpus * 3
- }
- case "unpause":
- if numCpus <= 3 {
- return numCpus * 3
- }
- return numCpus * 4
- }
- return 3
-}
diff --git a/cmd/podman/shared/parse/parse.go b/cmd/podman/shared/parse/parse.go
deleted file mode 100644
index 03cda268c..000000000
--- a/cmd/podman/shared/parse/parse.go
+++ /dev/null
@@ -1,188 +0,0 @@
-//nolint
-// most of these validate and parse functions have been taken from projectatomic/docker
-// and modified for cri-o
-package parse
-
-import (
- "bufio"
- "fmt"
- "net"
- "net/url"
- "os"
- "regexp"
- "strings"
-
- "github.com/pkg/errors"
-)
-
-const (
- Protocol_TCP Protocol = 0
- Protocol_UDP Protocol = 1
-)
-
-type Protocol int32
-
-// PortMapping specifies the port mapping configurations of a sandbox.
-type PortMapping struct {
- // Protocol of the port mapping.
- Protocol Protocol `protobuf:"varint,1,opt,name=protocol,proto3,enum=runtime.Protocol" json:"protocol,omitempty"`
- // Port number within the container. Default: 0 (not specified).
- ContainerPort int32 `protobuf:"varint,2,opt,name=container_port,json=containerPort,proto3" json:"container_port,omitempty"`
- // Port number on the host. Default: 0 (not specified).
- HostPort int32 `protobuf:"varint,3,opt,name=host_port,json=hostPort,proto3" json:"host_port,omitempty"`
- // Host IP.
- HostIp string `protobuf:"bytes,4,opt,name=host_ip,json=hostIp,proto3" json:"host_ip,omitempty"`
-}
-
-// Note: for flags that are in the form <number><unit>, use the RAMInBytes function
-// from the units package in docker/go-units/size.go
-
-var (
- whiteSpaces = " \t"
- alphaRegexp = regexp.MustCompile(`[a-zA-Z]`)
- domainRegexp = regexp.MustCompile(`^(:?(:?[a-zA-Z0-9]|(:?[a-zA-Z0-9][a-zA-Z0-9\-]*[a-zA-Z0-9]))(:?\.(:?[a-zA-Z0-9]|(:?[a-zA-Z0-9][a-zA-Z0-9\-]*[a-zA-Z0-9])))*)\.?\s*$`)
-)
-
-// validateExtraHost validates that the specified string is a valid extrahost and returns it.
-// ExtraHost is in the form of name:ip where the ip has to be a valid ip (ipv4 or ipv6).
-// for add-host flag
-func ValidateExtraHost(val string) (string, error) { //nolint
- // allow for IPv6 addresses in extra hosts by only splitting on first ":"
- arr := strings.SplitN(val, ":", 2)
- if len(arr) != 2 || len(arr[0]) == 0 {
- return "", fmt.Errorf("bad format for add-host: %q", val)
- }
- if _, err := validateIPAddress(arr[1]); err != nil {
- return "", fmt.Errorf("invalid IP address in add-host: %q", arr[1])
- }
- return val, nil
-}
-
-// validateIPAddress validates an Ip address.
-// for dns, ip, and ip6 flags also
-func validateIPAddress(val string) (string, error) {
- var ip = net.ParseIP(strings.TrimSpace(val))
- if ip != nil {
- return ip.String(), nil
- }
- return "", fmt.Errorf("%s is not an ip address", val)
-}
-
-func ValidateDomain(val string) (string, error) {
- if alphaRegexp.FindString(val) == "" {
- return "", fmt.Errorf("%s is not a valid domain", val)
- }
- ns := domainRegexp.FindSubmatch([]byte(val))
- if len(ns) > 0 && len(ns[1]) < 255 {
- return string(ns[1]), nil
- }
- return "", fmt.Errorf("%s is not a valid domain", val)
-}
-
-// GetAllLabels retrieves all labels given a potential label file and a number
-// of labels provided from the command line.
-func GetAllLabels(labelFile, inputLabels []string) (map[string]string, error) {
- labels := make(map[string]string)
- for _, file := range labelFile {
- // Use of parseEnvFile still seems safe, as it's missing the
- // extra parsing logic of parseEnv.
- // There's an argument that we SHOULD be doing that parsing for
- // all environment variables, even those sourced from files, but
- // that would require a substantial rework.
- if err := parseEnvFile(labels, file); err != nil {
- // FIXME: parseEnvFile is using parseEnv, so we need to add extra
- // logic for labels.
- return nil, err
- }
- }
- for _, label := range inputLabels {
- split := strings.SplitN(label, "=", 2)
- if split[0] == "" {
- return nil, errors.Errorf("invalid label format: %q", label)
- }
- value := ""
- if len(split) > 1 {
- value = split[1]
- }
- labels[split[0]] = value
- }
- return labels, nil
-}
-
-func parseEnv(env map[string]string, line string) error {
- data := strings.SplitN(line, "=", 2)
-
- // catch invalid variables such as "=" or "=A"
- if data[0] == "" {
- return errors.Errorf("invalid environment variable: %q", line)
- }
-
- // trim the front of a variable, but nothing else
- name := strings.TrimLeft(data[0], whiteSpaces)
- if strings.ContainsAny(name, whiteSpaces) {
- return errors.Errorf("name %q has white spaces, poorly formatted name", name)
- }
-
- if len(data) > 1 {
- env[name] = data[1]
- } else {
- if strings.HasSuffix(name, "*") {
- name = strings.TrimSuffix(name, "*")
- for _, e := range os.Environ() {
- part := strings.SplitN(e, "=", 2)
- if len(part) < 2 {
- continue
- }
- if strings.HasPrefix(part[0], name) {
- env[part[0]] = part[1]
- }
- }
- } else {
- // if only a pass-through variable is given, clean it up.
- if val, ok := os.LookupEnv(name); ok {
- env[name] = val
- }
- }
- }
- return nil
-}
-
-// parseEnvFile reads a file with environment variables enumerated by lines
-func parseEnvFile(env map[string]string, filename string) error {
- fh, err := os.Open(filename)
- if err != nil {
- return err
- }
- defer fh.Close()
-
- scanner := bufio.NewScanner(fh)
- for scanner.Scan() {
- // trim the line from all leading whitespace first
- line := strings.TrimLeft(scanner.Text(), whiteSpaces)
- // line is not empty, and not starting with '#'
- if len(line) > 0 && !strings.HasPrefix(line, "#") {
- if err := parseEnv(env, line); err != nil {
- return err
- }
- }
- }
- return scanner.Err()
-}
-
-// ValidateFileName returns an error if filename contains ":"
-// as it is currently not supported
-func ValidateFileName(filename string) error {
- if strings.Contains(filename, ":") {
- return errors.Errorf("invalid filename (should not contain ':') %q", filename)
- }
- return nil
-}
-
-// ValidURL checks a string urlStr is a url or not
-func ValidURL(urlStr string) error {
- _, err := url.ParseRequestURI(urlStr)
- if err != nil {
- return errors.Wrapf(err, "invalid url path: %q", urlStr)
- }
- return nil
-}
diff --git a/cmd/podman/shared/parse/parse_test.go b/cmd/podman/shared/parse/parse_test.go
deleted file mode 100644
index a6ddc2be9..000000000
--- a/cmd/podman/shared/parse/parse_test.go
+++ /dev/null
@@ -1,152 +0,0 @@
-//nolint
-// most of these validate and parse functions have been taken from projectatomic/docker
-// and modified for cri-o
-package parse
-
-import (
- "io/ioutil"
- "os"
- "testing"
-
- "github.com/stretchr/testify/assert"
-)
-
-var (
- Var1 = []string{"ONE=1", "TWO=2"}
-)
-
-func createTmpFile(content []byte) (string, error) {
- tmpfile, err := ioutil.TempFile(os.TempDir(), "unittest")
- if err != nil {
- return "", err
- }
-
- if _, err := tmpfile.Write(content); err != nil {
- return "", err
-
- }
- if err := tmpfile.Close(); err != nil {
- return "", err
- }
- return tmpfile.Name(), nil
-}
-
-func TestValidateExtraHost(t *testing.T) {
- type args struct {
- val string
- }
- tests := []struct {
- name string
- args args
- want string
- wantErr bool
- }{
- //2001:0db8:85a3:0000:0000:8a2e:0370:7334
- {name: "good-ipv4", args: args{val: "foobar:192.168.1.1"}, want: "foobar:192.168.1.1", wantErr: false},
- {name: "bad-ipv4", args: args{val: "foobar:999.999.999.99"}, want: "", wantErr: true},
- {name: "bad-ipv4", args: args{val: "foobar:999.999.999"}, want: "", wantErr: true},
- {name: "noname-ipv4", args: args{val: "192.168.1.1"}, want: "", wantErr: true},
- {name: "noname-ipv4", args: args{val: ":192.168.1.1"}, want: "", wantErr: true},
- {name: "noip", args: args{val: "foobar:"}, want: "", wantErr: true},
- {name: "noip", args: args{val: "foobar"}, want: "", wantErr: true},
- {name: "good-ipv6", args: args{val: "foobar:2001:0db8:85a3:0000:0000:8a2e:0370:7334"}, want: "foobar:2001:0db8:85a3:0000:0000:8a2e:0370:7334", wantErr: false},
- {name: "bad-ipv6", args: args{val: "foobar:0db8:85a3:0000:0000:8a2e:0370:7334"}, want: "", wantErr: true},
- {name: "bad-ipv6", args: args{val: "foobar:0db8:85a3:0000:0000:8a2e:0370:7334.0000.0000.000"}, want: "", wantErr: true},
- {name: "noname-ipv6", args: args{val: "2001:0db8:85a3:0000:0000:8a2e:0370:7334"}, want: "", wantErr: true},
- {name: "noname-ipv6", args: args{val: ":2001:0db8:85a3:0000:0000:8a2e:0370:7334"}, want: "", wantErr: true},
- }
- for _, tt := range tests {
- t.Run(tt.name, func(t *testing.T) {
- got, err := ValidateExtraHost(tt.args.val)
- if (err != nil) != tt.wantErr {
- t.Errorf("ValidateExtraHost() error = %v, wantErr %v", err, tt.wantErr)
- return
- }
- if got != tt.want {
- t.Errorf("ValidateExtraHost() = %v, want %v", got, tt.want)
- }
- })
- }
-}
-
-func Test_validateIPAddress(t *testing.T) {
- type args struct {
- val string
- }
- tests := []struct {
- name string
- args args
- want string
- wantErr bool
- }{
- {name: "ipv4-good", args: args{val: "192.168.1.1"}, want: "192.168.1.1", wantErr: false},
- {name: "ipv4-bad", args: args{val: "192.168.1.1.1"}, want: "", wantErr: true},
- {name: "ipv4-bad", args: args{val: "192."}, want: "", wantErr: true},
- }
- for _, tt := range tests {
- t.Run(tt.name, func(t *testing.T) {
- got, err := validateIPAddress(tt.args.val)
- if (err != nil) != tt.wantErr {
- t.Errorf("validateIPAddress() error = %v, wantErr %v", err, tt.wantErr)
- return
- }
- if got != tt.want {
- t.Errorf("validateIPAddress() = %v, want %v", got, tt.want)
- }
- })
- }
-}
-
-func TestValidateFileName(t *testing.T) {
- type args struct {
- filename string
- }
- tests := []struct {
- name string
- args args
- wantErr bool
- }{
- {name: "good", args: args{filename: "/some/rand/path"}, wantErr: false},
- {name: "good", args: args{filename: "some/rand/path"}, wantErr: false},
- {name: "good", args: args{filename: "/"}, wantErr: false},
- {name: "bad", args: args{filename: "/:"}, wantErr: true},
- {name: "bad", args: args{filename: ":/"}, wantErr: true},
- {name: "bad", args: args{filename: "/some/rand:/path"}, wantErr: true},
- }
- for _, tt := range tests {
- t.Run(tt.name, func(t *testing.T) {
- if err := ValidateFileName(tt.args.filename); (err != nil) != tt.wantErr {
- t.Errorf("ValidateFileName() error = %v, wantErr %v", err, tt.wantErr)
- }
- })
- }
-}
-
-func TestGetAllLabels(t *testing.T) {
- fileLabels := []string{}
- labels, _ := GetAllLabels(fileLabels, Var1)
- assert.Equal(t, len(labels), 2)
-}
-
-func TestGetAllLabelsBadKeyValue(t *testing.T) {
- inLabels := []string{"=badValue", "="}
- fileLabels := []string{}
- _, err := GetAllLabels(fileLabels, inLabels)
- assert.Error(t, err, assert.AnError)
-}
-
-func TestGetAllLabelsBadLabelFile(t *testing.T) {
- fileLabels := []string{"/foobar5001/be"}
- _, err := GetAllLabels(fileLabels, Var1)
- assert.Error(t, err, assert.AnError)
-}
-
-func TestGetAllLabelsFile(t *testing.T) {
- content := []byte("THREE=3")
- tFile, err := createTmpFile(content)
- defer os.Remove(tFile)
- assert.NoError(t, err)
- fileLabels := []string{tFile}
- result, _ := GetAllLabels(fileLabels, Var1)
- assert.Equal(t, len(result), 3)
-}
diff --git a/cmd/podman/shared/pod.go b/cmd/podman/shared/pod.go
deleted file mode 100644
index 50bd88e08..000000000
--- a/cmd/podman/shared/pod.go
+++ /dev/null
@@ -1,279 +0,0 @@
-package shared
-
-import (
- "strconv"
- "strings"
-
- "github.com/containers/libpod/libpod"
- "github.com/containers/libpod/libpod/define"
- "github.com/containers/libpod/pkg/util"
- "github.com/cri-o/ocicni/pkg/ocicni"
- "github.com/docker/go-connections/nat"
- "github.com/pkg/errors"
-)
-
-// TODO GetPodStatus and CreatePodStatusResults should removed once the adapter
-// and shared packages are reworked. It has now been duplicated in libpod proper.
-
-// GetPodStatus determines the status of the pod based on the
-// statuses of the containers in the pod.
-// Returns a string representation of the pod status
-func GetPodStatus(pod *libpod.Pod) (string, error) {
- ctrStatuses, err := pod.Status()
- if err != nil {
- return define.PodStateErrored, err
- }
- return CreatePodStatusResults(ctrStatuses)
-}
-
-func CreatePodStatusResults(ctrStatuses map[string]define.ContainerStatus) (string, error) {
- ctrNum := len(ctrStatuses)
- if ctrNum == 0 {
- return define.PodStateCreated, nil
- }
- statuses := map[string]int{
- define.PodStateStopped: 0,
- define.PodStateRunning: 0,
- define.PodStatePaused: 0,
- define.PodStateCreated: 0,
- define.PodStateErrored: 0,
- }
- for _, ctrStatus := range ctrStatuses {
- switch ctrStatus {
- case define.ContainerStateExited:
- fallthrough
- case define.ContainerStateStopped:
- statuses[define.PodStateStopped]++
- case define.ContainerStateRunning:
- statuses[define.PodStateRunning]++
- case define.ContainerStatePaused:
- statuses[define.PodStatePaused]++
- case define.ContainerStateCreated, define.ContainerStateConfigured:
- statuses[define.PodStateCreated]++
- default:
- statuses[define.PodStateErrored]++
- }
- }
-
- switch {
- case statuses[define.PodStateRunning] > 0:
- return define.PodStateRunning, nil
- case statuses[define.PodStatePaused] == ctrNum:
- return define.PodStatePaused, nil
- case statuses[define.PodStateStopped] == ctrNum:
- return define.PodStateExited, nil
- case statuses[define.PodStateStopped] > 0:
- return define.PodStateStopped, nil
- case statuses[define.PodStateErrored] > 0:
- return define.PodStateErrored, nil
- default:
- return define.PodStateCreated, nil
- }
-}
-
-// GetNamespaceOptions transforms a slice of kernel namespaces
-// into a slice of pod create options. Currently, not all
-// kernel namespaces are supported, and they will be returned in an error
-func GetNamespaceOptions(ns []string) ([]libpod.PodCreateOption, error) {
- var options []libpod.PodCreateOption
- var erroredOptions []libpod.PodCreateOption
- for _, toShare := range ns {
- switch toShare {
- case "cgroup":
- options = append(options, libpod.WithPodCgroups())
- case "net":
- options = append(options, libpod.WithPodNet())
- case "mnt":
- return erroredOptions, errors.Errorf("Mount sharing functionality not supported on pod level")
- case "pid":
- options = append(options, libpod.WithPodPID())
- case "user":
- return erroredOptions, errors.Errorf("User sharing functionality not supported on pod level")
- case "ipc":
- options = append(options, libpod.WithPodIPC())
- case "uts":
- options = append(options, libpod.WithPodUTS())
- case "":
- case "none":
- return erroredOptions, nil
- default:
- return erroredOptions, errors.Errorf("Invalid kernel namespace to share: %s. Options are: net, pid, ipc, uts or none", toShare)
- }
- }
- return options, nil
-}
-
-// CreatePortBindings iterates ports mappings and exposed ports into a format CNI understands
-func CreatePortBindings(ports []string) ([]ocicni.PortMapping, error) {
- var portBindings []ocicni.PortMapping
- // The conversion from []string to natBindings is temporary while mheon reworks the port
- // deduplication code. Eventually that step will not be required.
- _, natBindings, err := nat.ParsePortSpecs(ports)
- if err != nil {
- return nil, err
- }
- for containerPb, hostPb := range natBindings {
- var pm ocicni.PortMapping
- pm.ContainerPort = int32(containerPb.Int())
- for _, i := range hostPb {
- var hostPort int
- var err error
- pm.HostIP = i.HostIP
- if i.HostPort == "" {
- hostPort = containerPb.Int()
- } else {
- hostPort, err = strconv.Atoi(i.HostPort)
- if err != nil {
- return nil, errors.Wrapf(err, "unable to convert host port to integer")
- }
- }
-
- pm.HostPort = int32(hostPort)
- pm.Protocol = containerPb.Proto()
- portBindings = append(portBindings, pm)
- }
- }
- return portBindings, nil
-}
-
-// GetPodsWithFilters uses the cliconfig to categorize if the latest pod is required.
-func GetPodsWithFilters(r *libpod.Runtime, filters string) ([]*libpod.Pod, error) {
- filterFuncs, err := GenerateFilterFunction(r, strings.Split(filters, ","))
- if err != nil {
- return nil, err
- }
- return FilterAllPodsWithFilterFunc(r, filterFuncs...)
-}
-
-// FilterAllPodsWithFilterFunc retrieves all pods
-// Filters can be provided which will determine which pods are included in the
-// output. Multiple filters are handled by ANDing their output, so only pods
-// matching all filters are returned
-func FilterAllPodsWithFilterFunc(r *libpod.Runtime, filters ...libpod.PodFilter) ([]*libpod.Pod, error) {
- pods, err := r.Pods(filters...)
- if err != nil {
- return nil, err
- }
- return pods, nil
-}
-
-// GenerateFilterFunction basically gets the filters based on the input by the user
-// and filter the pod list based on the criteria.
-func GenerateFilterFunction(r *libpod.Runtime, filters []string) ([]libpod.PodFilter, error) {
- var filterFuncs []libpod.PodFilter
- for _, f := range filters {
- filterSplit := strings.SplitN(f, "=", 2)
- if len(filterSplit) < 2 {
- return nil, errors.Errorf("filter input must be in the form of filter=value: %s is invalid", f)
- }
- generatedFunc, err := generatePodFilterFuncs(filterSplit[0], filterSplit[1])
- if err != nil {
- return nil, errors.Wrapf(err, "invalid filter")
- }
- filterFuncs = append(filterFuncs, generatedFunc)
- }
-
- return filterFuncs, nil
-}
-func generatePodFilterFuncs(filter, filterValue string) (
- func(pod *libpod.Pod) bool, error) {
- switch filter {
- case "ctr-ids":
- return func(p *libpod.Pod) bool {
- ctrIds, err := p.AllContainersByID()
- if err != nil {
- return false
- }
- return util.StringInSlice(filterValue, ctrIds)
- }, nil
- case "ctr-names":
- return func(p *libpod.Pod) bool {
- ctrs, err := p.AllContainers()
- if err != nil {
- return false
- }
- for _, ctr := range ctrs {
- if filterValue == ctr.Name() {
- return true
- }
- }
- return false
- }, nil
- case "ctr-number":
- return func(p *libpod.Pod) bool {
- ctrIds, err := p.AllContainersByID()
- if err != nil {
- return false
- }
-
- fVint, err2 := strconv.Atoi(filterValue)
- if err2 != nil {
- return false
- }
- return len(ctrIds) == fVint
- }, nil
- case "ctr-status":
- if !util.StringInSlice(filterValue,
- []string{"created", "restarting", "running", "paused",
- "exited", "unknown"}) {
- return nil, errors.Errorf("%s is not a valid status", filterValue)
- }
- return func(p *libpod.Pod) bool {
- ctr_statuses, err := p.Status()
- if err != nil {
- return false
- }
- for _, ctr_status := range ctr_statuses {
- state := ctr_status.String()
- if ctr_status == define.ContainerStateConfigured {
- state = "created"
- }
- if state == filterValue {
- return true
- }
- }
- return false
- }, nil
- case "id":
- return func(p *libpod.Pod) bool {
- return strings.Contains(p.ID(), filterValue)
- }, nil
- case "name":
- return func(p *libpod.Pod) bool {
- return strings.Contains(p.Name(), filterValue)
- }, nil
- case "status":
- if !util.StringInSlice(filterValue, []string{"stopped", "running", "paused", "exited", "dead", "created"}) {
- return nil, errors.Errorf("%s is not a valid pod status", filterValue)
- }
- return func(p *libpod.Pod) bool {
- status, err := p.GetPodStatus()
- if err != nil {
- return false
- }
- if strings.ToLower(status) == filterValue {
- return true
- }
- return false
- }, nil
- case "label":
- var filterArray = strings.SplitN(filterValue, "=", 2)
- var filterKey = filterArray[0]
- if len(filterArray) > 1 {
- filterValue = filterArray[1]
- } else {
- filterValue = ""
- }
- return func(p *libpod.Pod) bool {
- for labelKey, labelValue := range p.Labels() {
- if labelKey == filterKey && ("" == filterValue || labelValue == filterValue) {
- return true
- }
- }
- return false
- }, nil
- }
- return nil, errors.Errorf("%s is an invalid filter", filter)
-}
-
-var DefaultKernelNamespaces = "cgroup,ipc,net,uts"
diff --git a/cmd/podman/shared/volumes_shared.go b/cmd/podman/shared/volumes_shared.go
deleted file mode 100644
index 74c0ce011..000000000
--- a/cmd/podman/shared/volumes_shared.go
+++ /dev/null
@@ -1,109 +0,0 @@
-package shared
-
-import (
- "context"
- "strconv"
- "strings"
-
- "github.com/containers/libpod/libpod"
- "github.com/containers/libpod/libpod/define"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
-)
-
-// Remove given set of volumes
-func SharedRemoveVolumes(ctx context.Context, runtime *libpod.Runtime, vols []string, all, force bool) ([]string, map[string]error, error) {
- var (
- toRemove []*libpod.Volume
- success []string
- failed map[string]error
- )
-
- failed = make(map[string]error)
-
- if all {
- vols, err := runtime.Volumes()
- if err != nil {
- return nil, nil, err
- }
- toRemove = vols
- } else {
- for _, v := range vols {
- vol, err := runtime.LookupVolume(v)
- if err != nil {
- failed[v] = err
- continue
- }
- toRemove = append(toRemove, vol)
- }
- }
-
- // We could parallelize this, but I haven't heard anyone complain about
- // performance here yet, so hold off.
- for _, vol := range toRemove {
- if err := runtime.RemoveVolume(ctx, vol, force); err != nil {
- failed[vol.Name()] = err
- continue
- }
- success = append(success, vol.Name())
- }
-
- return success, failed, nil
-}
-
-// Handle volume options from CLI.
-// Parse "o" option to find UID, GID.
-func ParseVolumeOptions(opts map[string]string) ([]libpod.VolumeCreateOption, error) {
- libpodOptions := []libpod.VolumeCreateOption{}
- volumeOptions := make(map[string]string)
-
- for key, value := range opts {
- switch key {
- case "o":
- // o has special handling to parse out UID, GID.
- // These are separate Libpod options.
- splitVal := strings.Split(value, ",")
- finalVal := []string{}
- for _, o := range splitVal {
- // Options will be formatted as either "opt" or
- // "opt=value"
- splitO := strings.SplitN(o, "=", 2)
- switch strings.ToLower(splitO[0]) {
- case "uid":
- if len(splitO) != 2 {
- return nil, errors.Wrapf(define.ErrInvalidArg, "uid option must provide a UID")
- }
- intUID, err := strconv.Atoi(splitO[1])
- if err != nil {
- return nil, errors.Wrapf(err, "cannot convert UID %s to integer", splitO[1])
- }
- logrus.Debugf("Removing uid= from options and adding WithVolumeUID for UID %d", intUID)
- libpodOptions = append(libpodOptions, libpod.WithVolumeUID(intUID))
- case "gid":
- if len(splitO) != 2 {
- return nil, errors.Wrapf(define.ErrInvalidArg, "gid option must provide a GID")
- }
- intGID, err := strconv.Atoi(splitO[1])
- if err != nil {
- return nil, errors.Wrapf(err, "cannot convert GID %s to integer", splitO[1])
- }
- logrus.Debugf("Removing gid= from options and adding WithVolumeGID for GID %d", intGID)
- libpodOptions = append(libpodOptions, libpod.WithVolumeGID(intGID))
- default:
- finalVal = append(finalVal, o)
- }
- }
- if len(finalVal) > 0 {
- volumeOptions[key] = strings.Join(finalVal, ",")
- }
- default:
- volumeOptions[key] = value
- }
- }
-
- if len(volumeOptions) > 0 {
- libpodOptions = append(libpodOptions, libpod.WithVolumeOptions(volumeOptions))
- }
-
- return libpodOptions, nil
-}
diff --git a/cmd/podman/shared/workers.go b/cmd/podman/shared/workers.go
deleted file mode 100644
index a9d6bb77e..000000000
--- a/cmd/podman/shared/workers.go
+++ /dev/null
@@ -1,138 +0,0 @@
-package shared
-
-import (
- "reflect"
- "runtime"
- "strings"
- "sync"
-
- "github.com/sirupsen/logrus"
-)
-
-// JobFunc provides the function signature for the pool'ed functions
-type JobFunc func() error
-
-// Job defines the function to run
-type Job struct {
- ID string
- Fn JobFunc
-}
-
-// JobResult defines the results from the function ran
-type JobResult struct {
- Job Job
- Err error
-}
-
-// Pool defines the worker pool and queues
-type Pool struct {
- id string
- wg *sync.WaitGroup
- jobs chan Job
- results chan JobResult
- size int
- capacity int
-}
-
-// NewPool creates and initializes a new Pool
-func NewPool(id string, size int, capacity int) *Pool {
- var wg sync.WaitGroup
-
- // min for int...
- s := size
- if s > capacity {
- s = capacity
- }
-
- return &Pool{
- id,
- &wg,
- make(chan Job, capacity),
- make(chan JobResult, capacity),
- s,
- capacity,
- }
-}
-
-// Add Job to pool for parallel processing
-func (p *Pool) Add(job Job) {
- p.wg.Add(1)
- p.jobs <- job
-}
-
-// Run the Job's in the pool, gather and return results
-func (p *Pool) Run() ([]string, map[string]error, error) {
- var (
- ok = []string{}
- failures = map[string]error{}
- )
-
- for w := 0; w < p.size; w++ {
- w := w
- go p.newWorker(w)
- }
- close(p.jobs)
- p.wg.Wait()
-
- close(p.results)
- for r := range p.results {
- if r.Err == nil {
- ok = append(ok, r.Job.ID)
- } else {
- failures[r.Job.ID] = r.Err
- }
- }
-
- if logrus.GetLevel() == logrus.DebugLevel {
- for i, f := range failures {
- logrus.Debugf("Pool[%s, %s: %s]", p.id, i, f.Error())
- }
- }
-
- return ok, failures, nil
-}
-
-// newWorker creates new parallel workers to monitor jobs channel from Pool
-func (p *Pool) newWorker(slot int) {
- for job := range p.jobs {
- err := job.Fn()
- p.results <- JobResult{job, err}
- if logrus.GetLevel() == logrus.DebugLevel {
- n := strings.Split(runtime.FuncForPC(reflect.ValueOf(job.Fn).Pointer()).Name(), ".")
- logrus.Debugf("Worker#%d finished job %s/%s (%v)", slot, n[2:], job.ID, err)
- }
- p.wg.Done()
- }
-}
-
-// DefaultPoolSize provides the maximum number of parallel workers (int) as calculated by a basic
-// heuristic. This can be overridden by the --max-workers primary switch to podman.
-func DefaultPoolSize(name string) int {
- numCpus := runtime.NumCPU()
- switch name {
- case "init":
- fallthrough
- case "kill":
- fallthrough
- case "pause":
- fallthrough
- case "rm":
- fallthrough
- case "unpause":
- if numCpus <= 3 {
- return numCpus * 3
- }
- return numCpus * 4
- case "ps":
- return 8
- case "restart":
- return numCpus * 2
- case "stop":
- if numCpus <= 2 {
- return 4
- } else {
- return numCpus * 3
- }
- }
- return 3
-}
diff --git a/cmd/podman/sign.go b/cmd/podman/sign.go
deleted file mode 100644
index 7da3459cf..000000000
--- a/cmd/podman/sign.go
+++ /dev/null
@@ -1,226 +0,0 @@
-package main
-
-import (
- "io/ioutil"
- "net/url"
- "os"
- "path/filepath"
- "strconv"
- "strings"
-
- "github.com/containers/image/v5/signature"
- "github.com/containers/image/v5/transports"
- "github.com/containers/image/v5/transports/alltransports"
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/cmd/podman/libpodruntime"
- "github.com/containers/libpod/libpod/image"
- "github.com/containers/libpod/pkg/rootless"
- "github.com/containers/libpod/pkg/trust"
- "github.com/containers/libpod/pkg/util"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- "github.com/spf13/cobra"
-)
-
-var (
- signCommand cliconfig.SignValues
- signDescription = "Create a signature file that can be used later to verify the image."
- _signCommand = &cobra.Command{
- Use: "sign [flags] IMAGE [IMAGE...]",
- Short: "Sign an image",
- Long: signDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- signCommand.InputArgs = args
- signCommand.GlobalFlags = MainGlobalOpts
- signCommand.Remote = remoteclient
- return signCmd(&signCommand)
- },
- Example: `podman image sign --sign-by mykey imageID
- podman image sign --sign-by mykey --directory ./mykeydir imageID`,
- }
-)
-
-func init() {
- signCommand.Command = _signCommand
- signCommand.SetHelpTemplate(HelpTemplate())
- signCommand.SetUsageTemplate(UsageTemplate())
- flags := signCommand.Flags()
- flags.StringVarP(&signCommand.Directory, "directory", "d", "", "Define an alternate directory to store signatures")
- flags.StringVar(&signCommand.SignBy, "sign-by", "", "Name of the signing key")
- flags.StringVar(&signCommand.CertDir, "cert-dir", "", "`Pathname` of a directory containing TLS certificates and keys")
-}
-
-// SignatureStoreDir defines default directory to store signatures
-const SignatureStoreDir = "/var/lib/containers/sigstore"
-
-func signCmd(c *cliconfig.SignValues) error {
- args := c.InputArgs
- if len(args) < 1 {
- return errors.Errorf("at least one image name must be specified")
- }
- runtime, err := libpodruntime.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not create runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- signby := c.SignBy
- if signby == "" {
- return errors.Errorf("please provide an identity")
- }
-
- var sigStoreDir string
- if c.Flag("directory").Changed {
- sigStoreDir = c.Directory
- if _, err := os.Stat(sigStoreDir); err != nil {
- return errors.Wrapf(err, "invalid directory %s", sigStoreDir)
- }
- }
-
- sc := runtime.SystemContext()
- sc.DockerCertPath = c.CertDir
-
- dockerRegistryOptions := image.DockerRegistryOptions{
- DockerCertPath: c.CertDir,
- }
-
- mech, err := signature.NewGPGSigningMechanism()
- if err != nil {
- return errors.Wrap(err, "error initializing GPG")
- }
- defer mech.Close()
- if err := mech.SupportsSigning(); err != nil {
- return errors.Wrap(err, "signing is not supported")
- }
-
- systemRegistriesDirPath := trust.RegistriesDirPath(sc)
- registryConfigs, err := trust.LoadAndMergeConfig(systemRegistriesDirPath)
- if err != nil {
- return errors.Wrapf(err, "error reading registry configuration")
- }
-
- for _, signimage := range args {
- srcRef, err := alltransports.ParseImageName(signimage)
- if err != nil {
- return errors.Wrapf(err, "error parsing image name")
- }
- rawSource, err := srcRef.NewImageSource(getContext(), sc)
- if err != nil {
- return errors.Wrapf(err, "error getting image source")
- }
- err = rawSource.Close()
- if err != nil {
- logrus.Errorf("unable to close new image source %q", err)
- }
- manifest, _, err := rawSource.GetManifest(getContext(), nil)
- if err != nil {
- return errors.Wrapf(err, "error getting manifest")
- }
- dockerReference := rawSource.Reference().DockerReference()
- if dockerReference == nil {
- return errors.Errorf("cannot determine canonical Docker reference for destination %s", transports.ImageName(rawSource.Reference()))
- }
-
- // create the signstore file
- rtc, err := runtime.GetConfig()
- if err != nil {
- return err
- }
- newImage, err := runtime.ImageRuntime().New(getContext(), signimage, rtc.Engine.SignaturePolicyPath, "", os.Stderr, &dockerRegistryOptions, image.SigningOptions{SignBy: signby}, nil, util.PullImageMissing)
- if err != nil {
- return errors.Wrapf(err, "error pulling image %s", signimage)
- }
-
- if rootless.IsRootless() {
- if sigStoreDir == "" {
- sigStoreDir = filepath.Join(filepath.Dir(runtime.StorageConfig().GraphRoot), "sigstore")
- }
- } else {
- registryInfo := trust.HaveMatchRegistry(rawSource.Reference().DockerReference().String(), registryConfigs)
- if registryInfo != nil {
- if sigStoreDir == "" {
- sigStoreDir = registryInfo.SigStoreStaging
- if sigStoreDir == "" {
- sigStoreDir = registryInfo.SigStore
- }
- }
- sigStoreDir, err = isValidSigStoreDir(sigStoreDir)
- if err != nil {
- return errors.Wrapf(err, "invalid signature storage %s", sigStoreDir)
- }
- }
- if sigStoreDir == "" {
- sigStoreDir = SignatureStoreDir
- }
- }
-
- repos, err := newImage.RepoDigests()
- if err != nil {
- return errors.Wrapf(err, "error calculating repo digests for %s", signimage)
- }
- if len(repos) == 0 {
- logrus.Errorf("no repodigests associated with the image %s", signimage)
- continue
- }
-
- // create signature
- newSig, err := signature.SignDockerManifest(manifest, dockerReference.String(), mech, signby)
- if err != nil {
- return errors.Wrapf(err, "error creating new signature")
- }
-
- trimmedDigest := strings.TrimPrefix(repos[0], strings.Split(repos[0], "/")[0])
- sigStoreDir = filepath.Join(sigStoreDir, strings.Replace(trimmedDigest, ":", "=", 1))
- if err := os.MkdirAll(sigStoreDir, 0751); err != nil {
- // The directory is allowed to exist
- if !os.IsExist(err) {
- logrus.Errorf("error creating directory %s: %s", sigStoreDir, err)
- continue
- }
- }
- sigFilename, err := getSigFilename(sigStoreDir)
- if err != nil {
- logrus.Errorf("error creating sigstore file: %v", err)
- continue
- }
- err = ioutil.WriteFile(filepath.Join(sigStoreDir, sigFilename), newSig, 0644)
- if err != nil {
- logrus.Errorf("error storing signature for %s", rawSource.Reference().DockerReference().String())
- continue
- }
- }
- return nil
-}
-
-func getSigFilename(sigStoreDirPath string) (string, error) {
- sigFileSuffix := 1
- sigFiles, err := ioutil.ReadDir(sigStoreDirPath)
- if err != nil {
- return "", err
- }
- sigFilenames := make(map[string]bool)
- for _, file := range sigFiles {
- sigFilenames[file.Name()] = true
- }
- for {
- sigFilename := "signature-" + strconv.Itoa(sigFileSuffix)
- if _, exists := sigFilenames[sigFilename]; !exists {
- return sigFilename, nil
- }
- sigFileSuffix++
- }
-}
-
-func isValidSigStoreDir(sigStoreDir string) (string, error) {
- writeURIs := map[string]bool{"file": true}
- url, err := url.Parse(sigStoreDir)
- if err != nil {
- return sigStoreDir, errors.Wrapf(err, "invalid directory %s", sigStoreDir)
- }
- _, exists := writeURIs[url.Scheme]
- if !exists {
- return sigStoreDir, errors.Errorf("writing to %s is not supported. Use a supported scheme", sigStoreDir)
- }
- sigStoreDir = url.Path
- return sigStoreDir, nil
-}
diff --git a/cmd/podman/start.go b/cmd/podman/start.go
deleted file mode 100644
index ee700032f..000000000
--- a/cmd/podman/start.go
+++ /dev/null
@@ -1,78 +0,0 @@
-package main
-
-import (
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/libpod/define"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/opentracing/opentracing-go"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- startCommand cliconfig.StartValues
- startDescription = `Starts one or more containers. The container name or ID can be used.`
-
- _startCommand = &cobra.Command{
- Use: "start [flags] CONTAINER [CONTAINER...]",
- Short: "Start one or more containers",
- Long: startDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- startCommand.InputArgs = args
- startCommand.GlobalFlags = MainGlobalOpts
- startCommand.Remote = remoteclient
- return startCmd(&startCommand)
- },
- Example: `podman start --latest
- podman start 860a4b231279 5421ab43b45
- podman start --interactive --attach imageID`,
- }
-)
-
-func init() {
- startCommand.Command = _startCommand
- startCommand.SetHelpTemplate(HelpTemplate())
- startCommand.SetUsageTemplate(UsageTemplate())
- flags := startCommand.Flags()
- flags.BoolVarP(&startCommand.Attach, "attach", "a", false, "Attach container's STDOUT and STDERR")
- flags.StringVar(&startCommand.DetachKeys, "detach-keys", getDefaultDetachKeys(), "Select the key sequence for detaching a container. Format is a single character `[a-Z]` or a comma separated sequence of `ctrl-<value>`, where `<value>` is one of: `a-z`, `@`, `^`, `[`, `\\`, `]`, `^` or `_`")
- flags.BoolVarP(&startCommand.Interactive, "interactive", "i", false, "Keep STDIN open even if not attached")
- flags.BoolVarP(&startCommand.Latest, "latest", "l", false, "Act on the latest container podman is aware of")
- flags.BoolVar(&startCommand.SigProxy, "sig-proxy", false, "Proxy received signals to the process (default true if attaching, false otherwise)")
- markFlagHiddenForRemoteClient("latest", flags)
-}
-
-func startCmd(c *cliconfig.StartValues) error {
- if !remoteclient && c.Bool("trace") {
- span, _ := opentracing.StartSpanFromContext(Ctx, "startCmd")
- defer span.Finish()
- }
-
- args := c.InputArgs
- if len(args) < 1 && !c.Latest {
- return errors.Errorf("you must provide at least one container name or id")
- }
-
- attach := c.Attach
-
- if len(args) > 1 && attach {
- return errors.Errorf("you cannot start and attach multiple containers at once")
- }
-
- sigProxy := c.SigProxy || attach
- if c.Flag("sig-proxy").Changed {
- sigProxy = c.SigProxy
- }
-
- if sigProxy && !attach {
- return errors.Wrapf(define.ErrInvalidArg, "you cannot use sig-proxy without --attach")
- }
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "error creating libpod runtime")
- }
- defer runtime.DeferredShutdown(false)
- exitCode, err = runtime.Start(getContext(), c, sigProxy)
- return err
-}
diff --git a/cmd/podman/stats.go b/cmd/podman/stats.go
deleted file mode 100644
index 08fddc47a..000000000
--- a/cmd/podman/stats.go
+++ /dev/null
@@ -1,305 +0,0 @@
-package main
-
-import (
- "fmt"
- "reflect"
- "strings"
- "time"
-
- tm "github.com/buger/goterm"
- "github.com/containers/buildah/pkg/formats"
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/cmd/podman/libpodruntime"
- "github.com/containers/libpod/libpod"
- "github.com/containers/libpod/libpod/define"
- "github.com/containers/libpod/pkg/cgroups"
- "github.com/containers/libpod/pkg/rootless"
- "github.com/docker/go-units"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-type statsOutputParams struct {
- ID string `json:"id"`
- Name string `json:"name"`
- CPUPerc string `json:"cpu_percent"`
- MemUsage string `json:"mem_usage"`
- MemPerc string `json:"mem_percent"`
- NetIO string `json:"netio"`
- BlockIO string `json:"blocki"`
- PIDS string `json:"pids"`
-}
-
-var (
- statsCommand cliconfig.StatsValues
-
- statsDescription = "Display percentage of CPU, memory, network I/O, block I/O and PIDs for one or more containers."
- _statsCommand = &cobra.Command{
- Use: "stats [flags] [CONTAINER...]",
- Short: "Display a live stream of container resource usage statistics",
- Long: statsDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- statsCommand.InputArgs = args
- statsCommand.GlobalFlags = MainGlobalOpts
- statsCommand.Remote = remoteclient
- return statsCmd(&statsCommand)
- },
- Example: `podman stats --all --no-stream
- podman stats ctrID
- podman stats --no-stream --format "table {{.ID}} {{.Name}} {{.MemUsage}}" ctrID`,
- }
-)
-
-func init() {
- statsCommand.Command = _statsCommand
- statsCommand.SetHelpTemplate(HelpTemplate())
- statsCommand.SetUsageTemplate(UsageTemplate())
- flags := statsCommand.Flags()
- flags.BoolVarP(&statsCommand.All, "all", "a", false, "Show all containers. Only running containers are shown by default. The default is false")
- flags.StringVar(&statsCommand.Format, "format", "", "Pretty-print container statistics to JSON or using a Go template")
- flags.BoolVarP(&statsCommand.Latest, "latest", "l", false, "Act on the latest container podman is aware of")
- flags.BoolVar(&statsCommand.NoReset, "no-reset", false, "Disable resetting the screen between intervals")
- flags.BoolVar(&statsCommand.NoStream, "no-stream", false, "Disable streaming stats and only pull the first result, default setting is false")
- markFlagHiddenForRemoteClient("latest", flags)
-}
-
-func statsCmd(c *cliconfig.StatsValues) error {
- if rootless.IsRootless() {
- unified, err := cgroups.IsCgroup2UnifiedMode()
- if err != nil {
- return err
- }
- if !unified {
- return errors.New("stats is not supported in rootless mode without cgroups v2")
- }
- }
-
- all := c.All
- latest := c.Latest
- ctr := 0
- if all {
- ctr += 1
- }
- if latest {
- ctr += 1
- }
- if len(c.InputArgs) > 0 {
- ctr += 1
- }
-
- if ctr > 1 {
- return errors.Errorf("--all, --latest and containers cannot be used together")
- }
-
- runtime, err := libpodruntime.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- times := -1
- if c.NoStream {
- times = 1
- }
-
- var ctrs []*libpod.Container
-
- containerFunc := runtime.GetRunningContainers
- switch {
- case len(c.InputArgs) > 0:
- containerFunc = func() ([]*libpod.Container, error) { return runtime.GetContainersByList(c.InputArgs) }
- case latest:
- containerFunc = func() ([]*libpod.Container, error) {
- lastCtr, err := runtime.GetLatestContainer()
- if err != nil {
- return nil, err
- }
- return []*libpod.Container{lastCtr}, nil
- }
- case all:
- containerFunc = runtime.GetAllContainers
- }
-
- ctrs, err = containerFunc()
- if err != nil {
- return errors.Wrapf(err, "unable to get list of containers")
- }
-
- containerStats := map[string]*libpod.ContainerStats{}
- for _, ctr := range ctrs {
- initialStats, err := ctr.GetContainerStats(&libpod.ContainerStats{})
- if err != nil {
- // when doing "all", don't worry about containers that are not running
- cause := errors.Cause(err)
- if c.All && (cause == define.ErrCtrRemoved || cause == define.ErrNoSuchCtr || cause == define.ErrCtrStateInvalid) {
- continue
- }
- if cause == cgroups.ErrCgroupV1Rootless {
- err = cause
- }
- return err
- }
- containerStats[ctr.ID()] = initialStats
- }
-
- format := genStatsFormat(c.Format)
-
- step := 1
- if times == -1 {
- times = 1
- step = 0
- }
- for i := 0; i < times; i += step {
- reportStats := []*libpod.ContainerStats{}
- for _, ctr := range ctrs {
- id := ctr.ID()
- if _, ok := containerStats[ctr.ID()]; !ok {
- initialStats, err := ctr.GetContainerStats(&libpod.ContainerStats{})
- if errors.Cause(err) == define.ErrCtrRemoved || errors.Cause(err) == define.ErrNoSuchCtr || errors.Cause(err) == define.ErrCtrStateInvalid {
- // skip dealing with a container that is gone
- continue
- }
- if err != nil {
- return err
- }
- containerStats[id] = initialStats
- }
- stats, err := ctr.GetContainerStats(containerStats[id])
- if err != nil && errors.Cause(err) != define.ErrNoSuchCtr {
- return err
- }
- // replace the previous measurement with the current one
- containerStats[id] = stats
- reportStats = append(reportStats, stats)
- }
- ctrs, err = containerFunc()
- if err != nil {
- return err
- }
- if strings.ToLower(format) != formats.JSONString && !c.NoReset {
- tm.Clear()
- tm.MoveCursor(1, 1)
- tm.Flush()
- }
- if err := outputStats(reportStats, format); err != nil {
- return err
- }
- time.Sleep(time.Second)
- }
- return nil
-}
-
-func outputStats(stats []*libpod.ContainerStats, format string) error {
- var out formats.Writer
- var outputStats []statsOutputParams
- for _, s := range stats {
- outputStats = append(outputStats, getStatsOutputParams(s))
- }
- if strings.ToLower(format) == formats.JSONString {
- out = formats.JSONStructArray{Output: statsToGeneric(outputStats, []statsOutputParams{})}
- } else {
- var mapOfHeaders map[string]string
- if len(outputStats) == 0 {
- params := getStatsOutputParamsEmpty()
- mapOfHeaders = params.headerMap()
- } else {
- mapOfHeaders = outputStats[0].headerMap()
- }
- out = formats.StdoutTemplateArray{Output: statsToGeneric(outputStats, []statsOutputParams{}), Template: format, Fields: mapOfHeaders}
- }
- return out.Out()
-}
-
-func genStatsFormat(format string) string {
- if format != "" {
- // "\t" from the command line is not being recognized as a tab
- // replacing the string "\t" to a tab character if the user passes in "\t"
- return strings.Replace(format, `\t`, "\t", -1)
- }
- return "table {{.ID}}\t{{.Name}}\t{{.CPUPerc}}\t{{.MemUsage}}\t{{.MemPerc}}\t{{.NetIO}}\t{{.BlockIO}}\t{{.PIDS}}"
-}
-
-// imagesToGeneric creates an empty array of interfaces for output
-func statsToGeneric(templParams []statsOutputParams, jsonParams []statsOutputParams) (genericParams []interface{}) {
- if len(templParams) > 0 {
- for _, v := range templParams {
- genericParams = append(genericParams, interface{}(v))
- }
- return
- }
- for _, v := range jsonParams {
- genericParams = append(genericParams, interface{}(v))
- }
- return
-}
-
-// generate the header based on the template provided
-func (i *statsOutputParams) headerMap() map[string]string {
- v := reflect.Indirect(reflect.ValueOf(i))
- values := make(map[string]string)
-
- for i := 0; i < v.NumField(); i++ {
- key := v.Type().Field(i).Name
- value := key
- switch value {
- case "CPUPerc":
- value = "CPU%"
- case "MemUsage":
- value = "MemUsage/Limit"
- case "MemPerc":
- value = "Mem%"
- }
- values[key] = strings.ToUpper(splitCamelCase(value))
- }
- return values
-}
-
-func combineHumanValues(a, b uint64) string {
- if a == 0 && b == 0 {
- return "-- / --"
- }
- return fmt.Sprintf("%s / %s", units.HumanSize(float64(a)), units.HumanSize(float64(b)))
-}
-
-func floatToPercentString(f float64) string {
- strippedFloat, err := libpod.RemoveScientificNotationFromFloat(f)
- if err != nil || strippedFloat == 0 {
- // If things go bazinga, return a safe value
- return "--"
- }
- return fmt.Sprintf("%.2f", strippedFloat) + "%"
-}
-
-func pidsToString(pid uint64) string {
- if pid == 0 {
- // If things go bazinga, return a safe value
- return "--"
- }
- return fmt.Sprintf("%d", pid)
-}
-
-func getStatsOutputParams(stats *libpod.ContainerStats) statsOutputParams {
- return statsOutputParams{
- Name: stats.Name,
- ID: shortID(stats.ContainerID),
- CPUPerc: floatToPercentString(stats.CPU),
- MemUsage: combineHumanValues(stats.MemUsage, stats.MemLimit),
- MemPerc: floatToPercentString(stats.MemPerc),
- NetIO: combineHumanValues(stats.NetInput, stats.NetOutput),
- BlockIO: combineHumanValues(stats.BlockInput, stats.BlockOutput),
- PIDS: pidsToString(stats.PIDs),
- }
-}
-
-func getStatsOutputParamsEmpty() statsOutputParams {
- return statsOutputParams{
- Name: "",
- ID: "",
- CPUPerc: "",
- MemUsage: "",
- MemPerc: "",
- NetIO: "",
- BlockIO: "",
- PIDS: "",
- }
-}
diff --git a/cmd/podman/stop.go b/cmd/podman/stop.go
deleted file mode 100644
index 5033218e4..000000000
--- a/cmd/podman/stop.go
+++ /dev/null
@@ -1,71 +0,0 @@
-package main
-
-import (
- "fmt"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/opentracing/opentracing-go"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- stopCommand cliconfig.StopValues
- stopDescription = fmt.Sprintf(`Stops one or more running containers. The container name or ID can be used.
-
- A timeout to forcibly stop the container can also be set but defaults to %d seconds otherwise.`, defaultContainerConfig.Engine.StopTimeout)
- _stopCommand = &cobra.Command{
- Use: "stop [flags] CONTAINER [CONTAINER...]",
- Short: "Stop one or more containers",
- Long: stopDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- stopCommand.InputArgs = args
- stopCommand.GlobalFlags = MainGlobalOpts
- stopCommand.Remote = remoteclient
- return stopCmd(&stopCommand)
- },
- Args: func(cmd *cobra.Command, args []string) error {
- return checkAllLatestAndCIDFile(cmd, args, false, true)
- },
- Example: `podman stop ctrID
- podman stop --latest
- podman stop --time 2 mywebserver 6e534f14da9d`,
- }
-)
-
-func init() {
- stopCommand.Command = _stopCommand
- stopCommand.SetHelpTemplate(HelpTemplate())
- stopCommand.SetUsageTemplate(UsageTemplate())
- flags := stopCommand.Flags()
- flags.BoolVarP(&stopCommand.All, "all", "a", false, "Stop all running containers")
- flags.BoolVarP(&stopCommand.Ignore, "ignore", "i", false, "Ignore errors when a specified container is missing")
- flags.StringArrayVarP(&stopCommand.CIDFiles, "cidfile", "", nil, "Read the container ID from the file")
- flags.BoolVarP(&stopCommand.Latest, "latest", "l", false, "Act on the latest container podman is aware of")
- flags.UintVarP(&stopCommand.Timeout, "time", "t", defaultContainerConfig.Engine.StopTimeout, "Seconds to wait for stop before killing the container")
- markFlagHiddenForRemoteClient("latest", flags)
- markFlagHiddenForRemoteClient("cidfile", flags)
- markFlagHiddenForRemoteClient("ignore", flags)
- flags.SetNormalizeFunc(aliasFlags)
-}
-
-// stopCmd stops a container or containers
-func stopCmd(c *cliconfig.StopValues) error {
- if c.Bool("trace") {
- span, _ := opentracing.StartSpanFromContext(Ctx, "stopCmd")
- defer span.Finish()
- }
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- ok, failures, err := runtime.StopContainers(getContext(), c)
- if err != nil {
- return err
- }
- return printCmdResults(ok, failures)
-}
diff --git a/cmd/podman/system.go b/cmd/podman/system.go
deleted file mode 100644
index 921d0c037..000000000
--- a/cmd/podman/system.go
+++ /dev/null
@@ -1,31 +0,0 @@
-package main
-
-import (
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/spf13/cobra"
-)
-
-var (
- systemDescription = "Manage podman"
-
- systemCommand = cliconfig.PodmanCommand{
- Command: &cobra.Command{
- Use: "system",
- Short: "Manage podman",
- Long: systemDescription,
- RunE: commandRunE(),
- },
- }
-)
-
-var systemCommands = []*cobra.Command{
- _systemResetCommand,
- _infoCommand,
- _pruneSystemCommand,
-}
-
-func init() {
- systemCommand.AddCommand(systemCommands...)
- systemCommand.AddCommand(getSystemSubCommands()...)
- systemCommand.SetUsageTemplate(UsageTemplate())
-}
diff --git a/cmd/podmanV2/system/events.go b/cmd/podman/system/events.go
index 95e6a5576..3c1943b55 100644
--- a/cmd/podmanV2/system/events.go
+++ b/cmd/podman/system/events.go
@@ -7,7 +7,7 @@ import (
"os"
"github.com/containers/buildah/pkg/formats"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/libpod/events"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/pkg/errors"
diff --git a/cmd/podmanV2/system/info.go b/cmd/podman/system/info.go
index 6b0c6a13b..aa0a66ffc 100644
--- a/cmd/podmanV2/system/info.go
+++ b/cmd/podman/system/info.go
@@ -6,7 +6,7 @@ import (
"os"
"text/template"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
"gopkg.in/yaml.v2"
diff --git a/cmd/podmanV2/system/service.go b/cmd/podman/system/service.go
index 5573f7039..fa1a33faa 100644
--- a/cmd/podmanV2/system/service.go
+++ b/cmd/podman/system/service.go
@@ -6,7 +6,7 @@ import (
"path/filepath"
"time"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/containers/libpod/pkg/rootless"
"github.com/containers/libpod/pkg/systemd"
diff --git a/cmd/podmanV2/system/system.go b/cmd/podman/system/system.go
index e62a0c150..6d8c9ebc5 100644
--- a/cmd/podmanV2/system/system.go
+++ b/cmd/podman/system/system.go
@@ -1,7 +1,7 @@
package system
import (
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
)
diff --git a/cmd/podmanV2/system/varlink.go b/cmd/podman/system/varlink.go
index 27dd0a7e9..c83f5ff76 100644
--- a/cmd/podmanV2/system/varlink.go
+++ b/cmd/podman/system/varlink.go
@@ -3,7 +3,7 @@ package system
import (
"time"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
)
diff --git a/cmd/podmanV2/system/version.go b/cmd/podman/system/version.go
index 7004c3109..5d3874de3 100644
--- a/cmd/podmanV2/system/version.go
+++ b/cmd/podman/system/version.go
@@ -9,7 +9,7 @@ import (
"time"
"github.com/containers/buildah/pkg/formats"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/libpod/define"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/pkg/errors"
diff --git a/cmd/podman/system_df.go b/cmd/podman/system_df.go
deleted file mode 100644
index 44582a802..000000000
--- a/cmd/podman/system_df.go
+++ /dev/null
@@ -1,650 +0,0 @@
-//+build !remoteclient
-
-package main
-
-import (
- "context"
- "fmt"
- "os"
- "path/filepath"
- "strings"
- "time"
-
- "github.com/containers/buildah/pkg/formats"
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/cmd/podman/libpodruntime"
- "github.com/containers/libpod/libpod"
- "github.com/containers/libpod/libpod/define"
- "github.com/containers/libpod/libpod/image"
- "github.com/docker/go-units"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- "github.com/spf13/cobra"
-)
-
-var (
- dfSystemCommand cliconfig.SystemDfValues
- dfSystemDescription = `
- podman system df
-
- Show podman disk usage
- `
- _dfSystemCommand = &cobra.Command{
- Use: "df",
- Args: noSubArgs,
- Short: "Show podman disk usage",
- Long: dfSystemDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- dfSystemCommand.GlobalFlags = MainGlobalOpts
- dfSystemCommand.Remote = remoteclient
- return dfSystemCmd(&dfSystemCommand)
- },
- }
-)
-
-type dfMetaData struct {
- images []*image.Image
- containers []*libpod.Container
- activeContainers map[string]*libpod.Container
- imagesUsedbyCtrMap map[string][]*libpod.Container
- imagesUsedbyActiveCtr map[string][]*libpod.Container
- volumes []*libpod.Volume
- volumeUsedByContainerMap map[string][]*libpod.Container
-}
-
-type systemDfDiskUsage struct {
- Type string
- Total int
- Active int
- Size string
- Reclaimable string
-}
-
-type imageVerboseDiskUsage struct {
- Repository string
- Tag string
- ImageID string
- Created string
- Size string
- SharedSize string
- UniqueSize string
- Containers int
-}
-
-type containerVerboseDiskUsage struct {
- ContainerID string
- Image string
- Command string
- LocalVolumes int
- Size string
- Created string
- Status string
- Names string
-}
-
-type volumeVerboseDiskUsage struct {
- VolumeName string
- Links int
- Size string
-}
-
-const systemDfDefaultFormat string = "table {{.Type}}\t{{.Total}}\t{{.Active}}\t{{.Size}}\t{{.Reclaimable}}"
-const imageVerboseFormat string = "table {{.Repository}}\t{{.Tag}}\t{{.ImageID}}\t{{.Created}}\t{{.Size}}\t{{.SharedSize}}\t{{.UniqueSize}}\t{{.Containers}}"
-const containerVerboseFormat string = "table {{.ContainerID}}\t{{.Image}}\t{{.Command}}\t{{.LocalVolumes}}\t{{.Size}}\t{{.Created}}\t{{.Status}}\t{{.Names}}"
-const volumeVerboseFormat string = "table {{.VolumeName}}\t{{.Links}}\t{{.Size}}"
-
-func init() {
- dfSystemCommand.Command = _dfSystemCommand
- dfSystemCommand.SetUsageTemplate(UsageTemplate())
- flags := dfSystemCommand.Flags()
- flags.BoolVarP(&dfSystemCommand.Verbose, "verbose", "v", false, "Show detailed information on space usage")
- flags.StringVar(&dfSystemCommand.Format, "format", "", "Pretty-print images using a Go template")
-}
-
-func dfSystemCmd(c *cliconfig.SystemDfValues) error {
- runtime, err := libpodruntime.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "Could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- ctx := getContext()
-
- metaData, err := getDfMetaData(ctx, runtime)
- if err != nil {
- return errors.Wrapf(err, "error getting disk usage data")
- }
-
- if c.Verbose {
- err := verboseOutput(ctx, metaData)
- if err != nil {
- return err
- }
- return nil
- }
-
- systemDfDiskUsages, err := getDiskUsage(ctx, runtime, metaData)
- if err != nil {
- return errors.Wrapf(err, "error getting output of system df")
- }
- format := systemDfDefaultFormat
- if c.Format != "" {
- format = strings.Replace(c.Format, `\t`, "\t", -1)
- }
- return generateSysDfOutput(systemDfDiskUsages, format)
-}
-
-func generateSysDfOutput(systemDfDiskUsages []systemDfDiskUsage, format string) error {
- var systemDfHeader = map[string]string{
- "Type": "TYPE",
- "Total": "TOTAL",
- "Active": "ACTIVE",
- "Size": "SIZE",
- "Reclaimable": "RECLAIMABLE",
- }
- out := formats.StdoutTemplateArray{Output: systemDfDiskUsageToGeneric(systemDfDiskUsages), Template: format, Fields: systemDfHeader}
- return out.Out()
-}
-
-func getDiskUsage(ctx context.Context, runtime *libpod.Runtime, metaData dfMetaData) ([]systemDfDiskUsage, error) {
- imageDiskUsage, err := getImageDiskUsage(ctx, metaData.images, metaData.imagesUsedbyCtrMap, metaData.imagesUsedbyActiveCtr)
- if err != nil {
- return nil, errors.Wrapf(err, "error getting disk usage of images")
- }
- containerDiskUsage, err := getContainerDiskUsage(metaData.containers, metaData.activeContainers)
- if err != nil {
- return nil, errors.Wrapf(err, "error getting disk usage of containers")
- }
- volumeDiskUsage, err := getVolumeDiskUsage(metaData.volumes, metaData.volumeUsedByContainerMap)
- if err != nil {
- return nil, errors.Wrapf(err, "error getting disk usage of volumess")
- }
-
- systemDfDiskUsages := []systemDfDiskUsage{imageDiskUsage, containerDiskUsage, volumeDiskUsage}
- return systemDfDiskUsages, nil
-}
-
-func getDfMetaData(ctx context.Context, runtime *libpod.Runtime) (dfMetaData, error) {
- var metaData dfMetaData
- images, err := runtime.ImageRuntime().GetImages()
- if err != nil {
- return metaData, errors.Wrapf(err, "unable to get images")
- }
- containers, err := runtime.GetAllContainers()
- if err != nil {
- return metaData, errors.Wrapf(err, "error getting all containers")
- }
- volumes, err := runtime.GetAllVolumes()
- if err != nil {
- return metaData, errors.Wrap(err, "error getting all volumes")
- }
- activeContainers, err := activeContainers(containers)
- if err != nil {
- return metaData, errors.Wrapf(err, "error getting active containers")
- }
- imagesUsedbyCtrMap, imagesUsedbyActiveCtr, err := imagesUsedbyCtr(containers, activeContainers)
- if err != nil {
- return metaData, errors.Wrapf(err, "error getting getting images used by containers")
- }
- metaData = dfMetaData{
- images: images,
- containers: containers,
- activeContainers: activeContainers,
- imagesUsedbyCtrMap: imagesUsedbyCtrMap,
- imagesUsedbyActiveCtr: imagesUsedbyActiveCtr,
- volumes: volumes,
- volumeUsedByContainerMap: volumeUsedByContainer(containers),
- }
- return metaData, nil
-}
-
-func imageUniqueSize(ctx context.Context, images []*image.Image) (map[string]uint64, error) {
- imgUniqueSizeMap := make(map[string]uint64)
- for _, img := range images {
- parentImg := img
- for {
- next, err := parentImg.GetParent(ctx)
- if err != nil {
- return nil, errors.Wrapf(err, "error getting parent of image %s", parentImg.ID())
- }
- if next == nil {
- break
- }
- parentImg = next
- }
- imgSize, err := img.Size(ctx)
- if err != nil {
- return nil, err
- }
- if img.ID() == parentImg.ID() {
- imgUniqueSizeMap[img.ID()] = *imgSize
- } else {
- parentImgSize, err := parentImg.Size(ctx)
- if err != nil {
- return nil, errors.Wrapf(err, "error getting size of parent image %s", parentImg.ID())
- }
- imgUniqueSizeMap[img.ID()] = *imgSize - *parentImgSize
- }
- }
- return imgUniqueSizeMap, nil
-}
-
-func getImageDiskUsage(ctx context.Context, images []*image.Image, imageUsedbyCintainerMap map[string][]*libpod.Container, imageUsedbyActiveContainerMap map[string][]*libpod.Container) (systemDfDiskUsage, error) {
- var (
- numberOfImages int
- sumSize uint64
- numberOfActiveImages int
- unreclaimableSize uint64
- imageDiskUsage systemDfDiskUsage
- reclaimableStr string
- )
-
- imgUniqueSizeMap, err := imageUniqueSize(ctx, images)
- if err != nil {
- return imageDiskUsage, errors.Wrapf(err, "error getting unique size of images")
- }
-
- for _, img := range images {
-
- unreclaimableSize += imageUsedSize(img, imgUniqueSizeMap, imageUsedbyCintainerMap, imageUsedbyActiveContainerMap)
-
- isParent, err := img.IsParent(ctx)
- if err != nil {
- return imageDiskUsage, err
- }
- parent, err := img.GetParent(ctx)
- if err != nil {
- return imageDiskUsage, errors.Wrapf(err, "error getting parent of image %s", img.ID())
- }
- if isParent && parent != nil {
- continue
- }
- numberOfImages++
- if _, isActive := imageUsedbyCintainerMap[img.ID()]; isActive {
- numberOfActiveImages++
- }
-
- if !isParent {
- size, err := img.Size(ctx)
- if err != nil {
- return imageDiskUsage, errors.Wrapf(err, "error getting disk usage of image %s", img.ID())
- }
- sumSize += *size
- }
-
- }
- sumSizeStr := units.HumanSizeWithPrecision(float64(sumSize), 3)
- reclaimable := sumSize - unreclaimableSize
- if sumSize != 0 {
- reclaimableStr = fmt.Sprintf("%s (%v%%)", units.HumanSizeWithPrecision(float64(reclaimable), 3), 100*reclaimable/sumSize)
- } else {
- reclaimableStr = fmt.Sprintf("%s (%v%%)", units.HumanSizeWithPrecision(float64(reclaimable), 3), 0)
- }
- imageDiskUsage = systemDfDiskUsage{
- Type: "Images",
- Total: numberOfImages,
- Active: numberOfActiveImages,
- Size: sumSizeStr,
- Reclaimable: reclaimableStr,
- }
- return imageDiskUsage, nil
-}
-
-func imageUsedSize(img *image.Image, imgUniqueSizeMap map[string]uint64, imageUsedbyCintainerMap map[string][]*libpod.Container, imageUsedbyActiveContainerMap map[string][]*libpod.Container) uint64 {
- var usedSize uint64
- imgUnique := imgUniqueSizeMap[img.ID()]
- if _, isCtrActive := imageUsedbyActiveContainerMap[img.ID()]; isCtrActive {
- return imgUnique
- }
- containers := imageUsedbyCintainerMap[img.ID()]
- for _, ctr := range containers {
- if len(ctr.UserVolumes()) > 0 {
- usedSize += imgUnique
- return usedSize
- }
- }
- return usedSize
-}
-
-func imagesUsedbyCtr(containers []*libpod.Container, activeContainers map[string]*libpod.Container) (map[string][]*libpod.Container, map[string][]*libpod.Container, error) {
- imgCtrMap := make(map[string][]*libpod.Container)
- imgActiveCtrMap := make(map[string][]*libpod.Container)
- for _, ctr := range containers {
- imgID, _ := ctr.Image()
- imgCtrMap[imgID] = append(imgCtrMap[imgID], ctr)
- if _, isActive := activeContainers[ctr.ID()]; isActive {
- imgActiveCtrMap[imgID] = append(imgActiveCtrMap[imgID], ctr)
- }
- }
- return imgCtrMap, imgActiveCtrMap, nil
-}
-
-func getContainerDiskUsage(containers []*libpod.Container, activeContainers map[string]*libpod.Container) (systemDfDiskUsage, error) {
- var (
- sumSize int64
- unreclaimableSize int64
- reclaimableStr string
- )
- for _, ctr := range containers {
- size, err := ctr.RWSize()
- if err != nil {
- return systemDfDiskUsage{}, errors.Wrapf(err, "error getting size of container %s", ctr.ID())
- }
- sumSize += size
- }
- for _, activeCtr := range activeContainers {
- size, err := activeCtr.RWSize()
- if err != nil {
- return systemDfDiskUsage{}, errors.Wrapf(err, "error getting size of active container %s", activeCtr.ID())
- }
- unreclaimableSize += size
- }
- if sumSize == 0 {
- reclaimableStr = fmt.Sprintf("%s (%v%%)", units.HumanSizeWithPrecision(0, 3), 0)
- } else {
- reclaimable := sumSize - unreclaimableSize
- reclaimableStr = fmt.Sprintf("%s (%v%%)", units.HumanSizeWithPrecision(float64(reclaimable), 3), 100*reclaimable/sumSize)
- }
- containerDiskUsage := systemDfDiskUsage{
- Type: "Containers",
- Total: len(containers),
- Active: len(activeContainers),
- Size: units.HumanSizeWithPrecision(float64(sumSize), 3),
- Reclaimable: reclaimableStr,
- }
- return containerDiskUsage, nil
-}
-
-func ctrIsActive(ctr *libpod.Container) (bool, error) {
- state, err := ctr.State()
- if err != nil {
- return false, err
- }
- return state == define.ContainerStatePaused || state == define.ContainerStateRunning, nil
-}
-
-func activeContainers(containers []*libpod.Container) (map[string]*libpod.Container, error) {
- activeContainers := make(map[string]*libpod.Container)
- for _, aCtr := range containers {
- isActive, err := ctrIsActive(aCtr)
- if err != nil {
- return nil, err
- }
- if isActive {
- activeContainers[aCtr.ID()] = aCtr
- }
- }
- return activeContainers, nil
-}
-
-func getVolumeDiskUsage(volumes []*libpod.Volume, volumeUsedByContainerMap map[string][]*libpod.Container) (systemDfDiskUsage, error) {
- var (
- sumSize int64
- unreclaimableSize int64
- reclaimableStr string
- )
- for _, volume := range volumes {
- size, err := volumeSize(volume)
- if err != nil {
- return systemDfDiskUsage{}, errors.Wrapf(err, "error getting size of volime %s", volume.Name())
- }
- sumSize += size
- if _, exist := volumeUsedByContainerMap[volume.Name()]; exist {
- unreclaimableSize += size
- }
- }
- reclaimable := sumSize - unreclaimableSize
- if sumSize != 0 {
- reclaimableStr = fmt.Sprintf("%s (%v%%)", units.HumanSizeWithPrecision(float64(reclaimable), 3), 100*reclaimable/sumSize)
- } else {
- reclaimableStr = fmt.Sprintf("%s (%v%%)", units.HumanSizeWithPrecision(float64(reclaimable), 3), 0)
- }
- volumesDiskUsage := systemDfDiskUsage{
- Type: "Local Volumes",
- Total: len(volumes),
- Active: len(volumeUsedByContainerMap),
- Size: units.HumanSizeWithPrecision(float64(sumSize), 3),
- Reclaimable: reclaimableStr,
- }
- return volumesDiskUsage, nil
-}
-
-func volumeUsedByContainer(containers []*libpod.Container) map[string][]*libpod.Container {
- volumeUsedByContainerMap := make(map[string][]*libpod.Container)
- for _, ctr := range containers {
-
- ctrVolumes := ctr.UserVolumes()
- for _, ctrVolume := range ctrVolumes {
- volumeUsedByContainerMap[ctrVolume] = append(volumeUsedByContainerMap[ctrVolume], ctr)
- }
- }
- return volumeUsedByContainerMap
-}
-
-func volumeSize(volume *libpod.Volume) (int64, error) {
- var size int64
- err := filepath.Walk(volume.MountPoint(), func(path string, info os.FileInfo, err error) error {
- if err == nil && !info.IsDir() {
- size += info.Size()
- }
- return err
- })
- return size, err
-}
-
-func getImageVerboseDiskUsage(ctx context.Context, images []*image.Image, imagesUsedbyCtr map[string][]*libpod.Container) ([]imageVerboseDiskUsage, error) {
- var imagesVerboseDiskUsage []imageVerboseDiskUsage
- imgUniqueSizeMap, err := imageUniqueSize(ctx, images)
- if err != nil {
- return imagesVerboseDiskUsage, errors.Wrapf(err, "error getting unique size of images")
- }
- for _, img := range images {
- isParent, err := img.IsParent(ctx)
- if err != nil {
- return imagesVerboseDiskUsage, errors.Wrapf(err, "error checking if %s is a parent images", img.ID())
- }
- parent, err := img.GetParent(ctx)
- if err != nil {
- return imagesVerboseDiskUsage, errors.Wrapf(err, "error getting parent of image %s", img.ID())
- }
- if isParent && parent != nil {
- continue
- }
- size, err := img.Size(ctx)
- if err != nil {
- return imagesVerboseDiskUsage, errors.Wrapf(err, "error getting size of image %s", img.ID())
- }
- numberOfContainers := 0
- if ctrs, exist := imagesUsedbyCtr[img.ID()]; exist {
- numberOfContainers = len(ctrs)
- }
- var repo string
- var tag string
- var repotags []string
- if len(img.Names()) != 0 {
- repotags = []string{img.Names()[0]}
- }
- repopairs, err := image.ReposToMap(repotags)
- if err != nil {
- logrus.Errorf("error finding tag/digest for %s", img.ID())
- }
- for reponame, tags := range repopairs {
- for _, tagname := range tags {
- repo = reponame
- tag = tagname
- }
- }
-
- imageVerbosedf := imageVerboseDiskUsage{
- Repository: repo,
- Tag: tag,
- ImageID: shortID(img.ID()),
- Created: fmt.Sprintf("%s ago", units.HumanDuration(time.Since((img.Created().Local())))),
- Size: units.HumanSizeWithPrecision(float64(*size), 3),
- SharedSize: units.HumanSizeWithPrecision(float64(*size-imgUniqueSizeMap[img.ID()]), 3),
- UniqueSize: units.HumanSizeWithPrecision(float64(imgUniqueSizeMap[img.ID()]), 3),
- Containers: numberOfContainers,
- }
- imagesVerboseDiskUsage = append(imagesVerboseDiskUsage, imageVerbosedf)
- }
- return imagesVerboseDiskUsage, nil
-}
-
-func getContainerVerboseDiskUsage(containers []*libpod.Container) (containersVerboseDiskUsage []containerVerboseDiskUsage, err error) {
- for _, ctr := range containers {
- imgID, _ := ctr.Image()
- size, err := ctr.RWSize()
- if err != nil {
- return containersVerboseDiskUsage, errors.Wrapf(err, "error getting size of container %s", ctr.ID())
- }
- state, err := ctr.State()
- if err != nil {
- return containersVerboseDiskUsage, errors.Wrapf(err, "error getting the state of container %s", ctr.ID())
- }
-
- ctrVerboseData := containerVerboseDiskUsage{
- ContainerID: shortID(ctr.ID()),
- Image: shortImageID(imgID),
- Command: strings.Join(ctr.Command(), " "),
- LocalVolumes: len(ctr.UserVolumes()),
- Size: units.HumanSizeWithPrecision(float64(size), 3),
- Created: fmt.Sprintf("%s ago", units.HumanDuration(time.Since(ctr.CreatedTime().Local()))),
- Status: state.String(),
- Names: ctr.Name(),
- }
- containersVerboseDiskUsage = append(containersVerboseDiskUsage, ctrVerboseData)
-
- }
- return containersVerboseDiskUsage, nil
-}
-
-func getVolumeVerboseDiskUsage(volumes []*libpod.Volume, volumeUsedByContainerMap map[string][]*libpod.Container) (volumesVerboseDiskUsage []volumeVerboseDiskUsage, err error) {
- for _, vol := range volumes {
- volSize, err := volumeSize(vol)
- if err != nil {
- return volumesVerboseDiskUsage, errors.Wrapf(err, "error getting size of volume %s", vol.Name())
- }
- links := 0
- if linkCtr, exist := volumeUsedByContainerMap[vol.Name()]; exist {
- links = len(linkCtr)
- }
- volumeVerboseData := volumeVerboseDiskUsage{
- VolumeName: vol.Name(),
- Links: links,
- Size: units.HumanSizeWithPrecision(float64(volSize), 3),
- }
- volumesVerboseDiskUsage = append(volumesVerboseDiskUsage, volumeVerboseData)
- }
- return volumesVerboseDiskUsage, nil
-}
-
-func imagesVerboseOutput(ctx context.Context, metaData dfMetaData) error {
- var imageVerboseHeader = map[string]string{
- "Repository": "REPOSITORY",
- "Tag": "TAG",
- "ImageID": "IMAGE ID",
- "Created": "CREATED",
- "Size": "SIZE",
- "SharedSize": "SHARED SIZE",
- "UniqueSize": "UNIQUE SIZE",
- "Containers": "CONTAINERS",
- }
- imagesVerboseDiskUsage, err := getImageVerboseDiskUsage(ctx, metaData.images, metaData.imagesUsedbyCtrMap)
- if err != nil {
- return errors.Wrapf(err, "error getting verbose output of images")
- }
- if _, err := os.Stderr.WriteString("Images space usage:\n\n"); err != nil {
- return err
- }
- out := formats.StdoutTemplateArray{Output: systemDfImageVerboseDiskUsageToGeneric(imagesVerboseDiskUsage), Template: imageVerboseFormat, Fields: imageVerboseHeader}
- return out.Out()
-}
-
-func containersVerboseOutput(ctx context.Context, metaData dfMetaData) error {
- var containerVerboseHeader = map[string]string{
- "ContainerID": "CONTAINER ID ",
- "Image": "IMAGE",
- "Command": "COMMAND",
- "LocalVolumes": "LOCAL VOLUMES",
- "Size": "SIZE",
- "Created": "CREATED",
- "Status": "STATUS",
- "Names": "NAMES",
- }
- containersVerboseDiskUsage, err := getContainerVerboseDiskUsage(metaData.containers)
- if err != nil {
- return errors.Wrapf(err, "error getting verbose output of containers")
- }
- if _, err := os.Stderr.WriteString("\nContainers space usage:\n\n"); err != nil {
- return err
- }
- out := formats.StdoutTemplateArray{Output: systemDfContainerVerboseDiskUsageToGeneric(containersVerboseDiskUsage), Template: containerVerboseFormat, Fields: containerVerboseHeader}
- return out.Out()
-
-}
-
-func volumesVerboseOutput(ctx context.Context, metaData dfMetaData) error {
- var volumeVerboseHeader = map[string]string{
- "VolumeName": "VOLUME NAME",
- "Links": "LINKS",
- "Size": "SIZE",
- }
- volumesVerboseDiskUsage, err := getVolumeVerboseDiskUsage(metaData.volumes, metaData.volumeUsedByContainerMap)
- if err != nil {
- return errors.Wrapf(err, "error getting verbose output of volumes")
- }
- if _, err := os.Stderr.WriteString("\nLocal Volumes space usage:\n\n"); err != nil {
- return err
- }
- out := formats.StdoutTemplateArray{Output: systemDfVolumeVerboseDiskUsageToGeneric(volumesVerboseDiskUsage), Template: volumeVerboseFormat, Fields: volumeVerboseHeader}
- return out.Out()
-}
-
-func verboseOutput(ctx context.Context, metaData dfMetaData) error {
- if err := imagesVerboseOutput(ctx, metaData); err != nil {
- return err
- }
- if err := containersVerboseOutput(ctx, metaData); err != nil {
- return err
- }
- if err := volumesVerboseOutput(ctx, metaData); err != nil {
- return err
- }
- return nil
-}
-
-func systemDfDiskUsageToGeneric(diskUsages []systemDfDiskUsage) (out []interface{}) {
- for _, usage := range diskUsages {
- out = append(out, interface{}(usage))
- }
- return out
-}
-
-func systemDfImageVerboseDiskUsageToGeneric(diskUsages []imageVerboseDiskUsage) (out []interface{}) {
- for _, usage := range diskUsages {
- out = append(out, interface{}(usage))
- }
- return out
-}
-
-func systemDfContainerVerboseDiskUsageToGeneric(diskUsages []containerVerboseDiskUsage) (out []interface{}) {
- for _, usage := range diskUsages {
- out = append(out, interface{}(usage))
- }
- return out
-}
-
-func systemDfVolumeVerboseDiskUsageToGeneric(diskUsages []volumeVerboseDiskUsage) (out []interface{}) {
- for _, usage := range diskUsages {
- out = append(out, interface{}(usage))
- }
- return out
-}
-
-func shortImageID(id string) string {
- const imageIDTruncLength int = 4
- if len(id) > imageIDTruncLength {
- return id[:imageIDTruncLength]
- }
- return id
-}
diff --git a/cmd/podman/system_migrate.go b/cmd/podman/system_migrate.go
deleted file mode 100644
index 9c90aeb52..000000000
--- a/cmd/podman/system_migrate.go
+++ /dev/null
@@ -1,52 +0,0 @@
-package main
-
-import (
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/cmd/podman/libpodruntime"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- migrateCommand cliconfig.SystemMigrateValues
- migrateDescription = `
- podman system migrate
-
- Migrate existing containers to a new version of Podman.
-`
-
- _migrateCommand = &cobra.Command{
- Use: "migrate",
- Args: noSubArgs,
- Short: "Migrate containers",
- Long: migrateDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- migrateCommand.InputArgs = args
- migrateCommand.GlobalFlags = MainGlobalOpts
- return migrateCmd(&migrateCommand)
- },
- }
-)
-
-func init() {
- migrateCommand.Command = _migrateCommand
- migrateCommand.SetHelpTemplate(HelpTemplate())
- migrateCommand.SetUsageTemplate(UsageTemplate())
- flags := migrateCommand.Flags()
- flags.StringVar(&migrateCommand.NewRuntime, "new-runtime", "", "Specify a new runtime for all containers")
-}
-
-func migrateCmd(c *cliconfig.SystemMigrateValues) error {
- // We need to pass one extra option to NewRuntime.
- // This will inform the OCI runtime to start a migrate.
- // That's controlled by the last argument to GetRuntime.
- r, err := libpodruntime.GetRuntimeMigrate(getContext(), &c.PodmanCommand, c.NewRuntime)
- if err != nil {
- return errors.Wrapf(err, "error migrating containers")
- }
- if err := r.Shutdown(false); err != nil {
- return err
- }
-
- return nil
-}
diff --git a/cmd/podman/system_prune.go b/cmd/podman/system_prune.go
deleted file mode 100644
index 21b7aa711..000000000
--- a/cmd/podman/system_prune.go
+++ /dev/null
@@ -1,134 +0,0 @@
-package main
-
-import (
- "bufio"
- "fmt"
- "os"
- "strings"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/cmd/podman/shared"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- "github.com/spf13/cobra"
-)
-
-var (
- pruneSystemCommand cliconfig.SystemPruneValues
- pruneSystemDescription = `
- podman system prune
-
- Remove unused data
-`
- _pruneSystemCommand = &cobra.Command{
- Use: "prune",
- Args: noSubArgs,
- Short: "Remove unused data",
- Long: pruneSystemDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- pruneSystemCommand.InputArgs = args
- pruneSystemCommand.GlobalFlags = MainGlobalOpts
- pruneSystemCommand.Remote = remoteclient
- return pruneSystemCmd(&pruneSystemCommand)
- },
- }
-)
-
-func init() {
- pruneSystemCommand.Command = _pruneSystemCommand
- pruneSystemCommand.SetHelpTemplate(HelpTemplate())
- pruneSystemCommand.SetUsageTemplate(UsageTemplate())
- flags := pruneSystemCommand.Flags()
- flags.BoolVarP(&pruneSystemCommand.All, "all", "a", false, "Remove all unused data")
- flags.BoolVarP(&pruneSystemCommand.Force, "force", "f", false, "Do not prompt for confirmation")
- flags.BoolVar(&pruneSystemCommand.Volume, "volumes", false, "Prune volumes")
-
-}
-
-func pruneSystemCmd(c *cliconfig.SystemPruneValues) error {
-
- // Prompt for confirmation if --force is not set
- if !c.Force {
- reader := bufio.NewReader(os.Stdin)
- volumeString := ""
- if c.Volume {
- volumeString = `
- - all volumes not used by at least one container`
- }
- fmt.Printf(`
-WARNING! This will remove:
- - all stopped containers%s
- - all stopped pods
- - all dangling images
- - all build cache
-Are you sure you want to continue? [y/N] `, volumeString)
- answer, err := reader.ReadString('\n')
- if err != nil {
- return errors.Wrapf(err, "error reading input")
- }
- if strings.ToLower(answer)[0] != 'y' {
- return nil
- }
- }
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- // We must clean out pods first because if they may have infra containers
- fmt.Println("Deleted Pods")
- pruneValues := cliconfig.PodPruneValues{
- PodmanCommand: c.PodmanCommand,
- }
- ctx := getContext()
- ok, failures, lasterr := runtime.PrunePods(ctx, &pruneValues)
-
- if err := printCmdResults(ok, failures); err != nil {
- return err
- }
-
- rmWorkers := shared.Parallelize("rm")
- fmt.Println("Deleted Containers")
- ok, failures, err = runtime.Prune(ctx, rmWorkers, []string{})
- if err != nil {
- if lasterr != nil {
- logrus.Errorf("%q", err)
- }
- lasterr = err
- }
- if err := printCmdResults(ok, failures); err != nil {
- return err
- }
-
- if c.Bool("volumes") {
- fmt.Println("Deleted Volumes")
- err := volumePrune(runtime, getContext())
- if err != nil {
- if lasterr != nil {
- logrus.Errorf("%q", lasterr)
- }
- lasterr = err
- }
- }
-
- // Call prune; if any cids are returned, print them and then
- // return err in case an error also came up
- // TODO: support for filters in system prune
- pruneCids, err := runtime.PruneImages(ctx, c.All, []string{})
- if len(pruneCids) > 0 {
- fmt.Println("Deleted Images")
- for _, cid := range pruneCids {
- fmt.Println(cid)
- }
- }
- if err != nil {
- if lasterr != nil {
- logrus.Errorf("%q", lasterr)
- }
- lasterr = err
- }
- return lasterr
-}
diff --git a/cmd/podman/system_renumber.go b/cmd/podman/system_renumber.go
deleted file mode 100644
index 4e90a2d8c..000000000
--- a/cmd/podman/system_renumber.go
+++ /dev/null
@@ -1,50 +0,0 @@
-package main
-
-import (
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/cmd/podman/libpodruntime"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- renumberCommand cliconfig.SystemRenumberValues
- renumberDescription = `
- podman system renumber
-
- Migrate lock numbers to handle a change in maximum number of locks.
- Mandatory after the number of locks in libpod.conf is changed.
-`
-
- _renumberCommand = &cobra.Command{
- Use: "renumber",
- Args: noSubArgs,
- Short: "Migrate lock numbers",
- Long: renumberDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- renumberCommand.InputArgs = args
- renumberCommand.GlobalFlags = MainGlobalOpts
- renumberCommand.Remote = remoteclient
- return renumberCmd(&renumberCommand)
- },
- }
-)
-
-func init() {
- renumberCommand.Command = _renumberCommand
- renumberCommand.SetHelpTemplate(HelpTemplate())
- renumberCommand.SetUsageTemplate(UsageTemplate())
-}
-
-func renumberCmd(c *cliconfig.SystemRenumberValues) error {
- // We need to pass one extra option to NewRuntime.
- // This will inform the OCI runtime to start a renumber.
- // That's controlled by the last argument to GetRuntime.
- r, err := libpodruntime.GetRuntimeRenumber(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "error renumbering locks")
- }
- _ = r.Shutdown(false)
-
- return nil
-}
diff --git a/cmd/podman/tag.go b/cmd/podman/tag.go
deleted file mode 100644
index 215b716b8..000000000
--- a/cmd/podman/tag.go
+++ /dev/null
@@ -1,58 +0,0 @@
-package main
-
-import (
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- tagCommand cliconfig.TagValues
-
- tagDescription = "Adds one or more additional names to locally-stored image."
- _tagCommand = &cobra.Command{
- Use: "tag [flags] IMAGE TARGET_NAME [TARGET_NAME...]",
- Short: "Add an additional name to a local image",
- Long: tagDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- tagCommand.InputArgs = args
- tagCommand.GlobalFlags = MainGlobalOpts
- tagCommand.Remote = remoteclient
- return tagCmd(&tagCommand)
- },
- Example: `podman tag 0e3bbc2 fedora:latest
- podman tag imageID:latest myNewImage:newTag
- podman tag httpd myregistryhost:5000/fedora/httpd:v2`,
- }
-)
-
-func init() {
- tagCommand.Command = _tagCommand
- tagCommand.SetHelpTemplate(HelpTemplate())
- tagCommand.SetUsageTemplate(UsageTemplate())
-}
-
-func tagCmd(c *cliconfig.TagValues) error {
- args := c.InputArgs
- if len(args) < 2 {
- return errors.Errorf("image name and at least one new name must be specified")
- }
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not create runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- newImage, err := runtime.NewImageFromLocal(args[0])
- if err != nil {
- return err
- }
-
- for _, tagName := range args[1:] {
- if err := newImage.TagImage(tagName); err != nil {
- return errors.Wrapf(err, "error adding %q to image %q", tagName, newImage.InputName)
- }
- }
- return nil
-}
diff --git a/cmd/podman/top.go b/cmd/podman/top.go
deleted file mode 100644
index bfba90fc0..000000000
--- a/cmd/podman/top.go
+++ /dev/null
@@ -1,99 +0,0 @@
-package main
-
-import (
- "fmt"
- "os"
- "strings"
- "text/tabwriter"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/containers/libpod/pkg/util"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-func getDescriptorString() string {
- descriptors, err := util.GetContainerPidInformationDescriptors()
- if err == nil {
- return fmt.Sprintf(`
- Format Descriptors:
- %s`, strings.Join(descriptors, ","))
- }
- return ""
-}
-
-var (
- topCommand cliconfig.TopValues
- topDescription = fmt.Sprintf(`Similar to system "top" command.
-
- Specify format descriptors to alter the output.
-
- Running "podman top -l pid pcpu seccomp" will print the process ID, the CPU percentage and the seccomp mode of each process of the latest container.
-%s`, getDescriptorString())
-
- _topCommand = &cobra.Command{
- Use: "top [flags] CONTAINER [FORMAT-DESCRIPTORS|ARGS]",
- Short: "Display the running processes of a container",
- Long: topDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- topCommand.InputArgs = args
- topCommand.GlobalFlags = MainGlobalOpts
- topCommand.Remote = remoteclient
- return topCmd(&topCommand)
- },
- Args: cobra.ArbitraryArgs,
- Example: `podman top ctrID
-podman top --latest
-podman top ctrID pid seccomp args %C
-podman top ctrID -eo user,pid,comm`,
- }
-)
-
-func init() {
- topCommand.Command = _topCommand
- topCommand.SetHelpTemplate(HelpTemplate())
- topCommand.SetUsageTemplate(UsageTemplate())
- flags := topCommand.Flags()
- flags.SetInterspersed(false)
- flags.BoolVar(&topCommand.ListDescriptors, "list-descriptors", false, "")
- markFlagHidden(flags, "list-descriptors")
- flags.BoolVarP(&topCommand.Latest, "latest", "l", false, "Act on the latest container podman is aware of")
- markFlagHiddenForRemoteClient("latest", flags)
-}
-
-func topCmd(c *cliconfig.TopValues) error {
- var err error
- args := c.InputArgs
-
- if c.ListDescriptors {
- descriptors, err := util.GetContainerPidInformationDescriptors()
- if err != nil {
- return err
- }
- fmt.Println(strings.Join(descriptors, "\n"))
- return nil
- }
-
- if len(args) < 1 && !c.Latest {
- return errors.Errorf("you must provide the name or id of a running container")
- }
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "error creating libpod runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- psOutput, err := runtime.Top(c)
- if err != nil {
- return err
- }
- w := tabwriter.NewWriter(os.Stdout, 5, 1, 3, ' ', 0)
- for _, proc := range psOutput {
- if _, err := fmt.Fprintln(w, proc); err != nil {
- return err
- }
- }
- return w.Flush()
-}
diff --git a/cmd/podman/tree.go b/cmd/podman/tree.go
deleted file mode 100644
index 28c770f0c..000000000
--- a/cmd/podman/tree.go
+++ /dev/null
@@ -1,57 +0,0 @@
-package main
-
-import (
- "fmt"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- treeCommand cliconfig.TreeValues
-
- treeDescription = "Prints layer hierarchy of an image in a tree format"
- _treeCommand = &cobra.Command{
- Use: "tree [flags] IMAGE",
- Short: treeDescription,
- Long: treeDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- treeCommand.InputArgs = args
- treeCommand.GlobalFlags = MainGlobalOpts
- treeCommand.Remote = remoteclient
- return treeCmd(&treeCommand)
- },
- Example: "podman image tree alpine:latest",
- }
-)
-
-func init() {
- treeCommand.Command = _treeCommand
- treeCommand.SetUsageTemplate(UsageTemplate())
- treeCommand.Flags().BoolVar(&treeCommand.WhatRequires, "whatrequires", false, "Show all child images and layers of the specified image")
-}
-
-func treeCmd(c *cliconfig.TreeValues) error {
- args := c.InputArgs
- if len(args) == 0 {
- return errors.Errorf("an image name must be specified")
- }
- if len(args) > 1 {
- return errors.Errorf("you must provide at most 1 argument")
- }
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "error creating libpod runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- tree, err := runtime.ImageTree(c.InputArgs[0], c.WhatRequires)
- if err != nil {
- return err
- }
- fmt.Print(tree)
- return nil
-}
diff --git a/cmd/podman/trust.go b/cmd/podman/trust.go
deleted file mode 100644
index f13af96bc..000000000
--- a/cmd/podman/trust.go
+++ /dev/null
@@ -1,25 +0,0 @@
-package main
-
-import (
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/spf13/cobra"
-)
-
-var (
- trustCommand cliconfig.TrustValues
- trustDescription = `Manages which registries you trust as a source of container images based on its location.
- The location is determined by the transport and the registry host of the image. Using this container image docker://docker.io/library/busybox as an example, docker is the transport and docker.io is the registry host.`
- _trustCommand = &cobra.Command{
- Use: "trust",
- Short: "Manage container image trust policy",
- Long: trustDescription,
- RunE: commandRunE(),
- }
-)
-
-func init() {
- trustCommand.Command = _trustCommand
- trustCommand.SetHelpTemplate(HelpTemplate())
- trustCommand.SetUsageTemplate(UsageTemplate())
- trustCommand.AddCommand(getTrustSubCommands()...)
-}
diff --git a/cmd/podman/trust_set_show.go b/cmd/podman/trust_set_show.go
deleted file mode 100644
index 7d2a5ddc3..000000000
--- a/cmd/podman/trust_set_show.go
+++ /dev/null
@@ -1,339 +0,0 @@
-package main
-
-import (
- "io/ioutil"
- "os"
- "sort"
- "strings"
-
- "github.com/containers/buildah/pkg/formats"
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/cmd/podman/libpodruntime"
- "github.com/containers/libpod/libpod/image"
- "github.com/containers/libpod/pkg/trust"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- "github.com/spf13/cobra"
-)
-
-var (
- setTrustCommand cliconfig.SetTrustValues
- showTrustCommand cliconfig.ShowTrustValues
- setTrustDescription = "Set default trust policy or add a new trust policy for a registry"
- _setTrustCommand = &cobra.Command{
- Use: "set [flags] REGISTRY",
- Short: "Set default trust policy or a new trust policy for a registry",
- Long: setTrustDescription,
- Example: "",
- RunE: func(cmd *cobra.Command, args []string) error {
- setTrustCommand.InputArgs = args
- setTrustCommand.GlobalFlags = MainGlobalOpts
- setTrustCommand.Remote = remoteclient
- return setTrustCmd(&setTrustCommand)
- },
- }
-
- showTrustDescription = "Display trust policy for the system"
- _showTrustCommand = &cobra.Command{
- Use: "show [flags] [REGISTRY]",
- Short: "Display trust policy for the system",
- Long: showTrustDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- showTrustCommand.InputArgs = args
- showTrustCommand.GlobalFlags = MainGlobalOpts
- return showTrustCmd(&showTrustCommand)
- },
- Example: "",
- }
-)
-
-func init() {
- setTrustCommand.Command = _setTrustCommand
- setTrustCommand.SetHelpTemplate(HelpTemplate())
- setTrustCommand.SetUsageTemplate(UsageTemplate())
- showTrustCommand.Command = _showTrustCommand
- showTrustCommand.SetHelpTemplate(HelpTemplate())
- showTrustCommand.SetUsageTemplate(UsageTemplate())
- setFlags := setTrustCommand.Flags()
- setFlags.StringVar(&setTrustCommand.PolicyPath, "policypath", "", "")
- markFlagHidden(setFlags, "policypath")
- setFlags.StringSliceVarP(&setTrustCommand.PubKeysFile, "pubkeysfile", "f", []string{}, `Path of installed public key(s) to trust for TARGET.
-Absolute path to keys is added to policy.json. May
-used multiple times to define multiple public keys.
-File(s) must exist before using this command`)
- setFlags.StringVarP(&setTrustCommand.TrustType, "type", "t", "signedBy", "Trust type, accept values: signedBy(default), accept, reject")
-
- showFlags := showTrustCommand.Flags()
- showFlags.BoolVarP(&showTrustCommand.Json, "json", "j", false, "Output as json")
- showFlags.StringVar(&showTrustCommand.PolicyPath, "policypath", "", "")
- showFlags.BoolVar(&showTrustCommand.Raw, "raw", false, "Output raw policy file")
- markFlagHidden(showFlags, "policypath")
- showFlags.StringVar(&showTrustCommand.RegistryPath, "registrypath", "", "")
- markFlagHidden(showFlags, "registrypath")
-}
-
-func showTrustCmd(c *cliconfig.ShowTrustValues) error {
- runtime, err := libpodruntime.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not create runtime")
- }
-
- var (
- policyPath string
- systemRegistriesDirPath string
- outjson interface{}
- )
- if c.Flag("policypath").Changed {
- policyPath = c.PolicyPath
- } else {
- policyPath = trust.DefaultPolicyPath(runtime.SystemContext())
- }
- policyContent, err := ioutil.ReadFile(policyPath)
- if err != nil {
- return errors.Wrapf(err, "unable to read %s", policyPath)
- }
- if c.Flag("registrypath").Changed {
- systemRegistriesDirPath = c.RegistryPath
- } else {
- systemRegistriesDirPath = trust.RegistriesDirPath(runtime.SystemContext())
- }
-
- if c.Raw {
- _, err := os.Stdout.Write(policyContent)
- if err != nil {
- return errors.Wrap(err, "could not read raw trust policies")
- }
- return nil
- }
-
- policyContentStruct, err := trust.GetPolicy(policyPath)
- if err != nil {
- return errors.Wrapf(err, "could not read trust policies")
- }
-
- if c.Json {
- policyJSON, err := getPolicyJSON(policyContentStruct, systemRegistriesDirPath)
- if err != nil {
- return errors.Wrapf(err, "could not show trust policies in JSON format")
- }
- outjson = policyJSON
- out := formats.JSONStruct{Output: outjson}
- return out.Out()
- }
-
- showOutputMap, err := getPolicyShowOutput(policyContentStruct, systemRegistriesDirPath)
- if err != nil {
- return errors.Wrapf(err, "could not show trust policies")
- }
- out := formats.StdoutTemplateArray{Output: showOutputMap, Template: "{{.Repo}}\t{{.Trusttype}}\t{{.GPGid}}\t{{.Sigstore}}"}
- return out.Out()
-}
-
-func setTrustCmd(c *cliconfig.SetTrustValues) error {
- runtime, err := libpodruntime.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not create runtime")
- }
- var (
- policyPath string
- policyContentStruct trust.PolicyContent
- newReposContent []trust.RepoContent
- )
- args := c.InputArgs
- if len(args) != 1 {
- return errors.Errorf("default or a registry name must be specified")
- }
- valid, err := image.IsValidImageURI(args[0])
- if err != nil || !valid {
- return errors.Wrapf(err, "invalid image uri %s", args[0])
- }
-
- trusttype := c.TrustType
- if !isValidTrustType(trusttype) {
- return errors.Errorf("invalid choice: %s (choose from 'accept', 'reject', 'signedBy')", trusttype)
- }
- if trusttype == "accept" {
- trusttype = "insecureAcceptAnything"
- }
-
- pubkeysfile := c.PubKeysFile
- if len(pubkeysfile) == 0 && trusttype == "signedBy" {
- return errors.Errorf("At least one public key must be defined for type 'signedBy'")
- }
-
- if c.Flag("policypath").Changed {
- policyPath = c.PolicyPath
- } else {
- policyPath = trust.DefaultPolicyPath(runtime.SystemContext())
- }
- _, err = os.Stat(policyPath)
- if !os.IsNotExist(err) {
- policyContent, err := ioutil.ReadFile(policyPath)
- if err != nil {
- return errors.Wrapf(err, "unable to read %s", policyPath)
- }
- if err := json.Unmarshal(policyContent, &policyContentStruct); err != nil {
- return errors.Errorf("could not read trust policies")
- }
- }
- if len(pubkeysfile) != 0 {
- for _, filepath := range pubkeysfile {
- newReposContent = append(newReposContent, trust.RepoContent{Type: trusttype, KeyType: "GPGKeys", KeyPath: filepath})
- }
- } else {
- newReposContent = append(newReposContent, trust.RepoContent{Type: trusttype})
- }
- if args[0] == "default" {
- policyContentStruct.Default = newReposContent
- } else {
- if len(policyContentStruct.Default) == 0 {
- return errors.Errorf("Default trust policy must be set.")
- }
- registryExists := false
- for transport, transportval := range policyContentStruct.Transports {
- _, registryExists = transportval[args[0]]
- if registryExists {
- policyContentStruct.Transports[transport][args[0]] = newReposContent
- break
- }
- }
- if !registryExists {
- if policyContentStruct.Transports == nil {
- policyContentStruct.Transports = make(map[string]trust.RepoMap)
- }
- if policyContentStruct.Transports["docker"] == nil {
- policyContentStruct.Transports["docker"] = make(map[string][]trust.RepoContent)
- }
- policyContentStruct.Transports["docker"][args[0]] = append(policyContentStruct.Transports["docker"][args[0]], newReposContent...)
- }
- }
-
- data, err := json.MarshalIndent(policyContentStruct, "", " ")
- if err != nil {
- return errors.Wrapf(err, "error setting trust policy")
- }
- err = ioutil.WriteFile(policyPath, data, 0644)
- if err != nil {
- return errors.Wrapf(err, "error setting trust policy")
- }
- return nil
-}
-
-func sortShowOutputMapKey(m map[string]trust.ShowOutput) []string {
- keys := make([]string, len(m))
- i := 0
- for k := range m {
- keys[i] = k
- i++
- }
- sort.Strings(keys)
- return keys
-}
-
-func isValidTrustType(t string) bool {
- if t == "accept" || t == "insecureAcceptAnything" || t == "reject" || t == "signedBy" {
- return true
- }
- return false
-}
-
-func getPolicyJSON(policyContentStruct trust.PolicyContent, systemRegistriesDirPath string) (map[string]map[string]interface{}, error) {
- registryConfigs, err := trust.LoadAndMergeConfig(systemRegistriesDirPath)
- if err != nil {
- return nil, err
- }
-
- policyJSON := make(map[string]map[string]interface{})
- if len(policyContentStruct.Default) > 0 {
- policyJSON["* (default)"] = make(map[string]interface{})
- policyJSON["* (default)"]["type"] = policyContentStruct.Default[0].Type
- }
- for transname, transval := range policyContentStruct.Transports {
- for repo, repoval := range transval {
- policyJSON[repo] = make(map[string]interface{})
- policyJSON[repo]["type"] = repoval[0].Type
- policyJSON[repo]["transport"] = transname
- keyarr := []string{}
- for _, repoele := range repoval {
- if len(repoele.KeyPath) > 0 {
- keyarr = append(keyarr, repoele.KeyPath)
- }
- if len(repoele.KeyData) > 0 {
- keyarr = append(keyarr, repoele.KeyData)
- }
- }
- policyJSON[repo]["keys"] = keyarr
- policyJSON[repo]["sigstore"] = ""
- registryNamespace := trust.HaveMatchRegistry(repo, registryConfigs)
- if registryNamespace != nil {
- policyJSON[repo]["sigstore"] = registryNamespace.SigStore
- }
- }
- }
- return policyJSON, nil
-}
-
-var typeDescription = map[string]string{"insecureAcceptAnything": "accept", "signedBy": "signed", "reject": "reject"}
-
-func trustTypeDescription(trustType string) string {
- trustDescription, exist := typeDescription[trustType]
- if !exist {
- logrus.Warnf("invalid trust type %s", trustType)
- }
- return trustDescription
-}
-
-func getPolicyShowOutput(policyContentStruct trust.PolicyContent, systemRegistriesDirPath string) ([]interface{}, error) {
- var output []interface{}
-
- registryConfigs, err := trust.LoadAndMergeConfig(systemRegistriesDirPath)
- if err != nil {
- return nil, err
- }
-
- trustShowOutputMap := make(map[string]trust.ShowOutput)
- if len(policyContentStruct.Default) > 0 {
- defaultPolicyStruct := trust.ShowOutput{
- Repo: "default",
- Trusttype: trustTypeDescription(policyContentStruct.Default[0].Type),
- }
- trustShowOutputMap["* (default)"] = defaultPolicyStruct
- }
- for _, transval := range policyContentStruct.Transports {
- for repo, repoval := range transval {
- tempTrustShowOutput := trust.ShowOutput{
- Repo: repo,
- Trusttype: repoval[0].Type,
- }
- // TODO - keyarr is not used and I don't know its intent; commenting out for now for someone to fix later
- //keyarr := []string{}
- uids := []string{}
- for _, repoele := range repoval {
- if len(repoele.KeyPath) > 0 {
- //keyarr = append(keyarr, repoele.KeyPath)
- uids = append(uids, trust.GetGPGIdFromKeyPath(repoele.KeyPath)...)
- }
- if len(repoele.KeyData) > 0 {
- //keyarr = append(keyarr, string(repoele.KeyData))
- uids = append(uids, trust.GetGPGIdFromKeyData(repoele.KeyData)...)
- }
- }
- tempTrustShowOutput.GPGid = strings.Join(uids, ", ")
-
- registryNamespace := trust.HaveMatchRegistry(repo, registryConfigs)
- if registryNamespace != nil {
- tempTrustShowOutput.Sigstore = registryNamespace.SigStore
- }
- trustShowOutputMap[repo] = tempTrustShowOutput
- }
- }
-
- sortedRepos := sortShowOutputMapKey(trustShowOutputMap)
- for _, reponame := range sortedRepos {
- showOutput, exists := trustShowOutputMap[reponame]
- if exists {
- output = append(output, interface{}(showOutput))
- }
- }
- return output, nil
-}
diff --git a/cmd/podman/umount.go b/cmd/podman/umount.go
deleted file mode 100644
index 6ad485c2c..000000000
--- a/cmd/podman/umount.go
+++ /dev/null
@@ -1,62 +0,0 @@
-package main
-
-import (
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- umountCommand cliconfig.UmountValues
-
- description = `Container storage increments a mount counter each time a container is mounted.
-
- When a container is unmounted, the mount counter is decremented. The container's root filesystem is physically unmounted only when the mount counter reaches zero indicating no other processes are using the mount.
-
- An unmount can be forced with the --force flag.
-`
- _umountCommand = &cobra.Command{
- Use: "umount [flags] CONTAINER [CONTAINER...]",
- Aliases: []string{"unmount"},
- Short: "Unmounts working container's root filesystem",
- Long: description,
- RunE: func(cmd *cobra.Command, args []string) error {
- umountCommand.InputArgs = args
- umountCommand.GlobalFlags = MainGlobalOpts
- umountCommand.Remote = remoteclient
- return umountCmd(&umountCommand)
- },
- Args: func(cmd *cobra.Command, args []string) error {
- return checkAllLatestAndCIDFile(cmd, args, false, false)
- },
- Example: `podman umount ctrID
- podman umount ctrID1 ctrID2 ctrID3
- podman umount --all`,
- }
-)
-
-func init() {
- umountCommand.Command = _umountCommand
- umountCommand.SetHelpTemplate(HelpTemplate())
- umountCommand.SetUsageTemplate(UsageTemplate())
- flags := umountCommand.Flags()
- flags.BoolVarP(&umountCommand.All, "all", "a", false, "Umount all of the currently mounted containers")
- flags.BoolVarP(&umountCommand.Force, "force", "f", false, "Force the complete umount all of the currently mounted containers")
- flags.BoolVarP(&umountCommand.Latest, "latest", "l", false, "Act on the latest container podman is aware of")
- markFlagHiddenForRemoteClient("latest", flags)
-}
-
-func umountCmd(c *cliconfig.UmountValues) error {
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "error creating runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- ok, failures, err := runtime.UmountRootFilesystems(getContext(), c)
- if err != nil {
- return err
- }
- return printCmdResults(ok, failures)
-}
diff --git a/cmd/podman/unpause.go b/cmd/podman/unpause.go
deleted file mode 100644
index ae24b0e66..000000000
--- a/cmd/podman/unpause.go
+++ /dev/null
@@ -1,69 +0,0 @@
-package main
-
-import (
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/libpod/define"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/containers/libpod/pkg/rootless"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- unpauseCommand cliconfig.UnpauseValues
-
- unpauseDescription = `Unpauses one or more previously paused containers. The container name or ID can be used.`
- _unpauseCommand = &cobra.Command{
- Use: "unpause [flags] CONTAINER [CONTAINER...]",
- Short: "Unpause the processes in one or more containers",
- Long: unpauseDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- unpauseCommand.InputArgs = args
- unpauseCommand.GlobalFlags = MainGlobalOpts
- unpauseCommand.Remote = remoteclient
- return unpauseCmd(&unpauseCommand)
- },
- Example: `podman unpause ctrID
- podman unpause --all`,
- }
-)
-
-func init() {
- unpauseCommand.Command = _unpauseCommand
- unpauseCommand.SetHelpTemplate(HelpTemplate())
- unpauseCommand.SetUsageTemplate(UsageTemplate())
- flags := unpauseCommand.Flags()
- flags.BoolVarP(&unpauseCommand.All, "all", "a", false, "Unpause all paused containers")
-}
-
-func unpauseCmd(c *cliconfig.UnpauseValues) error {
- if rootless.IsRootless() && !remoteclient {
- return errors.New("unpause is not supported for rootless containers")
- }
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- args := c.InputArgs
- if len(args) < 1 && !c.All {
- return errors.Errorf("you must provide at least one container name or id")
- }
- ok, failures, err := runtime.UnpauseContainers(getContext(), c)
- if err != nil {
- if errors.Cause(err) == define.ErrNoSuchCtr {
- if len(c.InputArgs) > 1 {
- exitCode = define.ExecErrorCodeGeneric
- } else {
- exitCode = 1
- }
- }
- return err
- }
- if len(failures) > 0 {
- exitCode = define.ExecErrorCodeGeneric
- }
- return printCmdResults(ok, failures)
-}
diff --git a/cmd/podman/unshare.go b/cmd/podman/unshare.go
deleted file mode 100644
index 28d17a319..000000000
--- a/cmd/podman/unshare.go
+++ /dev/null
@@ -1,75 +0,0 @@
-// +build !remoteclient
-
-package main
-
-import (
- "fmt"
- "os"
- "os/exec"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/containers/libpod/pkg/rootless"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- unshareDescription = "Runs a command in a modified user namespace."
- _unshareCommand = &cobra.Command{
- Use: "unshare [flags] [COMMAND [ARG]]",
- Short: "Run a command in a modified user namespace",
- Long: unshareDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- unshareCommand.InputArgs = args
- unshareCommand.GlobalFlags = MainGlobalOpts
- return unshareCmd(&unshareCommand)
- },
- Example: `podman unshare id
- podman unshare cat /proc/self/uid_map,
- podman unshare podman-script.sh`,
- }
- unshareCommand cliconfig.PodmanCommand
-)
-
-func init() {
- unshareCommand.Command = _unshareCommand
- unshareCommand.SetHelpTemplate(HelpTemplate())
- unshareCommand.SetUsageTemplate(UsageTemplate())
- flags := _unshareCommand.Flags()
- flags.SetInterspersed(false)
-}
-
-func unshareEnv(graphroot, runroot string) []string {
- return append(os.Environ(), "_CONTAINERS_USERNS_CONFIGURED=done",
- fmt.Sprintf("CONTAINERS_GRAPHROOT=%s", graphroot),
- fmt.Sprintf("CONTAINERS_RUNROOT=%s", runroot))
-}
-
-// unshareCmd execs whatever using the ID mappings that we want to use for ourselves
-func unshareCmd(c *cliconfig.PodmanCommand) error {
-
- if isRootless := rootless.IsRootless(); !isRootless {
- return errors.Errorf("please use unshare with rootless")
- }
- // exec the specified command, if there is one
- if len(c.InputArgs) < 1 {
- // try to exec the shell, if one's set
- shell, shellSet := os.LookupEnv("SHELL")
- if !shellSet {
- return errors.Errorf("no command specified and no $SHELL specified")
- }
- c.InputArgs = []string{shell}
- }
-
- runtime, err := adapter.GetRuntime(getContext(), c)
- if err != nil {
- return err
- }
- cmd := exec.Command(c.InputArgs[0], c.InputArgs[1:]...)
- cmd.Env = unshareEnv(runtime.StorageConfig().GraphRoot, runtime.StorageConfig().RunRoot)
- cmd.Stdin = os.Stdin
- cmd.Stdout = os.Stdout
- cmd.Stderr = os.Stderr
- return cmd.Run()
-}
diff --git a/cmd/podman/untag.go b/cmd/podman/untag.go
deleted file mode 100644
index 9ff62b808..000000000
--- a/cmd/podman/untag.go
+++ /dev/null
@@ -1,67 +0,0 @@
-package main
-
-import (
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- "github.com/spf13/cobra"
-)
-
-var (
- untagCommand cliconfig.UntagValues
-
- _untagCommand = &cobra.Command{
- Use: "untag [flags] IMAGE [NAME...]",
- Short: "Remove a name from a local image",
- Long: "Removes one or more names from a locally-stored image.",
- RunE: func(cmd *cobra.Command, args []string) error {
- untagCommand.InputArgs = args
- untagCommand.GlobalFlags = MainGlobalOpts
- untagCommand.Remote = remoteclient
- return untag(&untagCommand)
- },
- Example: `podman untag 0e3bbc2
- podman untag imageID:latest otherImageName:latest
- podman untag httpd myregistryhost:5000/fedora/httpd:v2`,
- }
-)
-
-func init() {
- untagCommand.Command = _untagCommand
- untagCommand.SetHelpTemplate(HelpTemplate())
- untagCommand.SetUsageTemplate(UsageTemplate())
-}
-
-func untag(c *cliconfig.UntagValues) error {
- args := c.InputArgs
-
- if len(args) == 0 {
- return errors.Errorf("at least one image name needs to be specified")
- }
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "could not create runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- newImage, err := runtime.NewImageFromLocal(args[0])
- if err != nil {
- return err
- }
-
- tags := args[1:]
- if len(args) == 1 {
- // Remove all tags if not explicitly specified
- tags = newImage.Names()
- }
- logrus.Debugf("Tags to be removed: %v", tags)
-
- for _, tag := range tags {
- if err := newImage.UntagImage(tag); err != nil {
- return errors.Wrapf(err, "removing %q from %q", tag, newImage.InputName)
- }
- }
- return nil
-}
diff --git a/cmd/podman/utils.go b/cmd/podman/utils.go
deleted file mode 100644
index 938a3f41e..000000000
--- a/cmd/podman/utils.go
+++ /dev/null
@@ -1,90 +0,0 @@
-package main
-
-import (
- "fmt"
- "os"
- "reflect"
- "runtime/debug"
-
- "github.com/sirupsen/logrus"
- "github.com/spf13/pflag"
-)
-
-// print results from CLI command
-func printCmdResults(ok []string, failures map[string]error) error {
- for _, id := range ok {
- fmt.Println(id)
- }
-
- if len(failures) > 0 {
- keys := reflect.ValueOf(failures).MapKeys()
- lastKey := keys[len(keys)-1].String()
- lastErr := failures[lastKey]
- delete(failures, lastKey)
-
- for _, err := range failures {
- outputError(err)
- }
- return lastErr
- }
- return nil
-}
-
-// markFlagHiddenForRemoteClient makes the flag not appear as part of the CLI
-// on the remote-client
-func markFlagHiddenForRemoteClient(flagName string, flags *pflag.FlagSet) {
- if remoteclient {
- if err := flags.MarkHidden(flagName); err != nil {
- debug.PrintStack()
- logrus.Errorf("unable to mark %s as hidden in the remote-client", flagName)
- }
- }
-}
-
-// markFlagHidden is a helper function to log an error if marking
-// a flag as hidden happens to fail
-func markFlagHidden(flags *pflag.FlagSet, flag string) {
- if err := flags.MarkHidden(flag); err != nil {
- logrus.Errorf("unable to mark flag '%s' as hidden: %q", flag, err)
- }
-}
-
-func aliasFlags(f *pflag.FlagSet, name string) pflag.NormalizedName {
- switch name {
- case "healthcheck-command":
- name = "health-cmd"
- case "healthcheck-interval":
- name = "health-interval"
- case "healthcheck-retries":
- name = "health-retries"
- case "healthcheck-start-period":
- name = "health-start-period"
- case "healthcheck-timeout":
- name = "health-timeout"
- case "net":
- name = "network"
- case "timeout":
- name = "time"
- }
- return pflag.NormalizedName(name)
-}
-
-// Check if a file exists and is not a directory
-func checkIfFileExists(name string) bool {
- file, err := os.Stat(name)
- // All errors return file == nil
- if err != nil {
- return false
- }
- return !file.IsDir()
-}
-
-// Check if a file is or is not a directory
-func fileIsDir(name string) bool {
- file, err := os.Stat(name)
- // All errors return file == nil
- if err != nil {
- return false
- }
- return file.IsDir()
-}
diff --git a/cmd/podmanV2/utils/alias.go b/cmd/podman/utils/alias.go
index 54b3c5e89..54b3c5e89 100644
--- a/cmd/podmanV2/utils/alias.go
+++ b/cmd/podman/utils/alias.go
diff --git a/cmd/podmanV2/utils/error.go b/cmd/podman/utils/error.go
index 3464f0779..3464f0779 100644
--- a/cmd/podmanV2/utils/error.go
+++ b/cmd/podman/utils/error.go
diff --git a/cmd/podman/varlink.go b/cmd/podman/varlink.go
deleted file mode 100644
index be882d497..000000000
--- a/cmd/podman/varlink.go
+++ /dev/null
@@ -1,119 +0,0 @@
-// +build varlink,!remoteclient
-
-package main
-
-import (
- "fmt"
- "os"
- "path/filepath"
- "time"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/cmd/podman/libpodruntime"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/containers/libpod/pkg/rootless"
- "github.com/containers/libpod/pkg/util"
- iopodman "github.com/containers/libpod/pkg/varlink"
- "github.com/containers/libpod/pkg/varlinkapi"
- "github.com/containers/libpod/version"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- "github.com/spf13/cobra"
- "github.com/varlink/go/varlink"
-)
-
-var (
- varlinkCommand cliconfig.VarlinkValues
- varlinkDescription = `Run varlink interface. Podman varlink listens on the specified unix domain socket for incoming connects.
-
- Tools speaking varlink protocol can remotely manage pods, containers and images.
-`
- _varlinkCommand = &cobra.Command{
- Use: "varlink [flags] [URI]",
- Short: "Run varlink interface",
- Long: varlinkDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- varlinkCommand.InputArgs = args
- varlinkCommand.GlobalFlags = MainGlobalOpts
- return varlinkCmd(&varlinkCommand)
- },
- Example: `podman varlink unix:/run/podman/io.podman
- podman varlink --timeout 5000 unix:/run/podman/io.podman`,
- }
-)
-
-func init() {
- varlinkCommand.Command = _varlinkCommand
- varlinkCommand.SetHelpTemplate(HelpTemplate())
- varlinkCommand.SetUsageTemplate(UsageTemplate())
- flags := varlinkCommand.Flags()
- flags.Int64VarP(&varlinkCommand.Timeout, "timeout", "t", 1000, "Time until the varlink session expires in milliseconds. Use 0 to disable the timeout")
-}
-
-func varlinkCmd(c *cliconfig.VarlinkValues) error {
- varlinkURI := adapter.DefaultVarlinkAddress
- if rootless.IsRootless() {
- xdg, err := util.GetRuntimeDir()
- if err != nil {
- return err
- }
- socketDir := filepath.Join(xdg, "podman/io.podman")
- if _, err := os.Stat(filepath.Dir(socketDir)); os.IsNotExist(err) {
- if err := os.Mkdir(filepath.Dir(socketDir), 0755); err != nil {
- return err
- }
- }
- varlinkURI = fmt.Sprintf("unix:%s", socketDir)
- }
- args := c.InputArgs
-
- if len(args) > 1 {
- return errors.Errorf("too many arguments. You may optionally provide 1")
- }
-
- if len(args) > 0 {
- varlinkURI = args[0]
- }
-
- logrus.Debugf("Using varlink socket: %s", varlinkURI)
- timeout := time.Duration(c.Timeout) * time.Millisecond
-
- // Create a single runtime for varlink
- runtime, err := libpodruntime.GetRuntimeDisableFDs(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "error creating libpod runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- var varlinkInterfaces = []*iopodman.VarlinkInterface{varlinkapi.New(c.PodmanCommand.Command, runtime)}
- // Register varlink service. The metadata can be retrieved with:
- // $ varlink info [varlink address URI]
- service, err := varlink.NewService(
- "Atomic",
- "podman",
- version.Version,
- "https://github.com/containers/libpod",
- )
- if err != nil {
- return errors.Wrapf(err, "unable to create new varlink service")
- }
-
- for _, i := range varlinkInterfaces {
- if err := service.RegisterInterface(i); err != nil {
- return errors.Errorf("unable to register varlink interface %v", i)
- }
- }
-
- // Run the varlink server at the given address
- if err = service.Listen(varlinkURI, timeout); err != nil {
- switch err.(type) {
- case varlink.ServiceTimeoutError:
- logrus.Infof("varlink service expired (use --timeout to increase session time beyond %d ms, 0 means never timeout)", c.Int64("timeout"))
- return nil
- default:
- return errors.Wrapf(err, "unable to start varlink service")
- }
- }
-
- return nil
-}
diff --git a/cmd/podman/varlink_dummy.go b/cmd/podman/varlink_dummy.go
deleted file mode 100644
index 0c7981f1a..000000000
--- a/cmd/podman/varlink_dummy.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// +build !varlink
-
-package main
-
-import "github.com/spf13/cobra"
-
-var (
- // nolint:varcheck,deadcode,unused
- _varlinkCommand = &cobra.Command{
- Use: "",
- }
-)
diff --git a/cmd/podman/version.go b/cmd/podman/version.go
deleted file mode 100644
index 5907241ff..000000000
--- a/cmd/podman/version.go
+++ /dev/null
@@ -1,129 +0,0 @@
-package main
-
-import (
- "fmt"
- "io"
- "os"
- "strings"
- "text/tabwriter"
- "time"
-
- "github.com/containers/buildah/pkg/formats"
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/libpod/define"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- versionCommand cliconfig.VersionValues
- _versionCommand = &cobra.Command{
- Use: "version",
- Args: noSubArgs,
- Short: "Display the Podman Version Information",
- RunE: func(cmd *cobra.Command, args []string) error {
- versionCommand.InputArgs = args
- versionCommand.GlobalFlags = MainGlobalOpts
- versionCommand.Remote = remoteclient
- return versionCmd(&versionCommand)
- },
- }
-)
-
-func init() {
- versionCommand.Command = _versionCommand
- versionCommand.SetUsageTemplate(UsageTemplate())
- flags := versionCommand.Flags()
- flags.StringVarP(&versionCommand.Format, "format", "f", "", "Change the output format to JSON or a Go template")
-}
-func getRemoteVersion(c *cliconfig.VersionValues) (version define.Version, err error) {
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return version, errors.Wrapf(err, "could not get runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- return runtime.GetVersion()
-}
-
-type versionStruct struct {
- Client define.Version
- Server define.Version
-}
-
-// versionCmd gets and prints version info for version command
-func versionCmd(c *cliconfig.VersionValues) error {
-
- var (
- v versionStruct
- err error
- )
- v.Client, err = define.GetVersion()
- if err != nil {
- return errors.Wrapf(err, "unable to determine version")
- }
- if remote {
- v.Server, err = getRemoteVersion(c)
- if err != nil {
- return err
- }
- } else {
- v.Server = v.Client
- }
-
- versionOutputFormat := c.Format
- if versionOutputFormat != "" {
- if strings.Join(strings.Fields(versionOutputFormat), "") == "{{json.}}" {
- versionOutputFormat = formats.JSONString
- }
- var out formats.Writer
- switch versionOutputFormat {
- case formats.JSONString:
- out = formats.JSONStruct{Output: v}
- return out.Out()
- default:
- out = formats.StdoutTemplate{Output: v, Template: versionOutputFormat}
- err := out.Out()
- if err != nil {
- // On Failure, assume user is using older version of podman version --format and check client
- out = formats.StdoutTemplate{Output: v.Client, Template: versionOutputFormat}
- if err1 := out.Out(); err1 != nil {
- return err
- }
- }
- }
- return nil
- }
- w := tabwriter.NewWriter(os.Stdout, 0, 0, 2, ' ', 0)
- defer w.Flush()
-
- if remote {
- if _, err := fmt.Fprintf(w, "Client:\n"); err != nil {
- return err
- }
- formatVersion(w, v.Client)
- if _, err := fmt.Fprintf(w, "\nServer:\n"); err != nil {
- return err
- }
- formatVersion(w, v.Server)
- } else {
- formatVersion(w, v.Client)
- }
- return nil
-}
-
-func formatVersion(writer io.Writer, version define.Version) {
- fmt.Fprintf(writer, "Version:\t%s\n", version.Version)
- fmt.Fprintf(writer, "RemoteAPI Version:\t%d\n", version.RemoteAPIVersion)
- fmt.Fprintf(writer, "Go Version:\t%s\n", version.GoVersion)
- if version.GitCommit != "" {
- fmt.Fprintf(writer, "Git Commit:\t%s\n", version.GitCommit)
- }
- // Prints out the build time in readable format
- if version.Built != 0 {
- fmt.Fprintf(writer, "Built:\t%s\n", time.Unix(version.Built, 0).Format(time.ANSIC))
- }
-
- fmt.Fprintf(writer, "OS/Arch:\t%s\n", version.OsArch)
-}
diff --git a/cmd/podman/volume.go b/cmd/podman/volume.go
deleted file mode 100644
index 2a071d0c7..000000000
--- a/cmd/podman/volume.go
+++ /dev/null
@@ -1,30 +0,0 @@
-package main
-
-import (
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/spf13/cobra"
-)
-
-var volumeDescription = `Volumes are created in and can be shared between containers.`
-
-var volumeCommand = cliconfig.PodmanCommand{
- Command: &cobra.Command{
- Use: "volume",
- Short: "Manage volumes",
- Long: volumeDescription,
- RunE: commandRunE(),
- },
-}
-var volumeSubcommands = []*cobra.Command{
- _volumeCreateCommand,
- _volumeLsCommand,
- _volumeRmCommand,
- _volumeInspectCommand,
- _volumePruneCommand,
-}
-
-func init() {
- volumeCommand.SetUsageTemplate(UsageTemplate())
- volumeCommand.AddCommand(volumeSubcommands...)
- rootCmd.AddCommand(volumeCommand.Command)
-}
diff --git a/cmd/podman/volume_create.go b/cmd/podman/volume_create.go
deleted file mode 100644
index 52189657b..000000000
--- a/cmd/podman/volume_create.go
+++ /dev/null
@@ -1,69 +0,0 @@
-package main
-
-import (
- "fmt"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/cmd/podman/shared/parse"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- volumeCreateCommand cliconfig.VolumeCreateValues
- volumeCreateDescription = `If using the default driver, "local", the volume will be created on the host in the volumes directory under container storage.`
-
- _volumeCreateCommand = &cobra.Command{
- Use: "create [flags] [NAME]",
- Short: "Create a new volume",
- Long: volumeCreateDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- volumeCreateCommand.InputArgs = args
- volumeCreateCommand.GlobalFlags = MainGlobalOpts
- volumeCreateCommand.Remote = remoteclient
- return volumeCreateCmd(&volumeCreateCommand)
- },
- Example: `podman volume create myvol
- podman volume create
- podman volume create --label foo=bar myvol`,
- }
-)
-
-func init() {
- volumeCreateCommand.Command = _volumeCreateCommand
- volumeCommand.SetHelpTemplate(HelpTemplate())
- volumeCreateCommand.SetUsageTemplate(UsageTemplate())
- flags := volumeCreateCommand.Flags()
- flags.StringVar(&volumeCreateCommand.Driver, "driver", "", "Specify volume driver name (default local)")
- flags.StringSliceVarP(&volumeCreateCommand.Label, "label", "l", []string{}, "Set metadata for a volume (default [])")
- flags.StringArrayVarP(&volumeCreateCommand.Opt, "opt", "o", []string{}, "Set driver specific options (default [])")
-}
-
-func volumeCreateCmd(c *cliconfig.VolumeCreateValues) error {
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "error creating libpod runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- if len(c.InputArgs) > 1 {
- return errors.Errorf("too many arguments, create takes at most 1 argument")
- }
-
- labels, err := parse.GetAllLabels([]string{}, c.Label)
- if err != nil {
- return errors.Wrapf(err, "unable to process labels")
- }
-
- opts, err := parse.GetAllLabels([]string{}, c.Opt)
- if err != nil {
- return errors.Wrapf(err, "unable to process options")
- }
-
- volumeName, err := runtime.CreateVolume(getContext(), c, labels, opts)
- if err == nil {
- fmt.Println(volumeName)
- }
- return err
-}
diff --git a/cmd/podman/volume_inspect.go b/cmd/podman/volume_inspect.go
deleted file mode 100644
index 94c99a58c..000000000
--- a/cmd/podman/volume_inspect.go
+++ /dev/null
@@ -1,79 +0,0 @@
-package main
-
-import (
- "fmt"
-
- "github.com/containers/buildah/pkg/formats"
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- volumeInspectCommand cliconfig.VolumeInspectValues
- volumeInspectDescription = `Display detailed information on one or more volumes.
-
- Use a Go template to change the format from JSON.`
- _volumeInspectCommand = &cobra.Command{
- Use: "inspect [flags] VOLUME [VOLUME...]",
- Short: "Display detailed information on one or more volumes",
- Long: volumeInspectDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- volumeInspectCommand.InputArgs = args
- volumeInspectCommand.GlobalFlags = MainGlobalOpts
- volumeInspectCommand.Remote = remoteclient
- return volumeInspectCmd(&volumeInspectCommand)
- },
- Example: `podman volume inspect myvol
- podman volume inspect --all
- podman volume inspect --format "{{.Driver}} {{.Scope}}" myvol`,
- }
-)
-
-func init() {
- volumeInspectCommand.Command = _volumeInspectCommand
- volumeInspectCommand.SetHelpTemplate(HelpTemplate())
- volumeInspectCommand.SetUsageTemplate(UsageTemplate())
- flags := volumeInspectCommand.Flags()
- flags.BoolVarP(&volumeInspectCommand.All, "all", "a", false, "Inspect all volumes")
- flags.StringVarP(&volumeInspectCommand.Format, "format", "f", "json", "Format volume output using Go template")
-
-}
-
-func volumeInspectCmd(c *cliconfig.VolumeInspectValues) error {
- if (c.All && len(c.InputArgs) > 0) || (!c.All && len(c.InputArgs) < 1) {
- return errors.New("provide one or more volume names or use --all")
- }
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "error creating libpod runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- vols, err := runtime.InspectVolumes(getContext(), c)
- if err != nil {
- return err
- }
-
- switch c.Format {
- case "", formats.JSONString:
- // Normal format - JSON string
- jsonOut, err := json.MarshalIndent(vols, "", " ")
- if err != nil {
- return errors.Wrapf(err, "error marshalling inspect JSON")
- }
- fmt.Println(string(jsonOut))
- default:
- // It's a Go template.
- interfaces := make([]interface{}, len(vols))
- for i, vol := range vols {
- interfaces[i] = vol
- }
- out := formats.StdoutTemplateArray{Output: interfaces, Template: c.Format}
- return out.Out()
- }
-
- return nil
-}
diff --git a/cmd/podman/volume_ls.go b/cmd/podman/volume_ls.go
deleted file mode 100644
index 938124278..000000000
--- a/cmd/podman/volume_ls.go
+++ /dev/null
@@ -1,293 +0,0 @@
-package main
-
-import (
- "reflect"
- "strings"
-
- "github.com/containers/buildah/pkg/formats"
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-// volumeOptions is the "ls" command options
-type volumeLsOptions struct {
- Format string
- Quiet bool
-}
-
-// volumeLsTemplateParams is the template parameters to list the volumes
-type volumeLsTemplateParams struct {
- Name string
- Labels string
- MountPoint string
- Driver string
- Options string
- Scope string
-}
-
-// volumeLsJSONParams is the JSON parameters to list the volumes
-type volumeLsJSONParams struct {
- Name string `json:"name"`
- Labels map[string]string `json:"labels"`
- MountPoint string `json:"mountPoint"`
- Driver string `json:"driver"`
- Options map[string]string `json:"options"`
- Scope string `json:"scope"`
-}
-
-var (
- volumeLsCommand cliconfig.VolumeLsValues
-
- volumeLsDescription = `
-podman volume ls
-
-List all available volumes. The output of the volumes can be filtered
-and the output format can be changed to JSON or a user specified Go template.`
- _volumeLsCommand = &cobra.Command{
- Use: "ls",
- Aliases: []string{"list"},
- Args: noSubArgs,
- Short: "List volumes",
- Long: volumeLsDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- volumeLsCommand.InputArgs = args
- volumeLsCommand.GlobalFlags = MainGlobalOpts
- volumeLsCommand.Remote = remoteclient
- return volumeLsCmd(&volumeLsCommand)
- },
- }
-)
-
-func init() {
- volumeLsCommand.Command = _volumeLsCommand
- volumeLsCommand.SetHelpTemplate(HelpTemplate())
- volumeLsCommand.SetUsageTemplate(UsageTemplate())
- flags := volumeLsCommand.Flags()
-
- flags.StringVarP(&volumeLsCommand.Filter, "filter", "f", "", "Filter volume output")
- flags.StringVar(&volumeLsCommand.Format, "format", "table {{.Driver}}\t{{.Name}}", "Format volume output using Go template")
- flags.BoolVarP(&volumeLsCommand.Quiet, "quiet", "q", false, "Print volume output in quiet mode")
-}
-
-func volumeLsCmd(c *cliconfig.VolumeLsValues) error {
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "error creating libpod runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- opts := volumeLsOptions{
- Quiet: c.Quiet,
- }
- opts.Format = genVolLsFormat(c)
-
- // Get the filter functions based on any filters set
- var filterFuncs []adapter.VolumeFilter
- if c.Filter != "" {
- filters := strings.Split(c.Filter, ",")
- for _, f := range filters {
- filterSplit := strings.Split(f, "=")
- if len(filterSplit) < 2 {
- return errors.Errorf("filter input must be in the form of filter=value: %s is invalid", f)
- }
- generatedFunc, err := generateVolumeFilterFuncs(filterSplit[0], filterSplit[1])
- if err != nil {
- return errors.Wrapf(err, "invalid filter")
- }
- filterFuncs = append(filterFuncs, generatedFunc)
- }
- }
-
- volumes, err := runtime.Volumes(getContext())
- if err != nil {
- return err
- }
- // Get the volumes that match the filter
- volsFiltered := make([]*adapter.Volume, 0, len(volumes))
- for _, vol := range volumes {
- include := true
- for _, filter := range filterFuncs {
- include = include && filter(vol)
- }
-
- if include {
- volsFiltered = append(volsFiltered, vol)
- }
- }
- return generateVolLsOutput(volsFiltered, opts)
-}
-
-// generate the template based on conditions given
-func genVolLsFormat(c *cliconfig.VolumeLsValues) string {
- var format string
- if c.Format != "" {
- // "\t" from the command line is not being recognized as a tab
- // replacing the string "\t" to a tab character if the user passes in "\t"
- format = strings.Replace(c.Format, `\t`, "\t", -1)
- }
- if c.Quiet {
- format = "{{.Name}}"
- }
- return format
-}
-
-// Convert output to genericParams for printing
-func volLsToGeneric(templParams []volumeLsTemplateParams, jsonParams []volumeLsJSONParams) (genericParams []interface{}) {
- if len(templParams) > 0 {
- for _, v := range templParams {
- genericParams = append(genericParams, interface{}(v))
- }
- return
- }
- for _, v := range jsonParams {
- genericParams = append(genericParams, interface{}(v))
- }
- return
-}
-
-// generate the accurate header based on template given
-func (vol *volumeLsTemplateParams) volHeaderMap() map[string]string {
- v := reflect.Indirect(reflect.ValueOf(vol))
- values := make(map[string]string)
-
- for i := 0; i < v.NumField(); i++ {
- key := v.Type().Field(i).Name
- value := key
- if value == "Name" {
- value = "Volume" + value
- }
- values[key] = strings.ToUpper(splitCamelCase(value))
- }
- return values
-}
-
-// getVolTemplateOutput returns all the volumes in the volumeLsTemplateParams format
-func getVolTemplateOutput(lsParams []volumeLsJSONParams, opts volumeLsOptions) ([]volumeLsTemplateParams, error) {
- var lsOutput []volumeLsTemplateParams
-
- for _, lsParam := range lsParams {
- var (
- labels string
- options string
- )
-
- for k, v := range lsParam.Labels {
- label := k
- if v != "" {
- label += "=" + v
- }
- labels += label
- }
- for k, v := range lsParam.Options {
- option := k
- if v != "" {
- option += "=" + v
- }
- options += option
- }
- params := volumeLsTemplateParams{
- Name: lsParam.Name,
- Driver: lsParam.Driver,
- MountPoint: lsParam.MountPoint,
- Scope: lsParam.Scope,
- Labels: labels,
- Options: options,
- }
-
- lsOutput = append(lsOutput, params)
- }
- return lsOutput, nil
-}
-
-// getVolJSONParams returns the volumes in JSON format
-func getVolJSONParams(volumes []*adapter.Volume) []volumeLsJSONParams {
- var lsOutput []volumeLsJSONParams
-
- for _, volume := range volumes {
- params := volumeLsJSONParams{
- Name: volume.Name(),
- Labels: volume.Labels(),
- MountPoint: volume.MountPoint(),
- Driver: volume.Driver(),
- Options: volume.Options(),
- Scope: volume.Scope(),
- }
-
- lsOutput = append(lsOutput, params)
- }
- return lsOutput
-}
-
-// generateVolLsOutput generates the output based on the format, JSON or Go Template, and prints it out
-func generateVolLsOutput(volumes []*adapter.Volume, opts volumeLsOptions) error {
- if len(volumes) == 0 && opts.Format != formats.JSONString {
- return nil
- }
- lsOutput := getVolJSONParams(volumes)
- var out formats.Writer
-
- switch opts.Format {
- case formats.JSONString:
- out = formats.JSONStructArray{Output: volLsToGeneric([]volumeLsTemplateParams{}, lsOutput)}
- default:
- lsOutput, err := getVolTemplateOutput(lsOutput, opts)
- if err != nil {
- return errors.Wrapf(err, "unable to create volume output")
- }
- out = formats.StdoutTemplateArray{Output: volLsToGeneric(lsOutput, []volumeLsJSONParams{}), Template: opts.Format, Fields: lsOutput[0].volHeaderMap()}
- }
- return out.Out()
-}
-
-// generateVolumeFilterFuncs returns the true if the volume matches the filter set, otherwise it returns false.
-func generateVolumeFilterFuncs(filter, filterValue string) (func(volume *adapter.Volume) bool, error) {
- switch filter {
- case "name":
- return func(v *adapter.Volume) bool {
- return strings.Contains(v.Name(), filterValue)
- }, nil
- case "driver":
- return func(v *adapter.Volume) bool {
- return v.Driver() == filterValue
- }, nil
- case "scope":
- return func(v *adapter.Volume) bool {
- return v.Scope() == filterValue
- }, nil
- case "label":
- filterArray := strings.SplitN(filterValue, "=", 2)
- filterKey := filterArray[0]
- if len(filterArray) > 1 {
- filterValue = filterArray[1]
- } else {
- filterValue = ""
- }
- return func(v *adapter.Volume) bool {
- for labelKey, labelValue := range v.Labels() {
- if labelKey == filterKey && ("" == filterValue || labelValue == filterValue) {
- return true
- }
- }
- return false
- }, nil
- case "opt":
- filterArray := strings.SplitN(filterValue, "=", 2)
- filterKey := filterArray[0]
- if len(filterArray) > 1 {
- filterValue = filterArray[1]
- } else {
- filterValue = ""
- }
- return func(v *adapter.Volume) bool {
- for labelKey, labelValue := range v.Options() {
- if labelKey == filterKey && ("" == filterValue || labelValue == filterValue) {
- return true
- }
- }
- return false
- }, nil
- }
- return nil, errors.Errorf("%s is an invalid filter", filter)
-}
diff --git a/cmd/podman/volume_prune.go b/cmd/podman/volume_prune.go
deleted file mode 100644
index 48ed68509..000000000
--- a/cmd/podman/volume_prune.go
+++ /dev/null
@@ -1,86 +0,0 @@
-package main
-
-import (
- "bufio"
- "context"
- "fmt"
- "os"
- "strings"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- "github.com/spf13/cobra"
-)
-
-var (
- volumePruneCommand cliconfig.VolumePruneValues
- volumePruneDescription = `Volumes that are not currently owned by a container will be removed.
-
- The command prompts for confirmation which can be overridden with the --force flag.
- Note all data will be destroyed.`
- _volumePruneCommand = &cobra.Command{
- Use: "prune",
- Args: noSubArgs,
- Short: "Remove all unused volumes",
- Long: volumePruneDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- volumePruneCommand.InputArgs = args
- volumePruneCommand.GlobalFlags = MainGlobalOpts
- volumePruneCommand.Remote = remoteclient
- return volumePruneCmd(&volumePruneCommand)
- },
- }
-)
-
-func init() {
- volumePruneCommand.Command = _volumePruneCommand
- volumePruneCommand.SetHelpTemplate(HelpTemplate())
- volumePruneCommand.SetUsageTemplate(UsageTemplate())
- flags := volumePruneCommand.Flags()
-
- flags.BoolVarP(&volumePruneCommand.Force, "force", "f", false, "Do not prompt for confirmation")
-}
-
-func volumePrune(runtime *adapter.LocalRuntime, ctx context.Context) error {
- prunedNames, prunedErrors := runtime.PruneVolumes(ctx)
- for _, name := range prunedNames {
- fmt.Println(name)
- }
- if len(prunedErrors) == 0 {
- return nil
- }
- // Grab the last error
- lastError := prunedErrors[len(prunedErrors)-1]
- // Remove the last error from the error slice
- prunedErrors = prunedErrors[:len(prunedErrors)-1]
-
- for _, err := range prunedErrors {
- logrus.Errorf("%q", err)
- }
- return lastError
-}
-
-func volumePruneCmd(c *cliconfig.VolumePruneValues) error {
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "error creating libpod runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- // Prompt for confirmation if --force is not set
- if !c.Force {
- reader := bufio.NewReader(os.Stdin)
- fmt.Println("WARNING! This will remove all volumes not used by at least one container.")
- fmt.Print("Are you sure you want to continue? [y/N] ")
- answer, err := reader.ReadString('\n')
- if err != nil {
- return errors.Wrapf(err, "error reading input")
- }
- if strings.ToLower(answer)[0] != 'y' {
- return nil
- }
- }
- return volumePrune(runtime, getContext())
-}
diff --git a/cmd/podman/volume_rm.go b/cmd/podman/volume_rm.go
deleted file mode 100644
index 2fa6a8d03..000000000
--- a/cmd/podman/volume_rm.go
+++ /dev/null
@@ -1,58 +0,0 @@
-package main
-
-import (
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- volumeRmCommand cliconfig.VolumeRmValues
- volumeRmDescription = `Remove one or more existing volumes.
-
- By default only volumes that are not being used by any containers will be removed. To remove the volumes anyways, use the --force flag.`
- _volumeRmCommand = &cobra.Command{
- Use: "rm [flags] VOLUME [VOLUME...]",
- Aliases: []string{"remove"},
- Short: "Remove one or more volumes",
- Long: volumeRmDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- volumeRmCommand.InputArgs = args
- volumeRmCommand.GlobalFlags = MainGlobalOpts
- volumeRmCommand.Remote = remoteclient
- return volumeRmCmd(&volumeRmCommand)
- },
- Example: `podman volume rm myvol1 myvol2
- podman volume rm --all
- podman volume rm --force myvol`,
- }
-)
-
-func init() {
- volumeRmCommand.Command = _volumeRmCommand
- volumeRmCommand.SetHelpTemplate(HelpTemplate())
- volumeRmCommand.SetUsageTemplate(UsageTemplate())
- flags := volumeRmCommand.Flags()
- flags.BoolVarP(&volumeRmCommand.All, "all", "a", false, "Remove all volumes")
- flags.BoolVarP(&volumeRmCommand.Force, "force", "f", false, "Remove a volume by force, even if it is being used by a container")
-}
-
-func volumeRmCmd(c *cliconfig.VolumeRmValues) error {
- var err error
-
- if (len(c.InputArgs) > 0 && c.All) || (len(c.InputArgs) < 1 && !c.All) {
- return errors.New("choose either one or more volumes or all")
- }
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "error creating libpod runtime")
- }
- defer runtime.DeferredShutdown(false)
- deletedVolumeNames, deletedVolumeErrors, err := runtime.RemoveVolumes(getContext(), c)
- if err != nil {
- return err
- }
- return printCmdResults(deletedVolumeNames, deletedVolumeErrors)
-}
diff --git a/cmd/podmanV2/volumes/create.go b/cmd/podman/volumes/create.go
index 91181dd03..df0731791 100644
--- a/cmd/podmanV2/volumes/create.go
+++ b/cmd/podman/volumes/create.go
@@ -4,8 +4,8 @@ import (
"context"
"fmt"
- "github.com/containers/libpod/cmd/podmanV2/parse"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/parse"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/pkg/errors"
"github.com/spf13/cobra"
diff --git a/cmd/podmanV2/volumes/inspect.go b/cmd/podman/volumes/inspect.go
index 4d9720432..57e773aef 100644
--- a/cmd/podmanV2/volumes/inspect.go
+++ b/cmd/podman/volumes/inspect.go
@@ -7,7 +7,7 @@ import (
"os"
"github.com/containers/buildah/pkg/formats"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/pkg/errors"
"github.com/spf13/cobra"
diff --git a/cmd/podmanV2/volumes/list.go b/cmd/podman/volumes/list.go
index c38f78c73..fd89db01f 100644
--- a/cmd/podmanV2/volumes/list.go
+++ b/cmd/podman/volumes/list.go
@@ -8,7 +8,7 @@ import (
"strings"
"text/tabwriter"
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/pkg/errors"
"github.com/spf13/cobra"
diff --git a/cmd/podmanV2/volumes/prune.go b/cmd/podman/volumes/prune.go
index 148065f56..197a9da9b 100644
--- a/cmd/podmanV2/volumes/prune.go
+++ b/cmd/podman/volumes/prune.go
@@ -7,8 +7,8 @@ import (
"os"
"strings"
- "github.com/containers/libpod/cmd/podmanV2/registry"
- "github.com/containers/libpod/cmd/podmanV2/utils"
+ "github.com/containers/libpod/cmd/podman/registry"
+ "github.com/containers/libpod/cmd/podman/utils"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/pkg/errors"
"github.com/spf13/cobra"
diff --git a/cmd/podmanV2/volumes/rm.go b/cmd/podman/volumes/rm.go
index b019285d8..f5a898ff3 100644
--- a/cmd/podmanV2/volumes/rm.go
+++ b/cmd/podman/volumes/rm.go
@@ -4,8 +4,8 @@ import (
"context"
"fmt"
- "github.com/containers/libpod/cmd/podmanV2/registry"
- "github.com/containers/libpod/cmd/podmanV2/utils"
+ "github.com/containers/libpod/cmd/podman/registry"
+ "github.com/containers/libpod/cmd/podman/utils"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/pkg/errors"
"github.com/spf13/cobra"
diff --git a/cmd/podmanV2/volumes/volume.go b/cmd/podman/volumes/volume.go
index d1135d1bf..06943da62 100644
--- a/cmd/podmanV2/volumes/volume.go
+++ b/cmd/podman/volumes/volume.go
@@ -1,7 +1,7 @@
package volumes
import (
- "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/cmd/podman/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
)
diff --git a/cmd/podman/wait.go b/cmd/podman/wait.go
deleted file mode 100644
index d6a707bb8..000000000
--- a/cmd/podman/wait.go
+++ /dev/null
@@ -1,65 +0,0 @@
-package main
-
-import (
- "time"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/adapter"
- "github.com/pkg/errors"
- "github.com/spf13/cobra"
-)
-
-var (
- waitCommand cliconfig.WaitValues
-
- waitDescription = `Block until one or more containers stop and then print their exit codes.
-`
- _waitCommand = &cobra.Command{
- Use: "wait [flags] CONTAINER [CONTAINER...]",
- Short: "Block on one or more containers",
- Long: waitDescription,
- RunE: func(cmd *cobra.Command, args []string) error {
- waitCommand.InputArgs = args
- waitCommand.GlobalFlags = MainGlobalOpts
- waitCommand.Remote = remoteclient
- return waitCmd(&waitCommand)
- },
- Example: `podman wait --latest
- podman wait --interval 5000 ctrID
- podman wait ctrID1 ctrID2`,
- }
-)
-
-func init() {
- waitCommand.Command = _waitCommand
- waitCommand.SetHelpTemplate(HelpTemplate())
- waitCommand.SetUsageTemplate(UsageTemplate())
- flags := waitCommand.Flags()
- flags.UintVarP(&waitCommand.Interval, "interval", "i", 250, "Milliseconds to wait before polling for completion")
- flags.BoolVarP(&waitCommand.Latest, "latest", "l", false, "Act on the latest container podman is aware of")
- markFlagHiddenForRemoteClient("latest", flags)
-}
-
-func waitCmd(c *cliconfig.WaitValues) error {
- args := c.InputArgs
- if len(args) < 1 && !c.Latest {
- return errors.Errorf("you must provide at least one container name or id")
- }
-
- if c.Interval == 0 {
- return errors.Errorf("interval must be greater then 0")
- }
- interval := time.Duration(c.Interval) * time.Millisecond
-
- runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand)
- if err != nil {
- return errors.Wrapf(err, "error creating runtime")
- }
- defer runtime.DeferredShutdown(false)
-
- ok, failures, err := runtime.WaitOnContainers(getContext(), c, interval)
- if err != nil {
- return err
- }
- return printCmdResults(ok, failures)
-}
diff --git a/cmd/podmanV2/Makefile b/cmd/podmanV2/Makefile
deleted file mode 100644
index 8a924670a..000000000
--- a/cmd/podmanV2/Makefile
+++ /dev/null
@@ -1,12 +0,0 @@
-all: podman podman-remote
-
-BUILD_TAGS='ABISupport systemd varlink seccomp selinux exclude_graphdriver_devicemapper'
-
-podman:
- CGO_ENABLED=1 GO111MODULE=off go build -tags $(BUILD_TAGS)
-
-podman-remote:
- CGO_ENABLED=1 GO111MODULE=off go build -tags '!ABISupport systemd seccomp selinux' -o podmanV2-remote
-
-clean:
- rm podmanV2 podmanV2-remote
diff --git a/cmd/podmanV2/README.md b/cmd/podmanV2/README.md
deleted file mode 100644
index a17e6f850..000000000
--- a/cmd/podmanV2/README.md
+++ /dev/null
@@ -1,113 +0,0 @@
-# Adding a podman V2 commands
-
-## Build podman V2
-
-```shell script
-$ cd $GOPATH/src/github.com/containers/libpod/cmd/podmanV2
-```
-If you wish to include the libpod library in your program,
-```shell script
-$ go build -tags 'ABISupport' .
-```
-The `--remote` flag may be used to connect to the Podman service using the API.
-Otherwise, direct calls will be made to the Libpod library.
-```shell script
-$ go build -tags '!ABISupport' .
-```
-The Libpod library is not linked into the executable.
-All calls are made via the API and `--remote=False` is an error condition.
-
-## Adding a new command `podman manifests`
-```shell script
-$ mkdir -p $GOPATH/src/github.com/containers/libpod/cmd/podmanV2/manifests
-```
-Create the file ```$GOPATH/src/github.com/containers/libpod/cmd/podmanV2/manifests/manifest.go```
-```go
-package manifests
-
-import (
- "github.com/containers/libpod/cmd/podmanV2/registry"
- "github.com/containers/libpod/pkg/domain/entities"
- "github.com/spf13/cobra"
-)
-
-var (
- // podman _manifests_
- manifestCmd = &cobra.Command{
- Use: "manifest",
- Short: "Manage manifests",
- Long: "Manage manifests",
- Example: "podman manifests IMAGE",
- TraverseChildren: true,
- PersistentPreRunE: preRunE,
- RunE: registry.SubCommandExists, // Report error if there is no sub command given
- }
-)
-func init() {
- // Subscribe command to podman
- registry.Commands = append(registry.Commands, registry.CliCommand{
- // _podman manifest_ will support both ABIMode and TunnelMode
- Mode: []entities.EngineMode{entities.ABIMode, entities.TunnelMode},
- // The definition for this command
- Command: manifestCmd,
- })
- // Setup cobra templates, sub commands will inherit
- manifestCmd.SetHelpTemplate(registry.HelpTemplate())
- manifestCmd.SetUsageTemplate(registry.UsageTemplate())
-}
-
-// preRunE populates the image engine for sub commands
-func preRunE(cmd *cobra.Command, args []string) error {
- _, err := registry.NewImageEngine(cmd, args)
- return err
-}
-```
-To "wire" in the `manifest` command, edit the file ```$GOPATH/src/github.com/containers/libpod/cmd/podmanV2/main.go``` to add:
-```go
-package main
-
-import _ "github.com/containers/libpod/cmd/podmanV2/manifests"
-```
-
-## Adding a new sub command `podman manifests list`
-Create the file ```$GOPATH/src/github.com/containers/libpod/cmd/podmanV2/manifests/inspect.go```
-```go
-package manifests
-
-import (
- "github.com/containers/libpod/cmd/podmanV2/registry"
- "github.com/containers/libpod/pkg/domain/entities"
- "github.com/spf13/cobra"
-)
-
-var (
- // podman manifests _inspect_
- inspectCmd = &cobra.Command{
- Use: "inspect IMAGE",
- Short: "Display manifest from image",
- Long: "Displays the low-level information on a manifest identified by image name or ID",
- RunE: inspect,
- Example: "podman manifest DEADBEEF",
- }
-)
-
-func init() {
- // Subscribe inspect sub command to manifest command
- registry.Commands = append(registry.Commands, registry.CliCommand{
- // _podman manifest inspect_ will support both ABIMode and TunnelMode
- Mode: []entities.EngineMode{entities.ABIMode, entities.TunnelMode},
- // The definition for this command
- Command: inspectCmd,
- Parent: manifestCmd,
- })
-
- // This is where you would configure the cobra flags using inspectCmd.Flags()
-}
-
-// Business logic: cmd is inspectCmd, args is the positional arguments from os.Args
-func inspect(cmd *cobra.Command, args []string) error {
- // Business logic using registry.ImageEngine
- // Do not pull from libpod directly use the domain objects and types
- return nil
-}
-```
diff --git a/cmd/podmanV2/diff.go b/cmd/podmanV2/diff.go
deleted file mode 100644
index 73f4661db..000000000
--- a/cmd/podmanV2/diff.go
+++ /dev/null
@@ -1,61 +0,0 @@
-package main
-
-import (
- "fmt"
-
- "github.com/containers/libpod/cmd/podmanV2/containers"
- "github.com/containers/libpod/cmd/podmanV2/images"
- "github.com/containers/libpod/cmd/podmanV2/registry"
- "github.com/containers/libpod/pkg/domain/entities"
- "github.com/spf13/cobra"
-)
-
-// Inspect is one of the outlier commands in that it operates on images/containers/...
-
-var (
- // Command: podman _diff_ Object_ID
- diffDescription = `Displays changes on a container or image's filesystem. The container or image will be compared to its parent layer.`
- diffCmd = &cobra.Command{
- Use: "diff [flags] {CONTAINER_ID | IMAGE_ID}",
- Args: registry.IdOrLatestArgs,
- Short: "Display the changes of object's file system",
- Long: diffDescription,
- TraverseChildren: true,
- RunE: diff,
- Example: `podman diff imageID
- podman diff ctrID
- podman diff --format json redis:alpine`,
- }
-
- diffOpts = entities.DiffOptions{}
-)
-
-func init() {
- registry.Commands = append(registry.Commands, registry.CliCommand{
- Mode: []entities.EngineMode{entities.ABIMode, entities.TunnelMode},
- Command: diffCmd,
- })
- flags := diffCmd.Flags()
- flags.BoolVar(&diffOpts.Archive, "archive", true, "Save the diff as a tar archive")
- _ = flags.MarkHidden("archive")
- flags.StringVar(&diffOpts.Format, "format", "", "Change the output format")
-
- if !registry.IsRemote() {
- flags.BoolVarP(&diffOpts.Latest, "latest", "l", false, "Act on the latest container podman is aware of")
- }
-}
-
-func diff(cmd *cobra.Command, args []string) error {
- if found, err := registry.ImageEngine().Exists(registry.GetContext(), args[0]); err != nil {
- return err
- } else if found.Value {
- return images.Diff(cmd, args, diffOpts)
- }
-
- if found, err := registry.ContainerEngine().ContainerExists(registry.GetContext(), args[0]); err != nil {
- return err
- } else if found.Value {
- return containers.Diff(cmd, args, diffOpts)
- }
- return fmt.Errorf("%s not found on system", args[0])
-}
diff --git a/cmd/podmanV2/inspect.go b/cmd/podmanV2/inspect.go
deleted file mode 100644
index 25024d6f8..000000000
--- a/cmd/podmanV2/inspect.go
+++ /dev/null
@@ -1,52 +0,0 @@
-package main
-
-import (
- "context"
- "fmt"
-
- "github.com/containers/libpod/cmd/podmanV2/common"
- "github.com/containers/libpod/cmd/podmanV2/containers"
- "github.com/containers/libpod/cmd/podmanV2/images"
- "github.com/containers/libpod/cmd/podmanV2/registry"
- "github.com/containers/libpod/pkg/domain/entities"
- "github.com/spf13/cobra"
-)
-
-// Inspect is one of the outlier commands in that it operates on images/containers/...
-
-var (
- inspectOpts *entities.InspectOptions
-
- // Command: podman _inspect_ Object_ID
- inspectCmd = &cobra.Command{
- Use: "inspect [flags] {CONTAINER_ID | IMAGE_ID}",
- Args: cobra.ExactArgs(1),
- Short: "Display the configuration of object denoted by ID",
- Long: "Displays the low-level information on an object identified by name or ID",
- TraverseChildren: true,
- RunE: inspect,
- }
-)
-
-func init() {
- registry.Commands = append(registry.Commands, registry.CliCommand{
- Mode: []entities.EngineMode{entities.ABIMode, entities.TunnelMode},
- Command: inspectCmd,
- })
- inspectOpts = common.AddInspectFlagSet(inspectCmd)
-}
-
-func inspect(cmd *cobra.Command, args []string) error {
- if found, err := registry.ImageEngine().Exists(context.Background(), args[0]); err != nil {
- return err
- } else if found.Value {
- return images.Inspect(cmd, args, inspectOpts)
- }
-
- if found, err := registry.ContainerEngine().ContainerExists(context.Background(), args[0]); err != nil {
- return err
- } else if found.Value {
- return containers.Inspect(cmd, args, inspectOpts)
- }
- return fmt.Errorf("%s not found on system", args[0])
-}
diff --git a/cmd/podmanV2/main.go b/cmd/podmanV2/main.go
deleted file mode 100644
index de5308121..000000000
--- a/cmd/podmanV2/main.go
+++ /dev/null
@@ -1,50 +0,0 @@
-package main
-
-import (
- "os"
-
- _ "github.com/containers/libpod/cmd/podmanV2/containers"
- _ "github.com/containers/libpod/cmd/podmanV2/healthcheck"
- _ "github.com/containers/libpod/cmd/podmanV2/images"
- _ "github.com/containers/libpod/cmd/podmanV2/networks"
- _ "github.com/containers/libpod/cmd/podmanV2/pods"
- "github.com/containers/libpod/cmd/podmanV2/registry"
- _ "github.com/containers/libpod/cmd/podmanV2/system"
- _ "github.com/containers/libpod/cmd/podmanV2/volumes"
- "github.com/containers/storage/pkg/reexec"
-)
-
-func init() {
- // This is the bootstrap configuration, if user gives
- // CLI flags parts of this configuration may be overwritten
- registry.PodmanOptions = registry.NewPodmanConfig()
-}
-
-func main() {
- if reexec.Init() {
- // We were invoked with a different argv[0] indicating that we
- // had a specific job to do as a subprocess, and it's done.
- return
- }
-
- for _, c := range registry.Commands {
- for _, m := range c.Mode {
- if registry.PodmanOptions.EngineMode == m {
- parent := rootCmd
- if c.Parent != nil {
- parent = c.Parent
- }
- parent.AddCommand(c.Command)
-
- // - templates need to be set here, as PersistentPreRunE() is
- // not called when --help is used.
- // - rootCmd uses cobra default template not ours
- c.Command.SetHelpTemplate(helpTemplate)
- c.Command.SetUsageTemplate(usageTemplate)
- }
- }
- }
-
- Execute()
- os.Exit(0)
-}
diff --git a/go.mod b/go.mod
index a214d8270..1e945490b 100644
--- a/go.mod
+++ b/go.mod
@@ -21,7 +21,6 @@ require (
github.com/davecgh/go-spew v1.1.1
github.com/docker/distribution v2.7.1+incompatible
github.com/docker/docker v1.4.2-0.20191219165747-a9416c67da9f
- github.com/docker/docker-credential-helpers v0.6.3
github.com/docker/go-connections v0.4.0
github.com/docker/go-units v0.4.0
github.com/fsnotify/fsnotify v1.4.9
diff --git a/pkg/adapter/autoupdate.go b/pkg/adapter/autoupdate.go
deleted file mode 100644
index 01f7a29c5..000000000
--- a/pkg/adapter/autoupdate.go
+++ /dev/null
@@ -1,11 +0,0 @@
-// +build !remoteclient
-
-package adapter
-
-import (
- "github.com/containers/libpod/pkg/autoupdate"
-)
-
-func (r *LocalRuntime) AutoUpdate() ([]string, []error) {
- return autoupdate.AutoUpdate(r.Runtime)
-}
diff --git a/pkg/adapter/autoupdate_remote.go b/pkg/adapter/autoupdate_remote.go
deleted file mode 100644
index a2a82d0d4..000000000
--- a/pkg/adapter/autoupdate_remote.go
+++ /dev/null
@@ -1,11 +0,0 @@
-// +build remoteclient
-
-package adapter
-
-import (
- "github.com/containers/libpod/libpod/define"
-)
-
-func (r *LocalRuntime) AutoUpdate() ([]string, []error) {
- return nil, []error{define.ErrNotImplemented}
-}
diff --git a/pkg/adapter/client.go b/pkg/adapter/client.go
deleted file mode 100644
index a1b2bd507..000000000
--- a/pkg/adapter/client.go
+++ /dev/null
@@ -1,115 +0,0 @@
-// +build remoteclient
-
-package adapter
-
-import (
- "fmt"
- "os"
-
- "github.com/containers/libpod/cmd/podman/remoteclientconfig"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- "github.com/varlink/go/varlink"
-)
-
-var remoteEndpoint *Endpoint // nolint: deadcode,unused
-
-func (r RemoteRuntime) RemoteEndpoint() (remoteEndpoint *Endpoint, err error) {
- remoteConfigConnections, err := remoteclientconfig.ReadRemoteConfig(r.config)
- if err != nil && errors.Cause(err) != remoteclientconfig.ErrNoConfigationFile {
- return nil, err
- }
- // If the user defines an env variable for podman_varlink_bridge
- // we use that as passed.
- if bridge := os.Getenv("PODMAN_VARLINK_BRIDGE"); bridge != "" {
- logrus.Debug("creating a varlink bridge based on env variable")
- remoteEndpoint, err = newBridgeConnection(bridge, nil, r.cmd.LogLevel)
- // if an environment variable for podman_varlink_address is defined,
- // we used that as passed
- } else if address := os.Getenv("PODMAN_VARLINK_ADDRESS"); address != "" { // nolint:gocritic
- logrus.Debugf("creating a varlink address based on env variable: %s", address)
- remoteEndpoint, err = newSocketConnection(address)
- // if the user provides a remote host, we use it to configure a bridge connection
- } else if len(r.cmd.RemoteHost) > 0 {
- logrus.Debug("creating a varlink bridge based on user input")
- if len(r.cmd.RemoteUserName) < 1 {
- return nil, errors.New("you must provide a username when providing a remote host name")
- }
- rc := remoteclientconfig.RemoteConnection{r.cmd.RemoteHost, r.cmd.RemoteUserName, false, r.cmd.Port, r.cmd.IdentityFile, r.cmd.IgnoreHosts} // nolint: govet
- remoteEndpoint, err = newBridgeConnection("", &rc, r.cmd.LogLevel)
- // if the user has a config file with connections in it
- } else if len(remoteConfigConnections.Connections) > 0 {
- logrus.Debug("creating a varlink bridge based configuration file")
- var rc *remoteclientconfig.RemoteConnection
- if len(r.cmd.ConnectionName) > 0 {
- rc, err = remoteConfigConnections.GetRemoteConnection(r.cmd.ConnectionName)
- } else {
- rc, err = remoteConfigConnections.GetDefault()
- }
- if err != nil {
- return nil, err
- }
- if len(rc.Username) < 1 {
- logrus.Debugf("Connection has no username, using current user %q", r.cmd.RemoteUserName)
- rc.Username = r.cmd.RemoteUserName
- }
- remoteEndpoint, err = newBridgeConnection("", rc, r.cmd.LogLevel)
- // last resort is to make a socket connection with the default varlink address for root user
- } else {
- logrus.Debug("creating a varlink address based default root address")
- remoteEndpoint, err = newSocketConnection(DefaultVarlinkAddress)
- }
- return // nolint: nakedret
-}
-
-// Connect provides a varlink connection
-func (r RemoteRuntime) Connect() (*varlink.Connection, error) {
- ep, err := r.RemoteEndpoint()
- if err != nil {
- return nil, err
- }
- switch ep.Type {
- case DirectConnection:
- return varlink.NewConnection(ep.Connection)
- case BridgeConnection:
- return varlink.NewBridge(ep.Connection)
- }
- return nil, errors.New(fmt.Sprintf("Unable to determine type of varlink connection: %s", ep.Connection))
-}
-
-// RefreshConnection is used to replace the current r.Conn after things like
-// using an upgraded varlink connection
-func (r RemoteRuntime) RefreshConnection() error {
- newConn, err := r.Connect()
- if err != nil {
- return err
- }
- r.Conn = newConn
- return nil
-}
-
-// newSocketConnection returns an endpoint for a uds based connection
-func newSocketConnection(address string) (*Endpoint, error) {
- endpoint := Endpoint{
- Type: DirectConnection,
- Connection: address,
- }
- return &endpoint, nil
-}
-
-// newBridgeConnection creates a bridge type endpoint with username, destination, and log-level
-func newBridgeConnection(formattedBridge string, remoteConn *remoteclientconfig.RemoteConnection, logLevel string) (*Endpoint, error) {
- endpoint := Endpoint{
- Type: BridgeConnection,
- }
-
- if len(formattedBridge) < 1 && remoteConn == nil {
- return nil, errors.New("bridge connections must either be created by string or remoteconnection")
- }
- if len(formattedBridge) > 0 {
- endpoint.Connection = formattedBridge
- return &endpoint, nil
- }
- endpoint.Connection = formatDefaultBridge(remoteConn, logLevel)
- return &endpoint, nil
-}
diff --git a/pkg/adapter/client_config.go b/pkg/adapter/client_config.go
deleted file mode 100644
index 8187b03b1..000000000
--- a/pkg/adapter/client_config.go
+++ /dev/null
@@ -1,39 +0,0 @@
-package adapter
-
-// DefaultAPIAddress is the default address of the REST socket
-const DefaultAPIAddress = "unix:/run/podman/podman.sock"
-
-// DefaultVarlinkAddress is the default address of the varlink socket
-const DefaultVarlinkAddress = "unix:/run/podman/io.podman"
-
-// EndpointType declares the type of server connection
-type EndpointType int
-
-// Enum of connection types
-const (
- Unknown = iota - 1 // Unknown connection type
- BridgeConnection // BridgeConnection proxy connection via ssh
- DirectConnection // DirectConnection socket connection to server
-)
-
-// String prints ASCII string for EndpointType
-func (e EndpointType) String() string {
- // declare an array of strings
- // ... operator counts how many
- // items in the array (7)
- names := [...]string{
- "BridgeConnection",
- "DirectConnection",
- }
-
- if e < BridgeConnection || e > DirectConnection {
- return "Unknown"
- }
- return names[e]
-}
-
-// Endpoint type and connection string to use
-type Endpoint struct {
- Type EndpointType
- Connection string
-}
diff --git a/pkg/adapter/client_unix.go b/pkg/adapter/client_unix.go
deleted file mode 100644
index 7af8b24c6..000000000
--- a/pkg/adapter/client_unix.go
+++ /dev/null
@@ -1,27 +0,0 @@
-// +build linux darwin
-// +build remoteclient
-
-package adapter
-
-import (
- "fmt"
-
- "github.com/containers/libpod/cmd/podman/remoteclientconfig"
-)
-
-func formatDefaultBridge(remoteConn *remoteclientconfig.RemoteConnection, logLevel string) string {
- port := remoteConn.Port
- if port == 0 {
- port = 22
- }
- options := ""
- if remoteConn.IdentityFile != "" {
- options += " -i " + remoteConn.IdentityFile
- }
- if remoteConn.IgnoreHosts {
- options += " -q -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null"
- }
- return fmt.Sprintf(
- `ssh -p %d -T%s %s@%s -- varlink -A \'podman --log-level=%s varlink \\\$VARLINK_ADDRESS\' bridge`,
- port, options, remoteConn.Username, remoteConn.Destination, logLevel)
-}
diff --git a/pkg/adapter/client_windows.go b/pkg/adapter/client_windows.go
deleted file mode 100644
index 32302a600..000000000
--- a/pkg/adapter/client_windows.go
+++ /dev/null
@@ -1,26 +0,0 @@
-// +build remoteclient
-
-package adapter
-
-import (
- "fmt"
-
- "github.com/containers/libpod/cmd/podman/remoteclientconfig"
-)
-
-func formatDefaultBridge(remoteConn *remoteclientconfig.RemoteConnection, logLevel string) string {
- port := remoteConn.Port
- if port == 0 {
- port = 22
- }
- options := ""
- if remoteConn.IdentityFile != "" {
- options += " -i " + remoteConn.IdentityFile
- }
- if remoteConn.IgnoreHosts {
- options += " -q -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null"
- }
- return fmt.Sprintf(
- `ssh -p %d -T%s %s@%s -- varlink -A 'podman --log-level=%s varlink $VARLINK_ADDRESS' bridge`,
- port, options, remoteConn.Username, remoteConn.Destination, logLevel)
-}
diff --git a/pkg/adapter/containers.go b/pkg/adapter/containers.go
deleted file mode 100644
index ecadbd2f9..000000000
--- a/pkg/adapter/containers.go
+++ /dev/null
@@ -1,1394 +0,0 @@
-// +build !remoteclient
-
-package adapter
-
-import (
- "bufio"
- "context"
- "fmt"
- "io"
- "io/ioutil"
- "os"
- "strconv"
- "strings"
- "sync"
- "syscall"
- "time"
-
- "github.com/containers/buildah"
- cfg "github.com/containers/common/pkg/config"
- "github.com/containers/image/v5/manifest"
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/cmd/podman/shared"
- "github.com/containers/libpod/libpod"
- "github.com/containers/libpod/libpod/define"
- "github.com/containers/libpod/libpod/events"
- "github.com/containers/libpod/libpod/image"
- "github.com/containers/libpod/libpod/logs"
- "github.com/containers/libpod/pkg/adapter/shortcuts"
- "github.com/containers/libpod/pkg/checkpoint"
- envLib "github.com/containers/libpod/pkg/env"
- "github.com/containers/libpod/pkg/systemd/generate"
- "github.com/containers/storage"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
-)
-
-// GetLatestContainer gets the latest Container and wraps it in an adapter Container
-func (r *LocalRuntime) GetLatestContainer() (*Container, error) {
- Container := Container{}
- c, err := r.Runtime.GetLatestContainer()
- Container.Container = c
- return &Container, err
-}
-
-// GetAllContainers gets all Containers and wraps each one in an adapter Container
-func (r *LocalRuntime) GetAllContainers() ([]*Container, error) {
- var containers []*Container
- allContainers, err := r.Runtime.GetAllContainers()
- if err != nil {
- return nil, err
- }
-
- for _, c := range allContainers {
- containers = append(containers, &Container{c})
- }
- return containers, nil
-}
-
-// LookupContainer gets a Container by name or id and wraps it in an adapter Container
-func (r *LocalRuntime) LookupContainer(idOrName string) (*Container, error) {
- ctr, err := r.Runtime.LookupContainer(idOrName)
- if err != nil {
- return nil, err
- }
- return &Container{ctr}, nil
-}
-
-// StopContainers stops container(s) based on CLI inputs.
-// Returns list of successful id(s), map of failed id(s) + error, or error not from container
-func (r *LocalRuntime) StopContainers(ctx context.Context, cli *cliconfig.StopValues) ([]string, map[string]error, error) {
- var timeout *uint
- if cli.Flags().Changed("timeout") || cli.Flags().Changed("time") {
- t := cli.Timeout
- timeout = &t
- }
-
- maxWorkers := shared.DefaultPoolSize("stop")
- if cli.GlobalIsSet("max-workers") {
- maxWorkers = cli.GlobalFlags.MaxWorks
- }
- logrus.Debugf("Setting maximum stop workers to %d", maxWorkers)
-
- names := cli.InputArgs
- for _, cidFile := range cli.CIDFiles {
- content, err := ioutil.ReadFile(cidFile)
- if err != nil {
- return nil, nil, errors.Wrap(err, "error reading CIDFile")
- }
- id := strings.Split(string(content), "\n")[0]
- names = append(names, id)
- }
-
- ctrs, err := shortcuts.GetContainersByContext(cli.All, cli.Latest, names, r.Runtime)
- if err != nil && !(cli.Ignore && errors.Cause(err) == define.ErrNoSuchCtr) {
- return nil, nil, err
- }
-
- pool := shared.NewPool("stop", maxWorkers, len(ctrs))
- for _, c := range ctrs {
- c := c
-
- if timeout == nil {
- t := c.StopTimeout()
- timeout = &t
- logrus.Debugf("Set timeout to container %s default (%d)", c.ID(), *timeout)
- }
-
- pool.Add(shared.Job{
- ID: c.ID(),
- Fn: func() error {
- err := c.StopWithTimeout(*timeout)
- if err != nil {
- if errors.Cause(err) == define.ErrCtrStopped {
- logrus.Debugf("Container %s is already stopped", c.ID())
- return nil
- } else if cli.All && errors.Cause(err) == define.ErrCtrStateInvalid {
- logrus.Debugf("Container %s is not running, could not stop", c.ID())
- return nil
- }
- logrus.Debugf("Failed to stop container %s: %s", c.ID(), err.Error())
- }
- return err
- },
- })
- }
- return pool.Run()
-}
-
-// KillContainers sends signal to container(s) based on CLI inputs.
-// Returns list of successful id(s), map of failed id(s) + error, or error not from container
-func (r *LocalRuntime) KillContainers(ctx context.Context, cli *cliconfig.KillValues, signal syscall.Signal) ([]string, map[string]error, error) {
- maxWorkers := shared.DefaultPoolSize("kill")
- if cli.GlobalIsSet("max-workers") {
- maxWorkers = cli.GlobalFlags.MaxWorks
- }
- logrus.Debugf("Setting maximum kill workers to %d", maxWorkers)
-
- ctrs, err := shortcuts.GetContainersByContext(cli.All, cli.Latest, cli.InputArgs, r.Runtime)
- if err != nil {
- return nil, nil, err
- }
-
- pool := shared.NewPool("kill", maxWorkers, len(ctrs))
- for _, c := range ctrs {
- c := c
-
- pool.Add(shared.Job{
- ID: c.ID(),
- Fn: func() error {
- return c.Kill(uint(signal))
- },
- })
- }
- return pool.Run()
-}
-
-// InitContainers initializes container(s) based on CLI inputs.
-// Returns list of successful id(s), map of failed id(s) to errors, or a general
-// error not from the container.
-func (r *LocalRuntime) InitContainers(ctx context.Context, cli *cliconfig.InitValues) ([]string, map[string]error, error) {
- maxWorkers := shared.DefaultPoolSize("init")
- if cli.GlobalIsSet("max-workers") {
- maxWorkers = cli.GlobalFlags.MaxWorks
- }
- logrus.Debugf("Setting maximum init workers to %d", maxWorkers)
-
- ctrs, err := shortcuts.GetContainersByContext(cli.All, cli.Latest, cli.InputArgs, r.Runtime)
- if err != nil {
- return nil, nil, err
- }
-
- pool := shared.NewPool("init", maxWorkers, len(ctrs))
- for _, c := range ctrs {
- ctr := c
-
- pool.Add(shared.Job{
- ID: ctr.ID(),
- Fn: func() error {
- err := ctr.Init(ctx)
- if err != nil {
- // If we're initializing all containers, ignore invalid state errors
- if cli.All && errors.Cause(err) == define.ErrCtrStateInvalid {
- return nil
- }
- return err
- }
- return nil
- },
- })
- }
- return pool.Run()
-}
-
-// RemoveContainers removes container(s) based on CLI inputs.
-func (r *LocalRuntime) RemoveContainers(ctx context.Context, cli *cliconfig.RmValues) ([]string, map[string]error, error) {
- var (
- ok = []string{}
- failures = map[string]error{}
- )
-
- maxWorkers := shared.DefaultPoolSize("rm")
- if cli.GlobalIsSet("max-workers") {
- maxWorkers = cli.GlobalFlags.MaxWorks
- }
- logrus.Debugf("Setting maximum rm workers to %d", maxWorkers)
-
- if cli.Storage {
- for _, ctr := range cli.InputArgs {
- if err := r.RemoveStorageContainer(ctr, cli.Force); err != nil {
- failures[ctr] = err
- }
- ok = append(ok, ctr)
- }
- return ok, failures, nil
- }
-
- names := cli.InputArgs
- for _, cidFile := range cli.CIDFiles {
- content, err := ioutil.ReadFile(cidFile)
- if err != nil {
- return nil, nil, errors.Wrap(err, "error reading CIDFile")
- }
- id := strings.Split(string(content), "\n")[0]
- names = append(names, id)
- }
-
- ctrs, err := shortcuts.GetContainersByContext(cli.All, cli.Latest, names, r.Runtime)
- if err != nil && !(cli.Ignore && errors.Cause(err) == define.ErrNoSuchCtr) {
- // Failed to get containers. If force is specified, get the containers ID
- // and evict them
- if !cli.Force {
- return ok, failures, err
- }
-
- for _, ctr := range cli.InputArgs {
- logrus.Debugf("Evicting container %q", ctr)
- id, err := r.EvictContainer(ctx, ctr, cli.Volumes)
- if err != nil {
- if cli.Ignore && errors.Cause(err) == define.ErrNoSuchCtr {
- logrus.Debugf("Ignoring error (--allow-missing): %v", err)
- continue
- }
- failures[ctr] = errors.Wrapf(err, "Failed to evict container: %q", id)
- continue
- }
- ok = append(ok, id)
- }
- return ok, failures, nil
- }
-
- pool := shared.NewPool("rm", maxWorkers, len(ctrs))
- for _, c := range ctrs {
- c := c
-
- pool.Add(shared.Job{
- ID: c.ID(),
- Fn: func() error {
- err := r.RemoveContainer(ctx, c, cli.Force, cli.Volumes)
- if err != nil {
- if cli.Ignore && errors.Cause(err) == define.ErrNoSuchCtr {
- logrus.Debugf("Ignoring error (--allow-missing): %v", err)
- return nil
- }
- logrus.Debugf("Failed to remove container %s: %s", c.ID(), err.Error())
- }
- return err
- },
- })
- }
- return pool.Run()
-}
-
-// UmountRootFilesystems removes container(s) based on CLI inputs.
-func (r *LocalRuntime) UmountRootFilesystems(ctx context.Context, cli *cliconfig.UmountValues) ([]string, map[string]error, error) {
- var (
- ok = []string{}
- failures = map[string]error{}
- )
-
- ctrs, err := shortcuts.GetContainersByContext(cli.All, cli.Latest, cli.InputArgs, r.Runtime)
- if err != nil {
- return ok, failures, err
- }
-
- for _, ctr := range ctrs {
- state, err := ctr.State()
- if err != nil {
- logrus.Debugf("Error umounting container %s state: %s", ctr.ID(), err.Error())
- continue
- }
- if state == define.ContainerStateRunning {
- logrus.Debugf("Error umounting container %s, is running", ctr.ID())
- continue
- }
-
- if err := ctr.Unmount(cli.Force); err != nil {
- if cli.All && errors.Cause(err) == storage.ErrLayerNotMounted {
- logrus.Debugf("Error umounting container %s, storage.ErrLayerNotMounted", ctr.ID())
- continue
- }
- failures[ctr.ID()] = errors.Wrapf(err, "error unmounting container %s", ctr.ID())
- } else {
- ok = append(ok, ctr.ID())
- }
- }
- return ok, failures, nil
-}
-
-// WaitOnContainers waits for all given container(s) to stop
-func (r *LocalRuntime) WaitOnContainers(ctx context.Context, cli *cliconfig.WaitValues, interval time.Duration) ([]string, map[string]error, error) {
- var (
- ok = []string{}
- failures = map[string]error{}
- )
-
- ctrs, err := shortcuts.GetContainersByContext(false, cli.Latest, cli.InputArgs, r.Runtime)
- if err != nil {
- return ok, failures, err
- }
-
- for _, c := range ctrs {
- if returnCode, err := c.WaitWithInterval(interval); err == nil {
- ok = append(ok, strconv.Itoa(int(returnCode)))
- } else {
- failures[c.ID()] = err
- }
- }
- return ok, failures, err
-}
-
-// Log logs one or more containers
-func (r *LocalRuntime) Log(c *cliconfig.LogsValues, options *logs.LogOptions) error {
-
- var wg sync.WaitGroup
- options.WaitGroup = &wg
- if len(c.InputArgs) > 1 {
- options.Multi = true
- }
- tailLen := int(c.Tail)
- if tailLen < 0 {
- tailLen = 0
- }
- numContainers := len(c.InputArgs)
- if numContainers == 0 {
- numContainers = 1
- }
- logChannel := make(chan *logs.LogLine, tailLen*numContainers+1)
- containers, err := shortcuts.GetContainersByContext(false, c.Latest, c.InputArgs, r.Runtime)
- if err != nil {
- return err
- }
- if err := r.Runtime.Log(containers, options, logChannel); err != nil {
- return err
- }
- go func() {
- wg.Wait()
- close(logChannel)
- }()
- for line := range logChannel {
- fmt.Println(line.String(options))
- }
- return nil
-}
-
-// CreateContainer creates a libpod container
-func (r *LocalRuntime) CreateContainer(ctx context.Context, c *cliconfig.CreateValues) (string, error) {
- results := shared.NewIntermediateLayer(&c.PodmanCommand, false)
- ctr, _, err := shared.CreateContainer(ctx, &results, r.Runtime)
- if err != nil {
- return "", err
- }
- return ctr.ID(), nil
-}
-
-// Select the detach keys to use from user input flag, config file, or default value
-func (r *LocalRuntime) selectDetachKeys(flagValue string) (string, error) {
- if flagValue != "" {
- return flagValue, nil
- }
-
- config, err := r.GetConfig()
- if err != nil {
- return "", errors.Wrapf(err, "unable to retrieve runtime config")
- }
- if config.Engine.DetachKeys != "" {
- return config.Engine.DetachKeys, nil
- }
-
- return cfg.DefaultDetachKeys, nil
-}
-
-// Run a libpod container
-func (r *LocalRuntime) Run(ctx context.Context, c *cliconfig.RunValues, exitCode int) (int, error) {
- results := shared.NewIntermediateLayer(&c.PodmanCommand, false)
-
- ctr, createConfig, err := shared.CreateContainer(ctx, &results, r.Runtime)
- if err != nil {
- return exitCode, err
- }
-
- if logrus.GetLevel() == logrus.DebugLevel {
- cgroupPath, err := ctr.CGroupPath()
- if err == nil {
- logrus.Debugf("container %q has CgroupParent %q", ctr.ID(), cgroupPath)
- }
- }
-
- // Handle detached start
- if createConfig.Detach {
- // if the container was created as part of a pod, also start its dependencies, if any.
- if err := ctr.Start(ctx, c.IsSet("pod")); err != nil {
- // This means the command did not exist
- return define.ExitCode(err), err
- }
-
- fmt.Printf("%s\n", ctr.ID())
- exitCode = 0
- return exitCode, nil
- }
-
- outputStream := os.Stdout
- errorStream := os.Stderr
- inputStream := os.Stdin
-
- // If -i is not set, clear stdin
- if !c.Bool("interactive") {
- inputStream = nil
- }
-
- // If attach is set, clear stdin/stdout/stderr and only attach requested
- if c.IsSet("attach") || c.IsSet("a") {
- outputStream = nil
- errorStream = nil
- if !c.Bool("interactive") {
- inputStream = nil
- }
-
- attachTo := c.StringSlice("attach")
- for _, stream := range attachTo {
- switch strings.ToLower(stream) {
- case "stdout":
- outputStream = os.Stdout
- case "stderr":
- errorStream = os.Stderr
- case "stdin":
- inputStream = os.Stdin
- default:
- return exitCode, errors.Wrapf(define.ErrInvalidArg, "invalid stream %q for --attach - must be one of stdin, stdout, or stderr", stream)
- }
- }
- }
-
- keys := c.String("detach-keys")
- if !c.IsSet("detach-keys") {
- keys, err = r.selectDetachKeys(keys)
- if err != nil {
- return exitCode, err
- }
- }
-
- // if the container was created as part of a pod, also start its dependencies, if any.
- if err := StartAttachCtr(ctx, ctr, outputStream, errorStream, inputStream, keys, c.Bool("sig-proxy"), true, c.IsSet("pod")); err != nil {
- // We've manually detached from the container
- // Do not perform cleanup, or wait for container exit code
- // Just exit immediately
- if errors.Cause(err) == define.ErrDetach {
- return 0, nil
- }
- if c.IsSet("rm") {
- if deleteError := r.Runtime.RemoveContainer(ctx, ctr, true, false); deleteError != nil {
- logrus.Debugf("unable to remove container %s after failing to start and attach to it", ctr.ID())
- }
- }
- if errors.Cause(err) == define.ErrWillDeadlock {
- logrus.Debugf("Deadlock error: %v", err)
- return define.ExitCode(err), errors.Errorf("attempting to start container %s would cause a deadlock; please run 'podman system renumber' to resolve", ctr.ID())
- }
- return define.ExitCode(err), err
- }
-
- if ecode, err := ctr.Wait(); err != nil {
- if errors.Cause(err) == define.ErrNoSuchCtr {
- // Check events
- event, err := r.Runtime.GetLastContainerEvent(ctr.ID(), events.Exited)
- if err != nil {
- logrus.Errorf("Cannot get exit code: %v", err)
- exitCode = define.ExecErrorCodeNotFound
- } else {
- exitCode = event.ContainerExitCode
- }
- }
- } else {
- exitCode = int(ecode)
- }
-
- if c.IsSet("rm") {
- if err := r.Runtime.RemoveContainer(ctx, ctr, false, true); err != nil {
- if errors.Cause(err) == define.ErrNoSuchCtr ||
- errors.Cause(err) == define.ErrCtrRemoved {
- logrus.Warnf("Container %s does not exist: %v", ctr.ID(), err)
- } else {
- logrus.Errorf("Error removing container %s: %v", ctr.ID(), err)
- }
- }
- }
-
- return exitCode, nil
-}
-
-// Ps ...
-func (r *LocalRuntime) Ps(c *cliconfig.PsValues, opts shared.PsOptions) ([]shared.PsContainerOutput, error) {
- maxWorkers := shared.Parallelize("ps")
- if c.GlobalIsSet("max-workers") {
- maxWorkers = c.GlobalFlags.MaxWorks
- }
- logrus.Debugf("Setting maximum workers to %d", maxWorkers)
- return shared.GetPsContainerOutput(r.Runtime, opts, c.Filter, maxWorkers)
-}
-
-// Attach ...
-func (r *LocalRuntime) Attach(ctx context.Context, c *cliconfig.AttachValues) error {
- var (
- ctr *libpod.Container
- err error
- )
-
- if c.Latest {
- ctr, err = r.Runtime.GetLatestContainer()
- } else {
- ctr, err = r.Runtime.LookupContainer(c.InputArgs[0])
- }
-
- if err != nil {
- return errors.Wrapf(err, "unable to exec into %s", c.InputArgs[0])
- }
-
- conState, err := ctr.State()
- if err != nil {
- return errors.Wrapf(err, "unable to determine state of %s", ctr.ID())
- }
- if conState != define.ContainerStateRunning {
- return errors.Errorf("you can only attach to running containers")
- }
-
- inputStream := os.Stdin
- if c.NoStdin {
- inputStream = nil
- }
-
- keys := c.DetachKeys
- if !c.IsSet("detach-keys") {
- keys, err = r.selectDetachKeys(keys)
- if err != nil {
- return err
- }
- }
-
- // If the container is in a pod, also set to recursively start dependencies
- if err := StartAttachCtr(ctx, ctr, os.Stdout, os.Stderr, inputStream, keys, c.SigProxy, false, ctr.PodID() != ""); err != nil && errors.Cause(err) != define.ErrDetach {
- return errors.Wrapf(err, "error attaching to container %s", ctr.ID())
- }
- return nil
-}
-
-// Checkpoint one or more containers
-func (r *LocalRuntime) Checkpoint(c *cliconfig.CheckpointValues) error {
- var (
- containers []*libpod.Container
- err, lastError error
- )
-
- options := libpod.ContainerCheckpointOptions{
- Keep: c.Keep,
- KeepRunning: c.LeaveRunning,
- TCPEstablished: c.TcpEstablished,
- TargetFile: c.Export,
- IgnoreRootfs: c.IgnoreRootfs,
- }
- if c.Export == "" && c.IgnoreRootfs {
- return errors.Errorf("--ignore-rootfs can only be used with --export")
- }
- if c.All {
- containers, err = r.Runtime.GetRunningContainers()
- } else {
- containers, err = shortcuts.GetContainersByContext(false, c.Latest, c.InputArgs, r.Runtime)
- }
- if err != nil {
- return err
- }
-
- for _, ctr := range containers {
- if err = ctr.Checkpoint(context.TODO(), options); err != nil {
- if lastError != nil {
- fmt.Fprintln(os.Stderr, lastError)
- }
- lastError = errors.Wrapf(err, "failed to checkpoint container %v", ctr.ID())
- } else {
- fmt.Println(ctr.ID())
- }
- }
- return lastError
-}
-
-// Restore one or more containers
-func (r *LocalRuntime) Restore(ctx context.Context, c *cliconfig.RestoreValues) error {
- var (
- containers []*libpod.Container
- err, lastError error
- filterFuncs []libpod.ContainerFilter
- )
-
- options := libpod.ContainerCheckpointOptions{
- Keep: c.Keep,
- TCPEstablished: c.TcpEstablished,
- TargetFile: c.Import,
- Name: c.Name,
- IgnoreRootfs: c.IgnoreRootfs,
- IgnoreStaticIP: c.IgnoreStaticIP,
- IgnoreStaticMAC: c.IgnoreStaticMAC,
- }
-
- filterFuncs = append(filterFuncs, func(c *libpod.Container) bool {
- state, _ := c.State()
- return state == define.ContainerStateExited
- })
-
- switch {
- case c.Import != "":
- containers, err = checkpoint.CRImportCheckpoint(ctx, r.Runtime, c.Import, c.Name)
- case c.All:
- containers, err = r.GetContainers(filterFuncs...)
- default:
- containers, err = shortcuts.GetContainersByContext(false, c.Latest, c.InputArgs, r.Runtime)
- }
- if err != nil {
- return err
- }
-
- for _, ctr := range containers {
- if err = ctr.Restore(context.TODO(), options); err != nil {
- if lastError != nil {
- fmt.Fprintln(os.Stderr, lastError)
- }
- lastError = errors.Wrapf(err, "failed to restore container %v", ctr.ID())
- } else {
- fmt.Println(ctr.ID())
- }
- }
- return lastError
-}
-
-// Start will start a container
-func (r *LocalRuntime) Start(ctx context.Context, c *cliconfig.StartValues, sigProxy bool) (int, error) {
- var (
- exitCode = define.ExecErrorCodeGeneric
- lastError error
- )
-
- args := c.InputArgs
- if c.Latest {
- lastCtr, err := r.GetLatestContainer()
- if err != nil {
- return 0, errors.Wrapf(err, "unable to get latest container")
- }
- args = append(args, lastCtr.ID())
- }
-
- for _, container := range args {
- ctr, err := r.LookupContainer(container)
- if err != nil {
- if lastError != nil {
- fmt.Fprintln(os.Stderr, lastError)
- }
- lastError = errors.Wrapf(err, "unable to find container %s", container)
- continue
- }
-
- ctrState, err := ctr.State()
- if err != nil {
- return exitCode, errors.Wrapf(err, "unable to get container state")
- }
-
- ctrRunning := ctrState == define.ContainerStateRunning
-
- if c.Attach {
- inputStream := os.Stdin
- if !c.Interactive {
- if !ctr.Stdin() {
- inputStream = nil
- }
- }
-
- keys := c.DetachKeys
- if !c.IsSet("detach-keys") {
- keys, err = r.selectDetachKeys(keys)
- if err != nil {
- return exitCode, err
- }
- }
-
- // attach to the container and also start it not already running
- // If the container is in a pod, also set to recursively start dependencies
- err = StartAttachCtr(ctx, ctr.Container, os.Stdout, os.Stderr, inputStream, keys, sigProxy, !ctrRunning, ctr.PodID() != "")
- if errors.Cause(err) == define.ErrDetach {
- // User manually detached
- // Exit cleanly immediately
- exitCode = 0
- return exitCode, nil
- }
-
- if errors.Cause(err) == define.ErrWillDeadlock {
- logrus.Debugf("Deadlock error: %v", err)
- return define.ExitCode(err), errors.Errorf("attempting to start container %s would cause a deadlock; please run 'podman system renumber' to resolve", ctr.ID())
- }
-
- if ctrRunning {
- return 0, err
- }
-
- if err != nil {
- return exitCode, errors.Wrapf(err, "unable to start container %s", ctr.ID())
- }
-
- if ecode, err := ctr.Wait(); err != nil {
- if errors.Cause(err) == define.ErrNoSuchCtr {
- // Check events
- event, err := r.Runtime.GetLastContainerEvent(ctr.ID(), events.Exited)
- if err != nil {
- logrus.Errorf("Cannot get exit code: %v", err)
- exitCode = define.ExecErrorCodeNotFound
- } else {
- exitCode = event.ContainerExitCode
- }
- }
- } else {
- exitCode = int(ecode)
- }
-
- return exitCode, nil
- }
- // Start the container if it's not running already.
- if !ctrRunning {
- // Handle non-attach start
- // If the container is in a pod, also set to recursively start dependencies
- if err := ctr.Start(ctx, ctr.PodID() != ""); err != nil {
- if lastError != nil {
- fmt.Fprintln(os.Stderr, lastError)
- }
- if errors.Cause(err) == define.ErrWillDeadlock {
- lastError = errors.Wrapf(err, "please run 'podman system renumber' to resolve deadlocks")
- continue
- }
- lastError = errors.Wrapf(err, "unable to start container %q", container)
- continue
- }
- }
- // Check if the container is referenced by ID or by name and print
- // it accordingly.
- if strings.HasPrefix(ctr.ID(), container) {
- fmt.Println(ctr.ID())
- } else {
- fmt.Println(container)
- }
- }
- return exitCode, lastError
-}
-
-// PauseContainers removes container(s) based on CLI inputs.
-func (r *LocalRuntime) PauseContainers(ctx context.Context, cli *cliconfig.PauseValues) ([]string, map[string]error, error) {
- var (
- ok = []string{}
- failures = map[string]error{}
- ctrs []*libpod.Container
- err error
- )
-
- maxWorkers := shared.DefaultPoolSize("pause")
- if cli.GlobalIsSet("max-workers") {
- maxWorkers = cli.GlobalFlags.MaxWorks
- }
- logrus.Debugf("Setting maximum rm workers to %d", maxWorkers)
-
- if cli.All {
- ctrs, err = r.GetRunningContainers()
- } else {
- ctrs, err = shortcuts.GetContainersByContext(false, false, cli.InputArgs, r.Runtime)
- }
- if err != nil {
- return ok, failures, err
- }
-
- pool := shared.NewPool("pause", maxWorkers, len(ctrs))
- for _, c := range ctrs {
- ctr := c
- pool.Add(shared.Job{
- ID: ctr.ID(),
- Fn: func() error {
- err := ctr.Pause()
- if err != nil {
- logrus.Debugf("Failed to pause container %s: %s", ctr.ID(), err.Error())
- }
- return err
- },
- })
- }
- return pool.Run()
-}
-
-// UnpauseContainers removes container(s) based on CLI inputs.
-func (r *LocalRuntime) UnpauseContainers(ctx context.Context, cli *cliconfig.UnpauseValues) ([]string, map[string]error, error) {
- var (
- ok = []string{}
- failures = map[string]error{}
- ctrs []*libpod.Container
- err error
- )
-
- maxWorkers := shared.DefaultPoolSize("pause")
- if cli.GlobalIsSet("max-workers") {
- maxWorkers = cli.GlobalFlags.MaxWorks
- }
- logrus.Debugf("Setting maximum rm workers to %d", maxWorkers)
-
- if cli.All {
- var filterFuncs []libpod.ContainerFilter
- filterFuncs = append(filterFuncs, func(c *libpod.Container) bool {
- state, _ := c.State()
- return state == define.ContainerStatePaused
- })
- ctrs, err = r.GetContainers(filterFuncs...)
- } else {
- ctrs, err = shortcuts.GetContainersByContext(false, false, cli.InputArgs, r.Runtime)
- }
- if err != nil {
- return ok, failures, err
- }
-
- pool := shared.NewPool("pause", maxWorkers, len(ctrs))
- for _, c := range ctrs {
- ctr := c
- pool.Add(shared.Job{
- ID: ctr.ID(),
- Fn: func() error {
- err := ctr.Unpause()
- if err != nil {
- logrus.Debugf("Failed to unpause container %s: %s", ctr.ID(), err.Error())
- }
- return err
- },
- })
- }
- return pool.Run()
-}
-
-// Restart containers without or without a timeout
-func (r *LocalRuntime) Restart(ctx context.Context, c *cliconfig.RestartValues) ([]string, map[string]error, error) {
- var (
- containers []*libpod.Container
- restartContainers []*libpod.Container
- err error
- )
- useTimeout := c.Flag("timeout").Changed || c.Flag("time").Changed
- inputTimeout := c.Timeout
-
- // Handle --latest
- switch {
- case c.Latest:
- lastCtr, err := r.Runtime.GetLatestContainer()
- if err != nil {
- return nil, nil, errors.Wrapf(err, "unable to get latest container")
- }
- restartContainers = append(restartContainers, lastCtr)
- case c.Running:
- containers, err = r.GetRunningContainers()
- if err != nil {
- return nil, nil, err
- }
- restartContainers = append(restartContainers, containers...)
- case c.All:
- containers, err = r.Runtime.GetAllContainers()
- if err != nil {
- return nil, nil, err
- }
- restartContainers = append(restartContainers, containers...)
- default:
- for _, id := range c.InputArgs {
- ctr, err := r.Runtime.LookupContainer(id)
- if err != nil {
- return nil, nil, err
- }
- restartContainers = append(restartContainers, ctr)
- }
- }
-
- maxWorkers := shared.DefaultPoolSize("restart")
- if c.GlobalIsSet("max-workers") {
- maxWorkers = c.GlobalFlags.MaxWorks
- }
-
- logrus.Debugf("Setting maximum workers to %d", maxWorkers)
-
- // We now have a slice of all the containers to be restarted. Iterate them to
- // create restart Funcs with a timeout as needed
- pool := shared.NewPool("restart", maxWorkers, len(restartContainers))
- for _, c := range restartContainers {
- ctr := c
- timeout := ctr.StopTimeout()
- if useTimeout {
- timeout = inputTimeout
- }
- pool.Add(shared.Job{
- ID: ctr.ID(),
- Fn: func() error {
- err := ctr.RestartWithTimeout(ctx, timeout)
- if err != nil {
- logrus.Debugf("Failed to restart container %s: %s", ctr.ID(), err.Error())
- }
- return err
- },
- })
- }
- return pool.Run()
-}
-
-// Top display the running processes of a container
-func (r *LocalRuntime) Top(cli *cliconfig.TopValues) ([]string, error) {
- var (
- descriptors []string
- container *libpod.Container
- err error
- )
- if cli.Latest {
- descriptors = cli.InputArgs
- container, err = r.Runtime.GetLatestContainer()
- } else {
- descriptors = cli.InputArgs[1:]
- container, err = r.Runtime.LookupContainer(cli.InputArgs[0])
- }
- if err != nil {
- return nil, errors.Wrapf(err, "unable to lookup requested container")
- }
-
- return container.Top(descriptors)
-}
-
-// ExecContainer executes a command in the container
-func (r *LocalRuntime) ExecContainer(ctx context.Context, cli *cliconfig.ExecValues) (int, error) {
- var (
- ctr *Container
- err error
- cmd []string
- )
- // default invalid command exit code
- ec := define.ExecErrorCodeGeneric
-
- if cli.Latest {
- if ctr, err = r.GetLatestContainer(); err != nil {
- return ec, err
- }
- cmd = cli.InputArgs[0:]
- } else {
- if ctr, err = r.LookupContainer(cli.InputArgs[0]); err != nil {
- return ec, err
- }
- cmd = cli.InputArgs[1:]
- }
-
- if cli.PreserveFDs > 0 {
- entries, err := ioutil.ReadDir("/proc/self/fd")
- if err != nil {
- return ec, errors.Wrapf(err, "unable to read /proc/self/fd")
- }
-
- m := make(map[int]bool)
- for _, e := range entries {
- i, err := strconv.Atoi(e.Name())
- if err != nil {
- return ec, errors.Wrapf(err, "cannot parse %s in /proc/self/fd", e.Name())
- }
- m[i] = true
- }
-
- for i := 3; i < 3+cli.PreserveFDs; i++ {
- if _, found := m[i]; !found {
- return ec, errors.New("invalid --preserve-fds=N specified. Not enough FDs available")
- }
- }
- }
-
- // Validate given environment variables
- env := map[string]string{}
- if len(cli.EnvFile) > 0 {
- for _, f := range cli.EnvFile {
- fileEnv, err := envLib.ParseFile(f)
- if err != nil {
- return ec, err
- }
- env = envLib.Join(env, fileEnv)
- }
- }
- cliEnv, err := envLib.ParseSlice(cli.Env)
- if err != nil {
- return ec, errors.Wrap(err, "error parsing environment variables")
- }
- env = envLib.Join(env, cliEnv)
-
- streams := new(define.AttachStreams)
- streams.OutputStream = os.Stdout
- streams.ErrorStream = os.Stderr
- if cli.Interactive {
- streams.InputStream = bufio.NewReader(os.Stdin)
- streams.AttachInput = true
- }
- streams.AttachOutput = true
- streams.AttachError = true
-
- keys := cli.DetachKeys
- if !cli.IsSet("detach-keys") {
- keys, err = r.selectDetachKeys(keys)
- if err != nil {
- return ec, err
- }
- }
-
- ec, err = ExecAttachCtr(ctx, ctr.Container, cli.Tty, cli.Privileged, env, cmd, cli.User, cli.Workdir, streams, uint(cli.PreserveFDs), keys)
- return define.TranslateExecErrorToExitCode(ec, err), err
-}
-
-// Prune removes stopped containers
-func (r *LocalRuntime) Prune(ctx context.Context, maxWorkers int, filters []string) ([]string, map[string]error, error) {
- var (
- ok = []string{}
- failures = map[string]error{}
- err error
- filterFunc []libpod.ContainerFilter
- )
-
- logrus.Debugf("Setting maximum rm workers to %d", maxWorkers)
-
- for _, filter := range filters {
- filterSplit := strings.SplitN(filter, "=", 2)
- if len(filterSplit) < 2 {
- return ok, failures, errors.Errorf("filter input must be in the form of filter=value: %s is invalid", filter)
- }
-
- f, err := shared.GenerateContainerFilterFuncs(filterSplit[0], filterSplit[1], r.Runtime)
- if err != nil {
- return ok, failures, err
- }
- filterFunc = append(filterFunc, f)
- }
-
- containerStateFilter := func(c *libpod.Container) bool {
- state, err := c.State()
- if err != nil {
- logrus.Error(err)
- return false
- }
- if c.PodID() != "" {
- return false
- }
- if state == define.ContainerStateStopped || state == define.ContainerStateExited ||
- state == define.ContainerStateCreated || state == define.ContainerStateConfigured {
- return true
- }
- return false
- }
- filterFunc = append(filterFunc, containerStateFilter)
-
- delContainers, err := r.Runtime.GetContainers(filterFunc...)
- if err != nil {
- return ok, failures, err
- }
- if len(delContainers) < 1 {
- return ok, failures, err
- }
- pool := shared.NewPool("prune", maxWorkers, len(delContainers))
- for _, c := range delContainers {
- ctr := c
- pool.Add(shared.Job{
- ID: ctr.ID(),
- Fn: func() error {
- err := r.Runtime.RemoveContainer(ctx, ctr, false, false)
- if err != nil {
- logrus.Debugf("Failed to prune container %s: %s", ctr.ID(), err.Error())
- }
- return err
- },
- })
- }
- return pool.Run()
-}
-
-// CleanupContainers any leftovers bits of stopped containers
-func (r *LocalRuntime) CleanupContainers(ctx context.Context, cli *cliconfig.CleanupValues) ([]string, map[string]error, error) {
- var (
- ok = []string{}
- failures = map[string]error{}
- )
-
- ctrs, err := shortcuts.GetContainersByContext(cli.All, cli.Latest, cli.InputArgs, r.Runtime)
- if err != nil {
- return ok, failures, err
- }
-
- for _, ctr := range ctrs {
- if cli.Remove {
- err = removeContainer(ctx, ctr, r)
- } else {
- err = cleanupContainer(ctx, ctr, r)
- }
-
- if err == nil {
- ok = append(ok, ctr.ID())
- } else {
- failures[ctr.ID()] = err
- }
-
- if cli.RemoveImage {
- _, imageName := ctr.Image()
- if err := removeContainerImage(ctx, ctr, r); err != nil {
- failures[imageName] = err
- } else {
- ok = append(ok, imageName)
- }
- }
- }
- return ok, failures, nil
-}
-
-// Only used when cleaning up containers
-func removeContainer(ctx context.Context, ctr *libpod.Container, runtime *LocalRuntime) error {
- if err := runtime.RemoveContainer(ctx, ctr, false, true); err != nil {
- return errors.Wrapf(err, "failed to cleanup and remove container %v", ctr.ID())
- }
- return nil
-}
-
-func cleanupContainer(ctx context.Context, ctr *libpod.Container, runtime *LocalRuntime) error {
- if err := ctr.Cleanup(ctx); err != nil {
- return errors.Wrapf(err, "failed to cleanup container %v", ctr.ID())
- }
- return nil
-}
-
-func removeContainerImage(ctx context.Context, ctr *libpod.Container, runtime *LocalRuntime) error {
- _, imageName := ctr.Image()
- ctrImage, err := runtime.NewImageFromLocal(imageName)
- if err != nil {
- return err
- }
- _, err = runtime.RemoveImage(ctx, ctrImage, false)
- return err
-}
-
-// Port displays port information about existing containers
-func (r *LocalRuntime) Port(c *cliconfig.PortValues) ([]*Container, error) {
- var (
- portContainers []*Container
- containers []*libpod.Container
- err error
- )
-
- if !c.All {
- names := []string{}
- if len(c.InputArgs) >= 1 {
- names = []string{c.InputArgs[0]}
- }
- containers, err = shortcuts.GetContainersByContext(false, c.Latest, names, r.Runtime)
- } else {
- containers, err = r.Runtime.GetRunningContainers()
- }
- if err != nil {
- return nil, err
- }
-
- //Convert libpod containers to adapter Containers
- for _, con := range containers {
- if state, _ := con.State(); state != define.ContainerStateRunning {
- continue
- }
- portContainers = append(portContainers, &Container{con})
- }
- return portContainers, nil
-}
-
-// generateServiceName generates the container name and the service name for systemd service.
-func generateServiceName(c *cliconfig.GenerateSystemdValues, ctr *libpod.Container, pod *libpod.Pod) (string, string) {
- var kind, name, ctrName string
- if pod == nil {
- kind = "container"
- name = ctr.ID()
- if c.Name {
- name = ctr.Name()
- }
- ctrName = name
- } else {
- kind = "pod"
- name = pod.ID()
- ctrName = ctr.ID()
- if c.Name {
- name = pod.Name()
- ctrName = ctr.Name()
- }
- }
- return ctrName, fmt.Sprintf("%s-%s", kind, name)
-}
-
-// generateSystemdgenContainerInfo is a helper to generate a
-// systemdgen.ContainerInfo for `GenerateSystemd`.
-func (r *LocalRuntime) generateSystemdgenContainerInfo(c *cliconfig.GenerateSystemdValues, nameOrID string, pod *libpod.Pod) (*generate.ContainerInfo, bool, error) {
- ctr, err := r.Runtime.LookupContainer(nameOrID)
- if err != nil {
- return nil, false, err
- }
-
- timeout := ctr.StopTimeout()
- if c.Flags().Changed("timeout") || c.Flags().Changed("time") {
- timeout = c.StopTimeout
- }
-
- config := ctr.Config()
- conmonPidFile := config.ConmonPidFile
- if conmonPidFile == "" {
- return nil, true, errors.Errorf("conmon PID file path is empty, try to recreate the container with --conmon-pidfile flag")
- }
-
- name, serviceName := generateServiceName(c, ctr, pod)
- info := &generate.ContainerInfo{
- ServiceName: serviceName,
- ContainerName: name,
- RestartPolicy: c.RestartPolicy,
- PIDFile: conmonPidFile,
- StopTimeout: timeout,
- GenerateTimestamp: true,
- CreateCommand: config.CreateCommand,
- }
-
- return info, true, nil
-}
-
-// GenerateSystemd creates a unit file for a container or pod.
-func (r *LocalRuntime) GenerateSystemd(c *cliconfig.GenerateSystemdValues) (string, error) {
- opts := generate.Options{
- Files: c.Files,
- New: c.New,
- }
-
- // First assume it's a container.
- if info, found, err := r.generateSystemdgenContainerInfo(c, c.InputArgs[0], nil); found && err != nil {
- return "", err
- } else if found && err == nil {
- return generate.CreateContainerSystemdUnit(info, opts)
- }
-
- // --new does not support pods.
- if c.New {
- return "", errors.Errorf("error generating systemd unit files: cannot generate generic files for a pod")
- }
-
- // We're either having a pod or garbage.
- pod, err := r.Runtime.LookupPod(c.InputArgs[0])
- if err != nil {
- return "", err
- }
-
- // Error out if the pod has no infra container, which we require to be the
- // main service.
- if !pod.HasInfraContainer() {
- return "", fmt.Errorf("error generating systemd unit files: Pod %q has no infra container", pod.Name())
- }
-
- // Generate a systemdgen.ContainerInfo for the infra container. This
- // ContainerInfo acts as the main service of the pod.
- infraID, err := pod.InfraContainerID()
- if err != nil {
- return "", nil
- }
- podInfo, _, err := r.generateSystemdgenContainerInfo(c, infraID, pod)
- if err != nil {
- return "", nil
- }
-
- // Compute the container-dependency graph for the Pod.
- containers, err := pod.AllContainers()
- if err != nil {
- return "", err
- }
- if len(containers) == 0 {
- return "", fmt.Errorf("error generating systemd unit files: Pod %q has no containers", pod.Name())
- }
- graph, err := libpod.BuildContainerGraph(containers)
- if err != nil {
- return "", err
- }
-
- // Traverse the dependency graph and create systemdgen.ContainerInfo's for
- // each container.
- containerInfos := []*generate.ContainerInfo{podInfo}
- for ctr, dependencies := range graph.DependencyMap() {
- // Skip the infra container as we already generated it.
- if ctr.ID() == infraID {
- continue
- }
- ctrInfo, _, err := r.generateSystemdgenContainerInfo(c, ctr.ID(), nil)
- if err != nil {
- return "", err
- }
- // Now add the container's dependencies and at the container as a
- // required service of the infra container.
- for _, dep := range dependencies {
- if dep.ID() == infraID {
- ctrInfo.BoundToServices = append(ctrInfo.BoundToServices, podInfo.ServiceName)
- } else {
- _, serviceName := generateServiceName(c, dep, nil)
- ctrInfo.BoundToServices = append(ctrInfo.BoundToServices, serviceName)
- }
- }
- podInfo.RequiredServices = append(podInfo.RequiredServices, ctrInfo.ServiceName)
- containerInfos = append(containerInfos, ctrInfo)
- }
-
- // Now generate the systemd service for all containers.
- builder := strings.Builder{}
- for i, info := range containerInfos {
- if i > 0 {
- builder.WriteByte('\n')
- }
- out, err := generate.CreateContainerSystemdUnit(info, opts)
- if err != nil {
- return "", err
- }
- builder.WriteString(out)
- }
-
- return builder.String(), nil
-}
-
-// GetNamespaces returns namespace information about a container for PS
-func (r *LocalRuntime) GetNamespaces(container shared.PsContainerOutput) *shared.Namespace {
- return shared.GetNamespaces(container.Pid)
-}
-
-// Commit creates a local image from a container
-func (r *LocalRuntime) Commit(ctx context.Context, c *cliconfig.CommitValues, container, imageName string) (string, error) {
- var (
- writer io.Writer
- mimeType string
- )
- switch c.Format {
- case "oci":
- mimeType = buildah.OCIv1ImageManifest
- if c.Flag("message").Changed {
- return "", errors.Errorf("messages are only compatible with the docker image format (-f docker)")
- }
- case "docker":
- mimeType = manifest.DockerV2Schema2MediaType
- default:
- return "", errors.Errorf("unrecognized image format %q", c.Format)
- }
- if !c.Quiet {
- writer = os.Stderr
- }
- ctr, err := r.Runtime.LookupContainer(container)
- if err != nil {
- return "", errors.Wrapf(err, "error looking up container %q", container)
- }
-
- rtc, err := r.Runtime.GetConfig()
- if err != nil {
- return "", err
- }
-
- sc := image.GetSystemContext(rtc.Engine.SignaturePolicyPath, "", false)
- coptions := buildah.CommitOptions{
- SignaturePolicyPath: rtc.Engine.SignaturePolicyPath,
- ReportWriter: writer,
- SystemContext: sc,
- PreferredManifestType: mimeType,
- }
- options := libpod.ContainerCommitOptions{
- CommitOptions: coptions,
- Pause: c.Pause,
- IncludeVolumes: c.IncludeVolumes,
- Message: c.Message,
- Changes: c.Change,
- Author: c.Author,
- }
- newImage, err := ctr.Commit(ctx, imageName, options)
- if err != nil {
- return "", err
- }
- return newImage.ID(), nil
-}
diff --git a/pkg/adapter/containers_remote.go b/pkg/adapter/containers_remote.go
deleted file mode 100644
index 777605896..000000000
--- a/pkg/adapter/containers_remote.go
+++ /dev/null
@@ -1,1139 +0,0 @@
-// +build remoteclient
-
-package adapter
-
-import (
- "bufio"
- "context"
- "encoding/json"
- "fmt"
- "io"
- "os"
- "strconv"
- "syscall"
- "time"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/cmd/podman/shared"
- "github.com/containers/libpod/libpod"
- "github.com/containers/libpod/libpod/define"
- "github.com/containers/libpod/libpod/logs"
- envLib "github.com/containers/libpod/pkg/env"
- iopodman "github.com/containers/libpod/pkg/varlink"
- "github.com/containers/libpod/pkg/varlinkapi/virtwriter"
- "github.com/cri-o/ocicni/pkg/ocicni"
- "github.com/docker/docker/pkg/term"
- "github.com/opencontainers/runtime-spec/specs-go"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- "github.com/varlink/go/varlink"
- "golang.org/x/crypto/ssh/terminal"
- "k8s.io/client-go/tools/remotecommand"
-)
-
-// Inspect returns an inspect struct from varlink
-func (c *Container) Inspect(size bool) (*define.InspectContainerData, error) {
- reply, err := iopodman.ContainerInspectData().Call(c.Runtime.Conn, c.ID(), size)
- if err != nil {
- return nil, err
- }
- data := define.InspectContainerData{}
- if err := json.Unmarshal([]byte(reply), &data); err != nil {
- return nil, err
- }
- return &data, err
-}
-
-// ID returns the ID of the container
-func (c *Container) ID() string {
- return c.config.ID
-}
-
-// Restart a single container
-func (c *Container) Restart(timeout int64) error {
- _, err := iopodman.RestartContainer().Call(c.Runtime.Conn, c.ID(), timeout)
- return err
-}
-
-// Pause a container
-func (c *Container) Pause() error {
- _, err := iopodman.PauseContainer().Call(c.Runtime.Conn, c.ID())
- return err
-}
-
-// Unpause a container
-func (c *Container) Unpause() error {
- _, err := iopodman.UnpauseContainer().Call(c.Runtime.Conn, c.ID())
- return err
-}
-
-func (c *Container) PortMappings() ([]ocicni.PortMapping, error) {
- // First check if the container belongs to a network namespace (like a pod)
- // Taken from libpod portmappings()
- if len(c.config.NetNsCtr) > 0 {
- netNsCtr, err := c.Runtime.LookupContainer(c.config.NetNsCtr)
- if err != nil {
- return nil, errors.Wrapf(err, "unable to lookup network namespace for container %s", c.ID())
- }
- return netNsCtr.PortMappings()
- }
- return c.config.PortMappings, nil
-}
-
-// Config returns a container config
-func (r *LocalRuntime) Config(name string) *libpod.ContainerConfig {
- // TODO the Spec being returned is not populated. Matt and I could not figure out why. Will defer
- // further looking into it for after devconf.
- // The libpod function for this has no errors so we are kind of in a tough
- // spot here. Logging the errors for now.
- reply, err := iopodman.ContainerConfig().Call(r.Conn, name)
- if err != nil {
- logrus.Error("call to container.config failed")
- }
- data := libpod.ContainerConfig{}
- if err := json.Unmarshal([]byte(reply), &data); err != nil {
- logrus.Error("failed to unmarshal container inspect data")
- }
- return &data
-
-}
-
-// ContainerState returns the "state" of the container.
-func (r *LocalRuntime) ContainerState(name string) (*libpod.ContainerState, error) { // no-lint
- reply, err := iopodman.ContainerStateData().Call(r.Conn, name)
- if err != nil {
- return nil, err
- }
- data := libpod.ContainerState{}
- if err := json.Unmarshal([]byte(reply), &data); err != nil {
- return nil, err
- }
- return &data, err
-
-}
-
-// Spec obtains the container spec.
-func (r *LocalRuntime) Spec(name string) (*specs.Spec, error) {
- reply, err := iopodman.Spec().Call(r.Conn, name)
- if err != nil {
- return nil, err
- }
- data := specs.Spec{}
- if err := json.Unmarshal([]byte(reply), &data); err != nil {
- return nil, err
- }
- return &data, nil
-}
-
-// LookupContainers is a wrapper for LookupContainer
-func (r *LocalRuntime) LookupContainers(idsOrNames []string) ([]*Container, error) {
- var containers []*Container
- for _, name := range idsOrNames {
- ctr, err := r.LookupContainer(name)
- if err != nil {
- return nil, err
- }
- containers = append(containers, ctr)
- }
- return containers, nil
-}
-
-// LookupContainer gets basic information about container over a varlink
-// connection and then translates it to a *Container
-func (r *LocalRuntime) LookupContainer(idOrName string) (*Container, error) {
- state, err := r.ContainerState(idOrName)
- if err != nil {
- return nil, err
- }
- config := r.Config(idOrName)
- return &Container{
- remoteContainer{
- r,
- config,
- state,
- },
- }, nil
-}
-
-// GetAllContainers returns all containers in a slice
-func (r *LocalRuntime) GetAllContainers() ([]*Container, error) {
- var containers []*Container
- ctrs, err := iopodman.GetContainersByContext().Call(r.Conn, true, false, []string{})
- if err != nil {
- return nil, err
- }
- for _, ctr := range ctrs {
- container, err := r.LookupContainer(ctr)
- if err != nil {
- return nil, err
- }
- containers = append(containers, container)
- }
- return containers, nil
-}
-
-func (r *LocalRuntime) LookupContainersWithStatus(filters []string) ([]*Container, error) {
- var containers []*Container
- ctrs, err := iopodman.GetContainersByStatus().Call(r.Conn, filters)
- if err != nil {
- return nil, err
- }
- // This is not performance savvy; if this turns out to be a problematic series of lookups, we need to
- // create a new endpoint to speed things up
- for _, ctr := range ctrs {
- container, err := r.LookupContainer(ctr.Id)
- if err != nil {
- return nil, err
- }
- containers = append(containers, container)
- }
- return containers, nil
-}
-
-func (r *LocalRuntime) GetLatestContainer() (*Container, error) {
- reply, err := iopodman.GetContainersByContext().Call(r.Conn, false, true, nil)
- if err != nil {
- return nil, err
- }
- if len(reply) > 0 {
- return r.LookupContainer(reply[0])
- }
- return nil, errors.New("no containers exist")
-}
-
-// GetArtifact returns a container's artifacts
-func (c *Container) GetArtifact(name string) ([]byte, error) {
- var data []byte
- reply, err := iopodman.ContainerArtifacts().Call(c.Runtime.Conn, c.ID(), name)
- if err != nil {
- return nil, err
- }
- if err := json.Unmarshal([]byte(reply), &data); err != nil {
- return nil, err
- }
- return data, err
-}
-
-// Config returns a container's Config ... same as ctr.Config()
-func (c *Container) Config() *libpod.ContainerConfig {
- if c.config != nil {
- return c.config
- }
- return c.Runtime.Config(c.ID())
-}
-
-// Name returns the name of the container
-func (c *Container) Name() string {
- return c.config.Name
-}
-
-// StopContainers stops requested containers using varlink.
-// Returns the list of stopped container ids, map of failed to stop container ids + errors, or any non-container error
-func (r *LocalRuntime) StopContainers(ctx context.Context, cli *cliconfig.StopValues) ([]string, map[string]error, error) {
- var (
- ok = []string{}
- failures = map[string]error{}
- )
-
- ids, err := iopodman.GetContainersByContext().Call(r.Conn, cli.All, cli.Latest, cli.InputArgs)
- if err != nil {
- return ok, failures, TranslateError(err)
- }
-
- for _, id := range ids {
- if _, err := iopodman.StopContainer().Call(r.Conn, id, int64(cli.Timeout)); err != nil {
- transError := TranslateError(err)
- if errors.Cause(transError) == define.ErrCtrStopped {
- ok = append(ok, id)
- continue
- }
- if errors.Cause(transError) == define.ErrCtrStateInvalid && cli.All {
- ok = append(ok, id)
- continue
- }
- failures[id] = err
- } else {
- // We should be using ID here because in varlink, only successful returns
- // include the string id
- ok = append(ok, id)
- }
- }
- return ok, failures, nil
-}
-
-// InitContainers initializes container(s) based on Varlink.
-// It returns a list of successful ID(s), a map of failed container ID to error,
-// or an error if a more general error occurred.
-func (r *LocalRuntime) InitContainers(ctx context.Context, cli *cliconfig.InitValues) ([]string, map[string]error, error) {
- var (
- ok = []string{}
- failures = map[string]error{}
- )
-
- ids, err := iopodman.GetContainersByContext().Call(r.Conn, cli.All, cli.Latest, cli.InputArgs)
- if err != nil {
- return nil, nil, err
- }
-
- for _, id := range ids {
- initialized, err := iopodman.InitContainer().Call(r.Conn, id)
- if err != nil {
- if cli.All {
- switch err.(type) {
- case *iopodman.InvalidState:
- ok = append(ok, initialized)
- default:
- failures[id] = err
- }
- } else {
- failures[id] = err
- }
- } else {
- ok = append(ok, initialized)
- }
- }
- return ok, failures, nil
-}
-
-// KillContainers sends signal to container(s) based on varlink.
-// Returns list of successful id(s), map of failed id(s) + error, or error not from container
-func (r *LocalRuntime) KillContainers(ctx context.Context, cli *cliconfig.KillValues, signal syscall.Signal) ([]string, map[string]error, error) {
- var (
- ok = []string{}
- failures = map[string]error{}
- )
-
- ids, err := iopodman.GetContainersByContext().Call(r.Conn, cli.All, cli.Latest, cli.InputArgs)
- if err != nil {
- return ok, failures, err
- }
-
- for _, id := range ids {
- killed, err := iopodman.KillContainer().Call(r.Conn, id, int64(signal))
- if err != nil {
- failures[id] = err
- } else {
- ok = append(ok, killed)
- }
- }
- return ok, failures, nil
-}
-
-// RemoveContainer removes container(s) based on varlink inputs.
-func (r *LocalRuntime) RemoveContainers(ctx context.Context, cli *cliconfig.RmValues) ([]string, map[string]error, error) {
- var (
- ok = []string{}
- failures = map[string]error{}
- )
-
- ids, err := iopodman.GetContainersByContext().Call(r.Conn, cli.All, cli.Latest, cli.InputArgs)
- if err != nil {
- // Failed to get containers. If force is specified, get the containers ID
- // and evict them
- if !cli.Force {
- return nil, nil, TranslateError(err)
- }
-
- for _, ctr := range cli.InputArgs {
- logrus.Debugf("Evicting container %q", ctr)
- id, err := iopodman.EvictContainer().Call(r.Conn, ctr, cli.Volumes)
- if err != nil {
- failures[ctr] = errors.Wrapf(err, "Failed to evict container: %q", id)
- continue
- }
- ok = append(ok, id)
- }
- return ok, failures, nil
- }
-
- for _, id := range ids {
- _, err := iopodman.RemoveContainer().Call(r.Conn, id, cli.Force, cli.Volumes)
- if err != nil {
- failures[id] = err
- } else {
- ok = append(ok, id)
- }
- }
- return ok, failures, nil
-}
-
-// UmountRootFilesystems umounts container(s) root filesystems based on varlink inputs
-func (r *LocalRuntime) UmountRootFilesystems(ctx context.Context, cli *cliconfig.UmountValues) ([]string, map[string]error, error) {
- ids, err := iopodman.GetContainersByContext().Call(r.Conn, cli.All, cli.Latest, cli.InputArgs)
- if err != nil {
- return nil, nil, err
- }
-
- var (
- ok = []string{}
- failures = map[string]error{}
- )
-
- for _, id := range ids {
- err := iopodman.UnmountContainer().Call(r.Conn, id, cli.Force)
- if err != nil {
- failures[id] = err
- } else {
- ok = append(ok, id)
- }
- }
- return ok, failures, nil
-}
-
-// WaitOnContainers waits for all given container(s) to stop.
-// interval is currently ignored.
-func (r *LocalRuntime) WaitOnContainers(ctx context.Context, cli *cliconfig.WaitValues, interval time.Duration) ([]string, map[string]error, error) {
- var (
- ok = []string{}
- failures = map[string]error{}
- )
-
- ids, err := iopodman.GetContainersByContext().Call(r.Conn, false, cli.Latest, cli.InputArgs)
- if err != nil {
- return ok, failures, err
- }
-
- for _, id := range ids {
- stopped, err := iopodman.WaitContainer().Call(r.Conn, id, int64(interval))
- if err != nil {
- failures[id] = err
- } else {
- ok = append(ok, strconv.FormatInt(stopped, 10))
- }
- }
- return ok, failures, nil
-}
-
-// BatchContainerOp is wrapper func to mimic shared's function with a similar name meant for libpod
-func BatchContainerOp(ctr *Container, opts shared.PsOptions) (shared.BatchContainerStruct, error) {
- // TODO If pod ps ever shows container's sizes, re-enable this code; otherwise it isn't needed
- // and would be a perf hit
- // data, err := ctr.Inspect(true)
- // if err != nil {
- // return shared.BatchContainerStruct{}, err
- // }
- //
- // size := new(shared.ContainerSize)
- // size.RootFsSize = data.SizeRootFs
- // size.RwSize = data.SizeRw
-
- bcs := shared.BatchContainerStruct{
- ConConfig: ctr.config,
- ConState: ctr.state.State,
- ExitCode: ctr.state.ExitCode,
- Pid: ctr.state.PID,
- StartedTime: ctr.state.StartedTime,
- ExitedTime: ctr.state.FinishedTime,
- // Size: size,
- }
- return bcs, nil
-}
-
-// Log one or more containers over a varlink connection
-func (r *LocalRuntime) Log(c *cliconfig.LogsValues, options *logs.LogOptions) error {
- // GetContainersLogs
- reply, err := iopodman.GetContainersLogs().Send(r.Conn, uint64(varlink.More), c.InputArgs, c.Follow, c.Latest, options.Since.Format(time.RFC3339Nano), c.Tail, c.Timestamps)
- if err != nil {
- return errors.Wrapf(err, "failed to get container logs")
- }
- if len(c.InputArgs) > 1 {
- options.Multi = true
- }
- for {
- log, flags, err := reply()
- if err != nil {
- return err
- }
- if log.Time == "" && log.Msg == "" {
- // We got a blank log line which can signal end of stream
- break
- }
- lTime, err := time.Parse(time.RFC3339Nano, log.Time)
- if err != nil {
- return errors.Wrapf(err, "unable to parse time of log %s", log.Time)
- }
- logLine := logs.LogLine{
- Device: log.Device,
- ParseLogType: log.ParseLogType,
- Time: lTime,
- Msg: log.Msg,
- CID: log.Cid,
- }
- fmt.Println(logLine.String(options))
- if flags&varlink.Continues == 0 {
- break
- }
- }
- return nil
-}
-
-// CreateContainer creates a container from the cli over varlink
-func (r *LocalRuntime) CreateContainer(ctx context.Context, c *cliconfig.CreateValues) (string, error) {
- results := shared.NewIntermediateLayer(&c.PodmanCommand, true)
- return iopodman.CreateContainer().Call(r.Conn, results.MakeVarlink())
-}
-
-// Run creates a container overvarlink and then starts it
-func (r *LocalRuntime) Run(ctx context.Context, c *cliconfig.RunValues, exitCode int) (int, error) {
- // TODO the exit codes for run need to be figured out for remote connections
- results := shared.NewIntermediateLayer(&c.PodmanCommand, true)
- cid, err := iopodman.CreateContainer().Call(r.Conn, results.MakeVarlink())
- if err != nil {
- return exitCode, err
- }
- if c.Bool("detach") {
- if _, err := iopodman.StartContainer().Call(r.Conn, cid); err != nil {
- return exitCode, err
- }
- fmt.Println(cid)
- return 0, nil
- }
- inputStream := os.Stdin
- // If -i is not set, clear stdin
- if !c.Bool("interactive") {
- inputStream = nil
- }
- exitChan, errChan, err := r.attach(ctx, inputStream, os.Stdout, cid, true, c.String("detach-keys"))
- if err != nil {
- return exitCode, err
- }
- exitCode = <-exitChan
- finalError := <-errChan
- return exitCode, finalError
-}
-
-func ReadExitFile(runtimeTmp, ctrID string) (int, error) {
- return 0, define.ErrNotImplemented
-}
-
-// Ps lists containers based on criteria from user
-func (r *LocalRuntime) Ps(c *cliconfig.PsValues, opts shared.PsOptions) ([]shared.PsContainerOutput, error) {
- var psContainers []shared.PsContainerOutput
- last := int64(c.Last)
- PsOpts := iopodman.PsOpts{
- All: c.All,
- Filters: &c.Filter,
- Last: &last,
- Latest: &c.Latest,
- NoTrunc: &c.NoTrunct,
- Pod: &c.Pod,
- Quiet: &c.Quiet,
- Size: &c.Size,
- Sort: &c.Sort,
- Sync: &c.Sync,
- }
- containers, err := iopodman.Ps().Call(r.Conn, PsOpts)
- if err != nil {
- return nil, err
- }
- for _, ctr := range containers {
- createdAt, err := time.Parse(time.RFC3339Nano, ctr.CreatedAt)
- if err != nil {
- return nil, err
- }
- exitedAt, err := time.Parse(time.RFC3339Nano, ctr.ExitedAt)
- if err != nil {
- return nil, err
- }
- startedAt, err := time.Parse(time.RFC3339Nano, ctr.StartedAt)
- if err != nil {
- return nil, err
- }
- containerSize := shared.ContainerSize{
- RootFsSize: ctr.RootFsSize,
- RwSize: ctr.RwSize,
- }
- state, err := define.StringToContainerStatus(ctr.State)
- if err != nil {
- return nil, err
- }
- psc := shared.PsContainerOutput{
- ID: ctr.Id,
- Image: ctr.Image,
- Command: ctr.Command,
- Created: ctr.Created,
- Ports: ctr.Ports,
- Names: ctr.Names,
- IsInfra: ctr.IsInfra,
- Status: ctr.Status,
- State: state,
- Pid: int(ctr.PidNum),
- Size: &containerSize,
- Pod: ctr.Pod,
- CreatedAt: createdAt,
- ExitedAt: exitedAt,
- StartedAt: startedAt,
- Labels: ctr.Labels,
- PID: ctr.NsPid,
- Cgroup: ctr.Cgroup,
- IPC: ctr.Ipc,
- MNT: ctr.Mnt,
- NET: ctr.Net,
- PIDNS: ctr.PidNs,
- User: ctr.User,
- UTS: ctr.Uts,
- Mounts: ctr.Mounts,
- }
- psContainers = append(psContainers, psc)
- }
- return psContainers, nil
-}
-
-// Attach to a remote terminal
-func (r *LocalRuntime) Attach(ctx context.Context, c *cliconfig.AttachValues) error {
- ctr, err := r.LookupContainer(c.InputArgs[0])
- if err != nil {
- return nil
- }
- if ctr.state.State != define.ContainerStateRunning {
- return errors.New("you can only attach to running containers")
- }
- inputStream := os.Stdin
- if c.NoStdin {
- inputStream, err = os.Open(os.DevNull)
- if err != nil {
- return err
- }
- }
- _, errChan, err := r.attach(ctx, inputStream, os.Stdout, c.InputArgs[0], false, c.DetachKeys)
- if err != nil {
- return err
- }
- return <-errChan
-}
-
-// Checkpoint one or more containers
-func (r *LocalRuntime) Checkpoint(c *cliconfig.CheckpointValues) error {
- if c.Export != "" {
- return errors.New("the remote client does not support exporting checkpoints")
- }
- if c.IgnoreRootfs {
- return errors.New("the remote client does not support --ignore-rootfs")
- }
-
- var lastError error
- ids, err := iopodman.GetContainersByContext().Call(r.Conn, c.All, c.Latest, c.InputArgs)
- if err != nil {
- return err
- }
- if c.All {
- // We don't have a great way to get all the running containers, so need to get all and then
- // check status on them bc checkpoint considers checkpointing a stopped container an error
- var runningIds []string
- for _, id := range ids {
- ctr, err := r.LookupContainer(id)
- if err != nil {
- return err
- }
- if ctr.state.State == define.ContainerStateRunning {
- runningIds = append(runningIds, id)
- }
- }
- ids = runningIds
- }
-
- for _, id := range ids {
- if _, err := iopodman.ContainerCheckpoint().Call(r.Conn, id, c.Keep, c.Keep, c.TcpEstablished); err != nil {
- if lastError != nil {
- fmt.Fprintln(os.Stderr, lastError)
- }
- lastError = errors.Wrapf(err, "failed to checkpoint container %v", id)
- } else {
- fmt.Println(id)
- }
- }
- return lastError
-}
-
-// Restore one or more containers
-func (r *LocalRuntime) Restore(ctx context.Context, c *cliconfig.RestoreValues) error {
- if c.Import != "" {
- return errors.New("the remote client does not support importing checkpoints")
- }
- if c.IgnoreRootfs {
- return errors.New("the remote client does not support --ignore-rootfs")
- }
-
- var lastError error
- ids, err := iopodman.GetContainersByContext().Call(r.Conn, c.All, c.Latest, c.InputArgs)
- if err != nil {
- return err
- }
- if c.All {
- // We don't have a great way to get all the exited containers, so need to get all and then
- // check status on them bc checkpoint considers restoring a running container an error
- var exitedIDs []string
- for _, id := range ids {
- ctr, err := r.LookupContainer(id)
- if err != nil {
- return err
- }
- if ctr.state.State != define.ContainerStateRunning {
- exitedIDs = append(exitedIDs, id)
- }
- }
- ids = exitedIDs
- }
-
- for _, id := range ids {
- if _, err := iopodman.ContainerRestore().Call(r.Conn, id, c.Keep, c.TcpEstablished); err != nil {
- if lastError != nil {
- fmt.Fprintln(os.Stderr, lastError)
- }
- lastError = errors.Wrapf(err, "failed to restore container %v", id)
- } else {
- fmt.Println(id)
- }
- }
- return lastError
-}
-
-// Start starts an already created container
-func (r *LocalRuntime) Start(ctx context.Context, c *cliconfig.StartValues, sigProxy bool) (int, error) {
- var (
- finalErr error
- exitCode = define.ExecErrorCodeGeneric
- )
- // TODO Figure out how to deal with exit codes
- inputStream := os.Stdin
- if !c.Interactive {
- inputStream = nil
- }
-
- containerIDs, err := iopodman.GetContainersByContext().Call(r.Conn, false, c.Latest, c.InputArgs)
- if err != nil {
- return exitCode, err
- }
- if len(containerIDs) < 1 {
- return exitCode, errors.New("failed to find containers to start")
- }
- // start.go makes sure that if attach, there can be only one ctr
- if c.Attach {
- exitChan, errChan, err := r.attach(ctx, inputStream, os.Stdout, containerIDs[0], true, c.DetachKeys)
- if err != nil {
- return exitCode, nil
- }
- exitCode := <-exitChan
- err = <-errChan
- return exitCode, err
- }
-
- // TODO the notion of starting a pod container and its deps still needs to be worked through
- // Everything else is detached
- for _, cid := range containerIDs {
- reply, err := iopodman.StartContainer().Call(r.Conn, cid)
- if err != nil {
- if finalErr != nil {
- fmt.Println(err)
- }
- finalErr = err
- } else {
- fmt.Println(reply)
- }
- }
- return exitCode, finalErr
-}
-
-func (r *LocalRuntime) attach(ctx context.Context, stdin, stdout *os.File, cid string, start bool, detachKeys string) (chan int, chan error, error) {
- var (
- oldTermState *term.State
- )
- spec, err := r.Spec(cid)
- if err != nil {
- return nil, nil, err
- }
- resize := make(chan remotecommand.TerminalSize, 5)
- haveTerminal := terminal.IsTerminal(int(os.Stdin.Fd()))
-
- // Check if we are attached to a terminal. If we are, generate resize
- // events, and set the terminal to raw mode
- if haveTerminal && spec.Process.Terminal {
- cancel, oldTermState, err := handleTerminalAttach(ctx, resize)
- if err != nil {
- return nil, nil, err
- }
- defer cancel()
- defer restoreTerminal(oldTermState) // nolint: errcheck
-
- logrus.SetFormatter(&RawTtyFormatter{})
- term.SetRawTerminal(os.Stdin.Fd()) // nolint: errcheck
- }
-
- reply, err := iopodman.Attach().Send(r.Conn, varlink.Upgrade, cid, detachKeys, start)
- if err != nil {
- restoreTerminal(oldTermState) // nolint: errcheck
- return nil, nil, err
- }
-
- // See if the server accepts the upgraded connection or returns an error
- _, err = reply()
-
- if err != nil {
- restoreTerminal(oldTermState) // nolint: errcheck
- return nil, nil, err
- }
-
- ecChan := make(chan int, 1)
- errChan := configureVarlinkAttachStdio(r.Conn.Reader, r.Conn.Writer, stdin, stdout, oldTermState, resize, ecChan)
- return ecChan, errChan, nil
-}
-
-// PauseContainers pauses container(s) based on CLI inputs.
-func (r *LocalRuntime) PauseContainers(ctx context.Context, cli *cliconfig.PauseValues) ([]string, map[string]error, error) {
- var (
- ok []string
- failures = map[string]error{}
- ctrs []*Container
- err error
- )
-
- if cli.All {
- filters := []string{define.ContainerStateRunning.String()}
- ctrs, err = r.LookupContainersWithStatus(filters)
- } else {
- ctrs, err = r.LookupContainers(cli.InputArgs)
- }
- if err != nil {
- return ok, failures, err
- }
-
- for _, c := range ctrs {
- c := c
- err := c.Pause()
- if err != nil {
- failures[c.ID()] = err
- } else {
- ok = append(ok, c.ID())
- }
- }
- return ok, failures, nil
-}
-
-// UnpauseContainers unpauses containers based on input
-func (r *LocalRuntime) UnpauseContainers(ctx context.Context, cli *cliconfig.UnpauseValues) ([]string, map[string]error, error) {
- var (
- ok = []string{}
- failures = map[string]error{}
- ctrs []*Container
- err error
- )
-
- maxWorkers := shared.DefaultPoolSize("unpause")
- if cli.GlobalIsSet("max-workers") {
- maxWorkers = cli.GlobalFlags.MaxWorks
- }
- logrus.Debugf("Setting maximum rm workers to %d", maxWorkers)
-
- if cli.All {
- filters := []string{define.ContainerStatePaused.String()}
- ctrs, err = r.LookupContainersWithStatus(filters)
- } else {
- ctrs, err = r.LookupContainers(cli.InputArgs)
- }
- if err != nil {
- return ok, failures, err
- }
- for _, c := range ctrs {
- c := c
- err := c.Unpause()
- if err != nil {
- failures[c.ID()] = err
- } else {
- ok = append(ok, c.ID())
- }
- }
- return ok, failures, nil
-}
-
-// Restart restarts a container over varlink
-func (r *LocalRuntime) Restart(ctx context.Context, c *cliconfig.RestartValues) ([]string, map[string]error, error) {
- var (
- containers []*Container
- restartContainers []*Container
- err error
- ok = []string{}
- failures = map[string]error{}
- )
- useTimeout := c.Flag("timeout").Changed || c.Flag("time").Changed
- inputTimeout := c.Timeout
-
- if c.Latest { // nolint: gocritic
- lastCtr, err := r.GetLatestContainer()
- if err != nil {
- return nil, nil, errors.Wrapf(err, "unable to get latest container")
- }
- restartContainers = append(restartContainers, lastCtr)
- } else if c.Running {
- containers, err = r.LookupContainersWithStatus([]string{define.ContainerStateRunning.String()})
- if err != nil {
- return nil, nil, err
- }
- restartContainers = append(restartContainers, containers...)
- } else if c.All {
- containers, err = r.GetAllContainers()
- if err != nil {
- return nil, nil, err
- }
- restartContainers = append(restartContainers, containers...)
- } else {
- for _, id := range c.InputArgs {
- ctr, err := r.LookupContainer(id)
- if err != nil {
- return nil, nil, err
- }
- restartContainers = append(restartContainers, ctr)
- }
- }
-
- for _, c := range restartContainers {
- c := c
- timeout := c.config.StopTimeout
- if useTimeout {
- timeout = inputTimeout
- }
- err := c.Restart(int64(timeout))
- if err != nil {
- failures[c.ID()] = err
- } else {
- ok = append(ok, c.ID())
- }
- }
- return ok, failures, nil
-}
-
-// Top display the running processes of a container
-func (r *LocalRuntime) Top(cli *cliconfig.TopValues) ([]string, error) {
- var (
- ctr *Container
- err error
- descriptors []string
- )
- if cli.Latest {
- ctr, err = r.GetLatestContainer()
- descriptors = cli.InputArgs
- } else {
- ctr, err = r.LookupContainer(cli.InputArgs[0])
- descriptors = cli.InputArgs[1:]
- }
- if err != nil {
- return nil, err
- }
- return iopodman.Top().Call(r.Conn, ctr.ID(), descriptors)
-}
-
-// Prune removes stopped containers
-func (r *LocalRuntime) Prune(ctx context.Context, maxWorkers int, filter []string) ([]string, map[string]error, error) {
-
- var (
- ok = []string{}
- failures = map[string]error{}
- ctrs []*Container
- err error
- )
- logrus.Debugf("Setting maximum rm workers to %d", maxWorkers)
-
- filters := []string{define.ContainerStateExited.String()}
- ctrs, err = r.LookupContainersWithStatus(filters)
- if err != nil {
- return ok, failures, err
- }
- for _, c := range ctrs {
- c := c
- _, err := iopodman.RemoveContainer().Call(r.Conn, c.ID(), false, false)
- if err != nil {
- failures[c.ID()] = err
- } else {
- ok = append(ok, c.ID())
- }
- }
- return ok, failures, nil
-}
-
-// Cleanup any leftovers bits of stopped containers
-func (r *LocalRuntime) CleanupContainers(ctx context.Context, cli *cliconfig.CleanupValues) ([]string, map[string]error, error) {
- return nil, nil, errors.New("container cleanup not supported for remote clients")
-}
-
-// Port displays port information about existing containers
-func (r *LocalRuntime) Port(c *cliconfig.PortValues) ([]*Container, error) {
- var (
- containers []*Container
- err error
- )
- // This one is a bit odd because when all is used, we only use running containers.
- if !c.All {
- containers, err = r.GetContainersByContext(false, c.Latest, c.InputArgs)
- } else {
- // we need to only use running containers if all
- filters := []string{define.ContainerStateRunning.String()}
- containers, err = r.LookupContainersWithStatus(filters)
- }
- if err != nil {
- return nil, err
- }
- return containers, nil
-}
-
-// GenerateSystemd creates a systemd until for a container
-func (r *LocalRuntime) GenerateSystemd(c *cliconfig.GenerateSystemdValues) (string, error) {
- return "", errors.New("systemd generation not supported for remote clients")
-}
-
-// GetNamespaces returns namespace information about a container for PS
-func (r *LocalRuntime) GetNamespaces(container shared.PsContainerOutput) *shared.Namespace {
- ns := shared.Namespace{
- PID: container.PID,
- Cgroup: container.Cgroup,
- IPC: container.IPC,
- MNT: container.MNT,
- NET: container.NET,
- PIDNS: container.PIDNS,
- User: container.User,
- UTS: container.UTS,
- }
- return &ns
-}
-
-// Commit creates a local image from a container
-func (r *LocalRuntime) Commit(ctx context.Context, c *cliconfig.CommitValues, container, imageName string) (string, error) {
- var iid string
- reply, err := iopodman.Commit().Send(r.Conn, varlink.More, container, imageName, c.Change, c.Author, c.Message, c.Pause, c.Format)
- if err != nil {
- return "", err
- }
- for {
- responses, flags, err := reply()
- if err != nil {
- return "", err
- }
- for _, line := range responses.Logs {
- fmt.Fprintln(os.Stderr, line)
- }
- iid = responses.Id
- if flags&varlink.Continues == 0 {
- break
- }
- }
- return iid, nil
-}
-
-// ExecContainer executes a command in the container
-func (r *LocalRuntime) ExecContainer(ctx context.Context, cli *cliconfig.ExecValues) (int, error) {
- var (
- oldTermState *term.State
- ec = define.ExecErrorCodeGeneric
- )
- // default invalid command exit code
- // Validate given environment variables
- cliEnv, err := envLib.ParseSlice(cli.Env)
- if err != nil {
- return 0, errors.Wrap(err, "error parsing environment variables")
- }
- envs := envLib.Slice(cliEnv)
-
- resize := make(chan remotecommand.TerminalSize, 5)
- haveTerminal := terminal.IsTerminal(int(os.Stdin.Fd()))
-
- // Check if we are attached to a terminal. If we are, generate resize
- // events, and set the terminal to raw mode
- if haveTerminal && cli.Tty {
- cancel, oldTermState, err := handleTerminalAttach(ctx, resize)
- if err != nil {
- return ec, err
- }
- defer cancel()
- defer restoreTerminal(oldTermState) // nolint: errcheck
-
- logrus.SetFormatter(&RawTtyFormatter{})
- term.SetRawTerminal(os.Stdin.Fd()) // nolint: errcheck
- }
-
- opts := iopodman.ExecOpts{
- Name: cli.InputArgs[0],
- Tty: cli.Tty,
- Privileged: cli.Privileged,
- Cmd: cli.InputArgs[1:],
- User: &cli.User,
- Workdir: &cli.Workdir,
- Env: &envs,
- DetachKeys: &cli.DetachKeys,
- }
-
- inputStream := os.Stdin
- if !cli.Interactive {
- inputStream = nil
- }
-
- reply, err := iopodman.ExecContainer().Send(r.Conn, varlink.Upgrade, opts)
- if err != nil {
- return ec, errors.Wrapf(err, "Exec failed to contact service for %s", cli.InputArgs)
- }
-
- _, err = reply()
- if err != nil {
- return ec, errors.Wrapf(err, "Exec operation failed for %s", cli.InputArgs)
- }
- ecChan := make(chan int, 1)
- errChan := configureVarlinkAttachStdio(r.Conn.Reader, r.Conn.Writer, inputStream, os.Stdout, oldTermState, resize, ecChan)
-
- ec = <-ecChan
- err = <-errChan
-
- return ec, err
-}
-
-func configureVarlinkAttachStdio(reader *bufio.Reader, writer *bufio.Writer, stdin *os.File, stdout *os.File, oldTermState *term.State, resize chan remotecommand.TerminalSize, ecChan chan int) chan error { // nolint: interfacer
- errChan := make(chan error, 1)
- // These are the special writers that encode input from the client.
- varlinkStdinWriter := virtwriter.NewVirtWriteCloser(writer, virtwriter.ToStdin)
- varlinkResizeWriter := virtwriter.NewVirtWriteCloser(writer, virtwriter.TerminalResize)
- varlinkHangupWriter := virtwriter.NewVirtWriteCloser(writer, virtwriter.HangUpFromClient)
-
- go func() {
- // Read from the wire and direct to stdout or stderr
- err := virtwriter.Reader(reader, stdout, os.Stderr, nil, nil, ecChan)
- defer restoreTerminal(oldTermState) // nolint: errcheck
- sendGenericError(ecChan)
- errChan <- err
- }()
-
- go func() {
- for termResize := range resize {
- b, err := json.Marshal(termResize)
- if err != nil {
- defer restoreTerminal(oldTermState) // nolint: errcheck,staticcheck
- sendGenericError(ecChan)
- errChan <- err
- }
- _, err = varlinkResizeWriter.Write(b)
- if err != nil {
- defer restoreTerminal(oldTermState) // nolint: errcheck,staticcheck
- sendGenericError(ecChan)
- errChan <- err
- }
- }
- }()
- if stdin != nil {
- // Takes stdinput and sends it over the wire after being encoded
- go func() {
- if _, err := io.Copy(varlinkStdinWriter, stdin); err != nil {
- defer restoreTerminal(oldTermState) // nolint: errcheck
- sendGenericError(ecChan)
- errChan <- err
- }
- _, err := varlinkHangupWriter.Write([]byte("EOF"))
- if err != nil {
- logrus.Errorf("unable to notify server to hangup: %q", err)
- }
- err = varlinkStdinWriter.Close()
- errChan <- err
- }()
- }
- return errChan
-}
-
-func sendGenericError(ecChan chan int) {
- if ecChan != nil {
- ecChan <- define.ExecErrorCodeGeneric
- }
-}
diff --git a/pkg/adapter/errors.go b/pkg/adapter/errors.go
deleted file mode 100644
index 012d01d39..000000000
--- a/pkg/adapter/errors.go
+++ /dev/null
@@ -1,31 +0,0 @@
-// +build remoteclient
-
-package adapter
-
-import (
- "github.com/containers/libpod/libpod/define"
- iopodman "github.com/containers/libpod/pkg/varlink"
- "github.com/pkg/errors"
-)
-
-// TranslateMapErrors translates the errors a typical podman output struct
-// from varlink errors to libpod errors
-func TranslateMapErrors(failures map[string]error) map[string]error {
- for k, v := range failures {
- failures[k] = TranslateError(v)
- }
- return failures
-}
-
-// TranslateError converts a single varlink error to a libpod error
-func TranslateError(err error) error {
- switch err.(type) {
- case *iopodman.ContainerNotFound:
- return errors.Wrap(define.ErrNoSuchCtr, err.Error())
- case *iopodman.ErrCtrStopped:
- return errors.Wrap(define.ErrCtrStopped, err.Error())
- case *iopodman.InvalidState:
- return errors.Wrap(define.ErrCtrStateInvalid, err.Error())
- }
- return err
-}
diff --git a/pkg/adapter/images_remote.go b/pkg/adapter/images_remote.go
deleted file mode 100644
index 2df0ffcde..000000000
--- a/pkg/adapter/images_remote.go
+++ /dev/null
@@ -1,24 +0,0 @@
-// +build remoteclient
-
-package adapter
-
-import (
- "context"
- "encoding/json"
-
- "github.com/containers/libpod/pkg/inspect"
- iopodman "github.com/containers/libpod/pkg/varlink"
-)
-
-// Inspect returns returns an ImageData struct from over a varlink connection
-func (i *ContainerImage) Inspect(ctx context.Context) (*inspect.ImageData, error) {
- reply, err := iopodman.InspectImage().Call(i.Runtime.Conn, i.ID())
- if err != nil {
- return nil, err
- }
- data := inspect.ImageData{}
- if err := json.Unmarshal([]byte(reply), &data); err != nil {
- return nil, err
- }
- return &data, nil
-}
diff --git a/pkg/adapter/info_remote.go b/pkg/adapter/info_remote.go
deleted file mode 100644
index 549b01f54..000000000
--- a/pkg/adapter/info_remote.go
+++ /dev/null
@@ -1,64 +0,0 @@
-// +build remoteclient
-
-package adapter
-
-import (
- "github.com/containers/libpod/libpod/define"
- iopodman "github.com/containers/libpod/pkg/varlink"
-)
-
-// Info returns information for the host system and its components
-func (r RemoteRuntime) Info() (*define.Info, error) {
- // TODO the varlink implementation for info should be updated to match the output for regular info
- var (
- reply define.Info
- )
-
- info, err := iopodman.GetInfo().Call(r.Conn)
- if err != nil {
- return nil, err
- }
- hostInfo := define.HostInfo{
- Arch: info.Host.Arch,
- BuildahVersion: info.Host.Buildah_version,
- CPUs: int(info.Host.Cpus),
- Distribution: define.DistributionInfo{
- Distribution: info.Host.Distribution.Distribution,
- Version: info.Host.Distribution.Version,
- },
- EventLogger: info.Host.Eventlogger,
- Hostname: info.Host.Hostname,
- Kernel: info.Host.Kernel,
- MemFree: info.Host.Mem_free,
- MemTotal: info.Host.Mem_total,
- OS: info.Host.Os,
- SwapFree: info.Host.Swap_free,
- SwapTotal: info.Host.Swap_total,
- Uptime: info.Host.Uptime,
- }
- storeInfo := define.StoreInfo{
- ContainerStore: define.ContainerStore{
- Number: int(info.Store.Containers),
- },
- GraphDriverName: info.Store.Graph_driver_name,
- GraphRoot: info.Store.Graph_root,
- ImageStore: define.ImageStore{
- Number: int(info.Store.Images),
- },
- RunRoot: info.Store.Run_root,
- }
- reply.Host = &hostInfo
- reply.Store = &storeInfo
- regs := make(map[string]interface{})
- if len(info.Registries.Search) > 0 {
- regs["search"] = info.Registries.Search
- }
- if len(info.Registries.Blocked) > 0 {
- regs["blocked"] = info.Registries.Blocked
- }
- if len(info.Registries.Insecure) > 0 {
- regs["insecure"] = info.Registries.Insecure
- }
- reply.Registries = regs
- return &reply, nil
-}
diff --git a/pkg/adapter/network.go b/pkg/adapter/network.go
deleted file mode 100644
index 577ffe19f..000000000
--- a/pkg/adapter/network.go
+++ /dev/null
@@ -1,277 +0,0 @@
-// +build !remoteclient
-
-package adapter
-
-import (
- "context"
- "encoding/json"
- "fmt"
- "io/ioutil"
- "os"
- "path/filepath"
- "text/tabwriter"
-
- cniversion "github.com/containernetworking/cni/pkg/version"
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/pkg/network"
- "github.com/containers/libpod/pkg/util"
- "github.com/pkg/errors"
-)
-
-func getCNIConfDir(r *LocalRuntime) (string, error) {
- config, err := r.GetConfig()
- if err != nil {
- return "", err
- }
- configPath := config.Network.NetworkConfigDir
-
- if len(config.Network.NetworkConfigDir) < 1 {
- configPath = network.CNIConfigDir
- }
- return configPath, nil
-}
-
-// NetworkList displays summary information about CNI networks
-func (r *LocalRuntime) NetworkList(cli *cliconfig.NetworkListValues) error {
- cniConfigPath, err := getCNIConfDir(r)
- if err != nil {
- return err
- }
- networks, err := network.LoadCNIConfsFromDir(cniConfigPath)
- if err != nil {
- return err
- }
- // quiet means we only print the network names
- if cli.Quiet {
- for _, cniNetwork := range networks {
- fmt.Println(cniNetwork.Name)
- }
- return nil
- }
- w := tabwriter.NewWriter(os.Stdout, 0, 0, 3, ' ', 0)
- if _, err := fmt.Fprintln(w, "NAME\tVERSION\tPLUGINS"); err != nil {
- return err
- }
- for _, cniNetwork := range networks {
- if _, err := fmt.Fprintf(w, "%s\t%s\t%s\n", cniNetwork.Name, cniNetwork.CNIVersion, network.GetCNIPlugins(cniNetwork)); err != nil {
- return err
- }
- }
- return w.Flush()
-}
-
-// NetworkInspect displays the raw CNI configuration for one
-// or more CNI networks
-func (r *LocalRuntime) NetworkInspect(cli *cliconfig.NetworkInspectValues) error {
- var (
- rawCNINetworks []map[string]interface{}
- )
- for _, name := range cli.InputArgs {
- rawList, err := network.InspectNetwork(name)
- if err != nil {
- return err
- }
- rawCNINetworks = append(rawCNINetworks, rawList)
- }
- out, err := json.MarshalIndent(rawCNINetworks, "", "\t")
- if err != nil {
- return err
- }
- fmt.Printf("%s\n", out)
- return nil
-}
-
-// NetworkRemove deletes one or more CNI networks
-func (r *LocalRuntime) NetworkRemove(ctx context.Context, cli *cliconfig.NetworkRmValues) ([]string, map[string]error, error) {
- var (
- networkRmSuccesses []string
- lastError error
- )
- networkRmErrors := make(map[string]error)
-
- for _, name := range cli.InputArgs {
- containers, err := r.GetAllContainers()
- if err != nil {
- return networkRmSuccesses, networkRmErrors, err
- }
- // We need to iterate containers looking to see if they belong to the given network
- for _, c := range containers {
- if util.StringInSlice(name, c.Config().Networks) {
- // if user passes force, we nuke containers
- if !cli.Force {
- // Without the force option, we return an error
- return nil, nil, errors.Errorf("%q has associated containers with it. Use -f to forcibly delete containers", name)
- }
- if err := r.RemoveContainer(ctx, c.Container, true, true); err != nil {
- return nil, nil, err
- }
- }
- }
- if err := network.RemoveNetwork(name); err != nil {
- if lastError != nil {
- networkRmErrors[name] = lastError
- }
- lastError = err
- } else {
- networkRmSuccesses = append(networkRmSuccesses, fmt.Sprintf("Deleted: %s\n", name))
- }
- }
- return networkRmSuccesses, networkRmErrors, lastError
-}
-
-// NetworkCreateBridge creates a CNI network
-func (r *LocalRuntime) NetworkCreateBridge(cli *cliconfig.NetworkCreateValues) (string, error) {
- isGateway := true
- ipMasq := true
- subnet := &cli.Network
- ipRange := cli.IPRange
- runtimeConfig, err := r.GetConfig()
- if err != nil {
- return "", err
- }
- // if range is provided, make sure it is "in" network
- if cli.IsSet("subnet") {
- // if network is provided, does it conflict with existing CNI or live networks
- err = network.ValidateUserNetworkIsAvailable(subnet)
- } else {
- // if no network is provided, figure out network
- subnet, err = network.GetFreeNetwork()
- }
- if err != nil {
- return "", err
- }
-
- gateway := cli.Gateway
- if gateway == nil {
- // if no gateway is provided, provide it as first ip of network
- gateway = network.CalcGatewayIP(subnet)
- }
- // if network is provided and if gateway is provided, make sure it is "in" network
- if cli.IsSet("subnet") && cli.IsSet("gateway") {
- if !subnet.Contains(gateway) {
- return "", errors.Errorf("gateway %s is not in valid for subnet %s", gateway.String(), subnet.String())
- }
- }
- if cli.Internal {
- isGateway = false
- ipMasq = false
- }
-
- // if a range is given, we need to ensure it is "in" the network range.
- if cli.IsSet("ip-range") {
- if !cli.IsSet("subnet") {
- return "", errors.New("you must define a subnet range to define an ip-range")
- }
- firstIP, err := network.FirstIPInSubnet(&cli.IPRange)
- if err != nil {
- return "", err
- }
- lastIP, err := network.LastIPInSubnet(&cli.IPRange)
- if err != nil {
- return "", err
- }
- if !subnet.Contains(firstIP) || !subnet.Contains(lastIP) {
- return "", errors.Errorf("the ip range %s does not fall within the subnet range %s", cli.IPRange.String(), subnet.String())
- }
- }
- bridgeDeviceName, err := network.GetFreeDeviceName()
- if err != nil {
- return "", err
- }
- // If no name is given, we give the name of the bridge device
- name := bridgeDeviceName
- if len(cli.InputArgs) > 0 {
- name = cli.InputArgs[0]
- netNames, err := network.GetNetworkNamesFromFileSystem()
- if err != nil {
- return "", err
- }
- if util.StringInSlice(name, netNames) {
- return "", errors.Errorf("the network name %s is already used", name)
- }
- }
-
- ncList := network.NewNcList(name, cniversion.Current())
- var plugins []network.CNIPlugins
- var routes []network.IPAMRoute
-
- defaultRoute, err := network.NewIPAMDefaultRoute()
- if err != nil {
- return "", err
- }
- routes = append(routes, defaultRoute)
- ipamConfig, err := network.NewIPAMHostLocalConf(subnet, routes, ipRange, gateway)
- if err != nil {
- return "", err
- }
-
- // TODO need to iron out the role of isDefaultGW and IPMasq
- bridge := network.NewHostLocalBridge(bridgeDeviceName, isGateway, false, ipMasq, ipamConfig)
- plugins = append(plugins, bridge)
- plugins = append(plugins, network.NewPortMapPlugin())
- plugins = append(plugins, network.NewFirewallPlugin())
- // if we find the dnsname plugin, we add configuration for it
- if network.HasDNSNamePlugin(runtimeConfig.Network.CNIPluginDirs) && !cli.DisableDNS {
- // Note: in the future we might like to allow for dynamic domain names
- plugins = append(plugins, network.NewDNSNamePlugin(network.DefaultPodmanDomainName))
- }
- ncList["plugins"] = plugins
- b, err := json.MarshalIndent(ncList, "", " ")
- if err != nil {
- return "", err
- }
- cniConfigPath, err := getCNIConfDir(r)
- if err != nil {
- return "", err
- }
- cniPathName := filepath.Join(cniConfigPath, fmt.Sprintf("%s.conflist", name))
- err = ioutil.WriteFile(cniPathName, b, 0644)
- return cniPathName, err
-}
-
-// NetworkCreateMacVLAN creates a CNI network
-func (r *LocalRuntime) NetworkCreateMacVLAN(cli *cliconfig.NetworkCreateValues) (string, error) {
- var (
- name string
- plugins []network.CNIPlugins
- )
- liveNetNames, err := network.GetLiveNetworkNames()
- if err != nil {
- return "", err
- }
- // Make sure the host-device exists
- if !util.StringInSlice(cli.MacVLAN, liveNetNames) {
- return "", errors.Errorf("failed to find network interface %q", cli.MacVLAN)
- }
- if len(cli.InputArgs) > 0 {
- name = cli.InputArgs[0]
- netNames, err := network.GetNetworkNamesFromFileSystem()
- if err != nil {
- return "", err
- }
- if util.StringInSlice(name, netNames) {
- return "", errors.Errorf("the network name %s is already used", name)
- }
- }
- if len(name) < 1 {
- name, err = network.GetFreeDeviceName()
- if err != nil {
- return "", err
- }
- }
- ncList := network.NewNcList(name, cniversion.Current())
- macvlan := network.NewMacVLANPlugin(cli.MacVLAN)
- plugins = append(plugins, macvlan)
- ncList["plugins"] = plugins
- b, err := json.MarshalIndent(ncList, "", " ")
- if err != nil {
- return "", err
- }
- cniConfigPath, err := getCNIConfDir(r)
- if err != nil {
- return "", err
- }
- cniPathName := filepath.Join(cniConfigPath, fmt.Sprintf("%s.conflist", name))
- err = ioutil.WriteFile(cniPathName, b, 0644)
- return cniPathName, err
-}
diff --git a/pkg/adapter/pods.go b/pkg/adapter/pods.go
deleted file mode 100644
index 7c2a84cc7..000000000
--- a/pkg/adapter/pods.go
+++ /dev/null
@@ -1,1065 +0,0 @@
-// +build !remoteclient
-
-package adapter
-
-import (
- "context"
- "fmt"
- "io"
- "io/ioutil"
- "net"
- "os"
- "path/filepath"
- "strings"
-
- "github.com/containers/buildah/pkg/parse"
- "github.com/containers/image/v5/docker/reference"
- "github.com/containers/image/v5/types"
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/cmd/podman/shared"
- "github.com/containers/libpod/libpod"
- "github.com/containers/libpod/libpod/define"
- "github.com/containers/libpod/libpod/image"
- "github.com/containers/libpod/pkg/adapter/shortcuts"
- ann "github.com/containers/libpod/pkg/annotations"
- envLib "github.com/containers/libpod/pkg/env"
- ns "github.com/containers/libpod/pkg/namespaces"
- createconfig "github.com/containers/libpod/pkg/spec"
- "github.com/containers/libpod/pkg/util"
- "github.com/containers/storage"
- "github.com/cri-o/ocicni/pkg/ocicni"
- "github.com/ghodss/yaml"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- v1 "k8s.io/api/core/v1"
-)
-
-const (
- // https://kubernetes.io/docs/concepts/storage/volumes/#hostpath
- createDirectoryPermission = 0755
- // https://kubernetes.io/docs/concepts/storage/volumes/#hostpath
- createFilePermission = 0644
-)
-
-// PodContainerStats is struct containing an adapter Pod and a libpod
-// ContainerStats and is used primarily for outputting pod stats.
-type PodContainerStats struct {
- Pod *Pod
- ContainerStats map[string]*libpod.ContainerStats
-}
-
-// PrunePods removes pods
-func (r *LocalRuntime) PrunePods(ctx context.Context, cli *cliconfig.PodPruneValues) ([]string, map[string]error, error) {
- var (
- ok = []string{}
- failures = map[string]error{}
- )
-
- maxWorkers := shared.DefaultPoolSize("rm")
- if cli.GlobalIsSet("max-workers") {
- maxWorkers = cli.GlobalFlags.MaxWorks
- }
- logrus.Debugf("Setting maximum rm workers to %d", maxWorkers)
-
- states := []string{define.PodStateStopped, define.PodStateExited}
- if cli.Force {
- states = append(states, define.PodStateRunning)
- }
-
- pods, err := r.GetPodsByStatus(states)
- if err != nil {
- return ok, failures, err
- }
- if len(pods) < 1 {
- return ok, failures, nil
- }
-
- pool := shared.NewPool("pod_prune", maxWorkers, len(pods))
- for _, p := range pods {
- p := p
-
- pool.Add(shared.Job{
- ID: p.ID(),
- Fn: func() error {
- err := r.Runtime.RemovePod(ctx, p, true, cli.Force)
- if err != nil {
- logrus.Debugf("Failed to remove pod %s: %s", p.ID(), err.Error())
- }
- return err
- },
- })
- }
- return pool.Run()
-}
-
-// RemovePods ...
-func (r *LocalRuntime) RemovePods(ctx context.Context, cli *cliconfig.PodRmValues) ([]string, []error) {
- var (
- errs []error
- podids []string
- )
- pods, err := shortcuts.GetPodsByContext(cli.All, cli.Latest, cli.InputArgs, r.Runtime)
- if err != nil && !(cli.Ignore && errors.Cause(err) == define.ErrNoSuchPod) {
- errs = append(errs, err)
- return nil, errs
- }
-
- for _, p := range pods {
- if err := r.Runtime.RemovePod(ctx, p, true, cli.Force); err != nil {
- errs = append(errs, err)
- } else {
- podids = append(podids, p.ID())
- }
- }
- return podids, errs
-}
-
-// GetLatestPod gets the latest pod and wraps it in an adapter pod
-func (r *LocalRuntime) GetLatestPod() (*Pod, error) {
- pod := Pod{}
- p, err := r.Runtime.GetLatestPod()
- pod.Pod = p
- return &pod, err
-}
-
-// GetPodsWithFilters gets the filtered list of pods based on the filter parameters provided.
-func (r *LocalRuntime) GetPodsWithFilters(filters string) ([]*Pod, error) {
- pods, err := shared.GetPodsWithFilters(r.Runtime, filters)
- if err != nil {
- return nil, err
- }
- return r.podstoAdapterPods(pods)
-}
-
-func (r *LocalRuntime) podstoAdapterPods(pod []*libpod.Pod) ([]*Pod, error) {
- var pods []*Pod
- for _, i := range pod {
-
- pods = append(pods, &Pod{i})
- }
- return pods, nil
-}
-
-// GetAllPods gets all pods and wraps it in an adapter pod
-func (r *LocalRuntime) GetAllPods() ([]*Pod, error) {
- allPods, err := r.Runtime.GetAllPods()
- if err != nil {
- return nil, err
- }
- return r.podstoAdapterPods(allPods)
-}
-
-// LookupPod gets a pod by name or id and wraps it in an adapter pod
-func (r *LocalRuntime) LookupPod(nameOrID string) (*Pod, error) {
- pod := Pod{}
- p, err := r.Runtime.LookupPod(nameOrID)
- pod.Pod = p
- return &pod, err
-}
-
-// StopPods is a wrapper to libpod to stop pods based on a cli context
-func (r *LocalRuntime) StopPods(ctx context.Context, cli *cliconfig.PodStopValues) ([]string, []error) {
- timeout := -1
- if cli.Flags().Changed("timeout") {
- timeout = int(cli.Timeout)
- }
- var (
- errs []error
- podids []string
- )
- pods, err := shortcuts.GetPodsByContext(cli.All, cli.Latest, cli.InputArgs, r.Runtime)
- if err != nil && !(cli.Ignore && errors.Cause(err) == define.ErrNoSuchPod) {
- errs = append(errs, err)
- return nil, errs
- }
-
- for _, p := range pods {
- stopped := true
- conErrs, stopErr := p.StopWithTimeout(ctx, true, timeout)
- if stopErr != nil {
- errs = append(errs, stopErr)
- stopped = false
- }
- if conErrs != nil {
- stopped = false
- for _, err := range conErrs {
- errs = append(errs, err)
- }
- }
- if stopped {
- podids = append(podids, p.ID())
- }
- }
- return podids, errs
-}
-
-// KillPods is a wrapper to libpod to start pods based on the cli context
-func (r *LocalRuntime) KillPods(ctx context.Context, cli *cliconfig.PodKillValues, signal uint) ([]string, []error) {
- var (
- errs []error
- podids []string
- )
- pods, err := shortcuts.GetPodsByContext(cli.All, cli.Latest, cli.InputArgs, r.Runtime)
- if err != nil {
- errs = append(errs, err)
- return nil, errs
- }
- for _, p := range pods {
- killed := true
- conErrs, killErr := p.Kill(signal)
- if killErr != nil {
- errs = append(errs, killErr)
- killed = false
- }
- if conErrs != nil {
- killed = false
- for _, err := range conErrs {
- errs = append(errs, err)
- }
- }
- if killed {
- podids = append(podids, p.ID())
- }
- }
- return podids, errs
-}
-
-// StartPods is a wrapper to start pods based on the cli context
-func (r *LocalRuntime) StartPods(ctx context.Context, cli *cliconfig.PodStartValues) ([]string, []error) {
- var (
- errs []error
- podids []string
- )
- pods, err := shortcuts.GetPodsByContext(cli.All, cli.Latest, cli.InputArgs, r.Runtime)
- if err != nil {
- errs = append(errs, err)
- return nil, errs
- }
- for _, p := range pods {
- started := true
- conErrs, startErr := p.Start(ctx)
- if startErr != nil {
- errs = append(errs, startErr)
- started = false
- }
- if conErrs != nil {
- started = false
- for _, err := range conErrs {
- errs = append(errs, err)
- }
- }
- if started {
- podids = append(podids, p.ID())
- }
- }
- return podids, errs
-}
-
-// CreatePod is a wrapper for libpod and creating a new pod from the cli context
-func (r *LocalRuntime) CreatePod(ctx context.Context, cli *cliconfig.PodCreateValues, labels map[string]string) (string, error) {
- var (
- options []libpod.PodCreateOption
- err error
- )
-
- // This needs to be first, as a lot of options depend on
- // WithInfraContainer()
- if cli.Infra {
- options = append(options, libpod.WithInfraContainer())
- nsOptions, err := shared.GetNamespaceOptions(strings.Split(cli.Share, ","))
- if err != nil {
- return "", err
- }
- options = append(options, nsOptions...)
- }
-
- if cli.Flag("cgroup-parent").Changed {
- options = append(options, libpod.WithPodCgroupParent(cli.CgroupParent))
- }
-
- if len(labels) != 0 {
- options = append(options, libpod.WithPodLabels(labels))
- }
-
- if cli.Flag("name").Changed {
- options = append(options, libpod.WithPodName(cli.Name))
- }
-
- if cli.Flag("hostname").Changed {
- options = append(options, libpod.WithPodHostname(cli.Hostname))
- }
-
- if cli.Flag("add-host").Changed {
- options = append(options, libpod.WithPodHosts(cli.StringSlice("add-host")))
- }
- if cli.Flag("dns").Changed {
- dns := cli.StringSlice("dns")
- foundHost := false
- for _, entry := range dns {
- if entry == "host" {
- foundHost = true
- }
- }
- if foundHost && len(dns) > 1 {
- return "", errors.Errorf("cannot set dns=host and still provide other DNS servers")
- }
- if foundHost {
- options = append(options, libpod.WithPodUseImageResolvConf())
- } else {
- options = append(options, libpod.WithPodDNS(cli.StringSlice("dns")))
- }
- }
- if cli.Flag("dns-opt").Changed {
- options = append(options, libpod.WithPodDNSOption(cli.StringSlice("dns-opt")))
- }
- if cli.Flag("dns-search").Changed {
- options = append(options, libpod.WithPodDNSSearch(cli.StringSlice("dns-search")))
- }
- if cli.Flag("ip").Changed {
- ip := net.ParseIP(cli.String("ip"))
- if ip == nil {
- return "", errors.Errorf("invalid IP address %q passed to --ip", cli.String("ip"))
- }
-
- options = append(options, libpod.WithPodStaticIP(ip))
- }
- if cli.Flag("mac-address").Changed {
- mac, err := net.ParseMAC(cli.String("mac-address"))
- if err != nil {
- return "", errors.Wrapf(err, "invalid MAC address %q passed to --mac-address", cli.String("mac-address"))
- }
-
- options = append(options, libpod.WithPodStaticMAC(mac))
- }
- if cli.Flag("network").Changed {
- netValue := cli.String("network")
- switch strings.ToLower(netValue) {
- case "bridge":
- // Do nothing.
- // TODO: Maybe this should be split between slirp and
- // bridge? Better to wait until someone asks...
- logrus.Debugf("Pod using default network mode")
- case "host":
- logrus.Debugf("Pod will use host networking")
- options = append(options, libpod.WithPodHostNetwork())
- case "":
- return "", errors.Errorf("invalid value passed to --network: must provide a comma-separated list of CNI networks or host")
- default:
- // We'll assume this is a comma-separated list of CNI
- // networks.
- networks := strings.Split(netValue, ",")
- logrus.Debugf("Pod joining CNI networks: %v", networks)
- options = append(options, libpod.WithPodNetworks(networks))
- }
- }
- if cli.Flag("no-hosts").Changed {
- if cli.Bool("no-hosts") {
- options = append(options, libpod.WithPodUseImageHosts())
- }
- }
-
- publish := cli.StringSlice("publish")
- if len(publish) > 0 {
- portBindings, err := shared.CreatePortBindings(publish)
- if err != nil {
- return "", err
- }
- options = append(options, libpod.WithInfraContainerPorts(portBindings))
-
- }
- // always have containers use pod cgroups
- // User Opt out is not yet supported
- options = append(options, libpod.WithPodCgroups())
-
- pod, err := r.NewPod(ctx, options...)
- if err != nil {
- return "", err
- }
- return pod.ID(), nil
-}
-
-// GetPodStatus is a wrapper to get the status of a local libpod pod
-func (p *Pod) GetPodStatus() (string, error) {
- return shared.GetPodStatus(p.Pod)
-}
-
-// BatchContainerOp is a wrapper for the shared function of the same name
-func BatchContainerOp(ctr *libpod.Container, opts shared.PsOptions) (shared.BatchContainerStruct, error) {
- return shared.BatchContainerOp(ctr, opts)
-}
-
-// PausePods is a wrapper for pausing pods via libpod
-func (r *LocalRuntime) PausePods(c *cliconfig.PodPauseValues) ([]string, map[string]error, []error) {
- var (
- pauseIDs []string
- pauseErrors []error
- )
- containerErrors := make(map[string]error)
-
- pods, err := shortcuts.GetPodsByContext(c.All, c.Latest, c.InputArgs, r.Runtime)
- if err != nil {
- pauseErrors = append(pauseErrors, err)
- return nil, containerErrors, pauseErrors
- }
-
- for _, pod := range pods {
- ctrErrs, err := pod.Pause()
- if err != nil {
- pauseErrors = append(pauseErrors, err)
- continue
- }
- if ctrErrs != nil {
- for ctr, err := range ctrErrs {
- containerErrors[ctr] = err
- }
- continue
- }
- pauseIDs = append(pauseIDs, pod.ID())
-
- }
- return pauseIDs, containerErrors, pauseErrors
-}
-
-// UnpausePods is a wrapper for unpausing pods via libpod
-func (r *LocalRuntime) UnpausePods(c *cliconfig.PodUnpauseValues) ([]string, map[string]error, []error) {
- var (
- unpauseIDs []string
- unpauseErrors []error
- )
- containerErrors := make(map[string]error)
-
- pods, err := shortcuts.GetPodsByContext(c.All, c.Latest, c.InputArgs, r.Runtime)
- if err != nil {
- unpauseErrors = append(unpauseErrors, err)
- return nil, containerErrors, unpauseErrors
- }
-
- for _, pod := range pods {
- ctrErrs, err := pod.Unpause()
- if err != nil {
- unpauseErrors = append(unpauseErrors, err)
- continue
- }
- if ctrErrs != nil {
- for ctr, err := range ctrErrs {
- containerErrors[ctr] = err
- }
- continue
- }
- unpauseIDs = append(unpauseIDs, pod.ID())
-
- }
- return unpauseIDs, containerErrors, unpauseErrors
-}
-
-// RestartPods is a wrapper to restart pods via libpod
-func (r *LocalRuntime) RestartPods(ctx context.Context, c *cliconfig.PodRestartValues) ([]string, map[string]error, []error) {
- var (
- restartIDs []string
- restartErrors []error
- )
- containerErrors := make(map[string]error)
-
- pods, err := shortcuts.GetPodsByContext(c.All, c.Latest, c.InputArgs, r.Runtime)
- if err != nil {
- restartErrors = append(restartErrors, err)
- return nil, containerErrors, restartErrors
- }
-
- for _, pod := range pods {
- ctrErrs, err := pod.Restart(ctx)
- if err != nil {
- restartErrors = append(restartErrors, err)
- continue
- }
- if ctrErrs != nil {
- for ctr, err := range ctrErrs {
- containerErrors[ctr] = err
- }
- continue
- }
- restartIDs = append(restartIDs, pod.ID())
-
- }
- return restartIDs, containerErrors, restartErrors
-
-}
-
-// PodTop is a wrapper function to call GetPodPidInformation in libpod and return its results
-// for output
-func (r *LocalRuntime) PodTop(c *cliconfig.PodTopValues, descriptors []string) ([]string, error) {
- var (
- pod *Pod
- err error
- )
-
- if c.Latest {
- pod, err = r.GetLatestPod()
- } else {
- pod, err = r.LookupPod(c.InputArgs[0])
- }
- if err != nil {
- return nil, errors.Wrapf(err, "unable to lookup requested container")
- }
- podStatus, err := pod.GetPodStatus()
- if err != nil {
- return nil, errors.Wrapf(err, "unable to get status for pod %s", pod.ID())
- }
- if podStatus != "Running" {
- return nil, errors.Errorf("pod top can only be used on pods with at least one running container")
- }
- return pod.GetPodPidInformation(descriptors)
-}
-
-// GetStatPods returns pods for use in pod stats
-func (r *LocalRuntime) GetStatPods(c *cliconfig.PodStatsValues) ([]*Pod, error) {
- var (
- adapterPods []*Pod
- pods []*libpod.Pod
- err error
- )
-
- if len(c.InputArgs) > 0 || c.Latest || c.All {
- pods, err = shortcuts.GetPodsByContext(c.All, c.Latest, c.InputArgs, r.Runtime)
- } else {
- pods, err = r.Runtime.GetRunningPods()
- }
- if err != nil {
- return nil, err
- }
- // convert libpod pods to adapter pods
- for _, p := range pods {
- adapterPod := Pod{
- p,
- }
- adapterPods = append(adapterPods, &adapterPod)
- }
- return adapterPods, nil
-}
-
-// PlayKubeYAML creates pods and containers from a kube YAML file
-func (r *LocalRuntime) PlayKubeYAML(ctx context.Context, c *cliconfig.KubePlayValues, yamlFile string) (*Pod, error) {
- var (
- containers []*libpod.Container
- pod *libpod.Pod
- podOptions []libpod.PodCreateOption
- podYAML v1.Pod
- registryCreds *types.DockerAuthConfig
- writer io.Writer
- )
-
- content, err := ioutil.ReadFile(yamlFile)
- if err != nil {
- return nil, err
- }
-
- if err := yaml.Unmarshal(content, &podYAML); err != nil {
- return nil, errors.Wrapf(err, "unable to read %s as YAML", yamlFile)
- }
-
- if podYAML.Kind != "Pod" {
- return nil, errors.Errorf("Invalid YAML kind: %s. Pod is the only supported Kubernetes YAML kind", podYAML.Kind)
- }
-
- // check for name collision between pod and container
- podName := podYAML.ObjectMeta.Name
- if podName == "" {
- return nil, errors.Errorf("pod does not have a name")
- }
- for _, n := range podYAML.Spec.Containers {
- if n.Name == podName {
- fmt.Printf("a container exists with the same name (%s) as the pod in your YAML file; changing pod name to %s_pod\n", podName, podName)
- podName = fmt.Sprintf("%s_pod", podName)
- }
- }
-
- podOptions = append(podOptions, libpod.WithInfraContainer())
- podOptions = append(podOptions, libpod.WithPodName(podName))
- // TODO for now we just used the default kernel namespaces; we need to add/subtract this from yaml
-
- hostname := podYAML.Spec.Hostname
- if hostname == "" {
- hostname = podName
- }
- podOptions = append(podOptions, libpod.WithPodHostname(hostname))
-
- if podYAML.Spec.HostNetwork {
- podOptions = append(podOptions, libpod.WithPodHostNetwork())
- }
-
- nsOptions, err := shared.GetNamespaceOptions(strings.Split(shared.DefaultKernelNamespaces, ","))
- if err != nil {
- return nil, err
- }
- podOptions = append(podOptions, nsOptions...)
- podPorts := getPodPorts(podYAML.Spec.Containers)
- podOptions = append(podOptions, libpod.WithInfraContainerPorts(podPorts))
-
- if c.Flag("network").Changed {
- netValue := c.String("network")
- switch strings.ToLower(netValue) {
- case "bridge", "host":
- return nil, errors.Errorf("invalid value passed to --network: bridge or host networking must be configured in YAML")
- case "":
- return nil, errors.Errorf("invalid value passed to --network: must provide a comma-separated list of CNI networks")
- default:
- // We'll assume this is a comma-separated list of CNI
- // networks.
- networks := strings.Split(netValue, ",")
- logrus.Debugf("Pod joining CNI networks: %v", networks)
- podOptions = append(podOptions, libpod.WithPodNetworks(networks))
- }
- }
-
- // Create the Pod
- pod, err = r.NewPod(ctx, podOptions...)
- if err != nil {
- return nil, err
- }
-
- podInfraID, err := pod.InfraContainerID()
- if err != nil {
- return nil, err
- }
- hasUserns := false
- if podInfraID != "" {
- podCtr, err := r.GetContainer(podInfraID)
- if err != nil {
- return nil, err
- }
- mappings, err := podCtr.IDMappings()
- if err != nil {
- return nil, err
- }
- hasUserns = len(mappings.UIDMap) > 0
- }
-
- namespaces := map[string]string{
- // Disabled during code review per mheon
- //"pid": fmt.Sprintf("container:%s", podInfraID),
- "net": fmt.Sprintf("container:%s", podInfraID),
- "ipc": fmt.Sprintf("container:%s", podInfraID),
- "uts": fmt.Sprintf("container:%s", podInfraID),
- }
- if hasUserns {
- namespaces["user"] = fmt.Sprintf("container:%s", podInfraID)
- }
- if !c.Quiet {
- writer = os.Stderr
- }
-
- dockerRegistryOptions := image.DockerRegistryOptions{
- DockerRegistryCreds: registryCreds,
- DockerCertPath: c.CertDir,
- }
- if c.Flag("tls-verify").Changed {
- dockerRegistryOptions.DockerInsecureSkipTLSVerify = types.NewOptionalBool(!c.TlsVerify)
- }
-
- // map from name to mount point
- volumes := make(map[string]string)
- for _, volume := range podYAML.Spec.Volumes {
- hostPath := volume.VolumeSource.HostPath
- if hostPath == nil {
- return nil, errors.Errorf("HostPath is currently the only supported VolumeSource")
- }
- if hostPath.Type != nil {
- switch *hostPath.Type {
- case v1.HostPathDirectoryOrCreate:
- if _, err := os.Stat(hostPath.Path); os.IsNotExist(err) {
- if err := os.Mkdir(hostPath.Path, createDirectoryPermission); err != nil {
- return nil, errors.Errorf("Error creating HostPath %s at %s", volume.Name, hostPath.Path)
- }
- }
- // Label a newly created volume
- if err := libpod.LabelVolumePath(hostPath.Path); err != nil {
- return nil, errors.Wrapf(err, "Error giving %s a label", hostPath.Path)
- }
- case v1.HostPathFileOrCreate:
- if _, err := os.Stat(hostPath.Path); os.IsNotExist(err) {
- f, err := os.OpenFile(hostPath.Path, os.O_RDONLY|os.O_CREATE, createFilePermission)
- if err != nil {
- return nil, errors.Errorf("Error creating HostPath %s at %s", volume.Name, hostPath.Path)
- }
- if err := f.Close(); err != nil {
- logrus.Warnf("Error in closing newly created HostPath file: %v", err)
- }
- }
- // unconditionally label a newly created volume
- if err := libpod.LabelVolumePath(hostPath.Path); err != nil {
- return nil, errors.Wrapf(err, "Error giving %s a label", hostPath.Path)
- }
- case v1.HostPathDirectory:
- case v1.HostPathFile:
- case v1.HostPathUnset:
- // do nothing here because we will verify the path exists in validateVolumeHostDir
- break
- default:
- return nil, errors.Errorf("Directories are the only supported HostPath type")
- }
- }
-
- if err := parse.ValidateVolumeHostDir(hostPath.Path); err != nil {
- return nil, errors.Wrapf(err, "Error in parsing HostPath in YAML")
- }
- volumes[volume.Name] = hostPath.Path
- }
-
- seccompPaths, err := initializeSeccompPaths(podYAML.ObjectMeta.Annotations, c.SeccompProfileRoot)
- if err != nil {
- return nil, err
- }
-
- for _, container := range podYAML.Spec.Containers {
- pullPolicy := util.PullImageMissing
- if len(container.ImagePullPolicy) > 0 {
- pullPolicy, err = util.ValidatePullType(string(container.ImagePullPolicy))
- if err != nil {
- return nil, err
- }
- }
- named, err := reference.ParseNormalizedNamed(container.Image)
- if err != nil {
- return nil, err
- }
- // In kube, if the image is tagged with latest, it should always pull
- if tagged, isTagged := named.(reference.NamedTagged); isTagged {
- if tagged.Tag() == image.LatestTag {
- pullPolicy = util.PullImageAlways
- }
- }
- newImage, err := r.ImageRuntime().New(ctx, container.Image, c.SignaturePolicy, c.Authfile, writer, &dockerRegistryOptions, image.SigningOptions{}, nil, pullPolicy)
- if err != nil {
- return nil, err
- }
- createConfig, err := kubeContainerToCreateConfig(ctx, container, r.Runtime, newImage, namespaces, volumes, pod.ID(), podInfraID, seccompPaths)
- if err != nil {
- return nil, err
- }
- ctr, err := shared.CreateContainerFromCreateConfig(r.Runtime, createConfig, ctx, pod)
- if err != nil {
- return nil, err
- }
- containers = append(containers, ctr)
- }
-
- // start the containers
- for _, ctr := range containers {
- if err := ctr.Start(ctx, true); err != nil {
- // Making this a hard failure here to avoid a mess
- // the other containers are in created status
- return nil, err
- }
- }
-
- // We've now successfully converted this YAML into a pod
- // print our pod and containers, signifying we succeeded
- fmt.Printf("Pod:\n%s\n", pod.ID())
- if len(containers) == 1 {
- fmt.Printf("Container:\n")
- }
- if len(containers) > 1 {
- fmt.Printf("Containers:\n")
- }
- for _, ctr := range containers {
- fmt.Println(ctr.ID())
- }
-
- if err := playcleanup(ctx, r, pod, nil); err != nil {
- logrus.Errorf("unable to remove pod %s after failing to play kube", pod.ID())
- }
- return nil, nil
-}
-
-func playcleanup(ctx context.Context, runtime *LocalRuntime, pod *libpod.Pod, err error) error {
- if err != nil && pod != nil {
- return runtime.RemovePod(ctx, pod, true, true)
- }
- return nil
-}
-
-// getPodPorts converts a slice of kube container descriptions to an
-// array of ocicni portmapping descriptions usable in libpod
-func getPodPorts(containers []v1.Container) []ocicni.PortMapping {
- var infraPorts []ocicni.PortMapping
- for _, container := range containers {
- for _, p := range container.Ports {
- if p.HostPort != 0 && p.ContainerPort == 0 {
- p.ContainerPort = p.HostPort
- }
- if p.Protocol == "" {
- p.Protocol = "tcp"
- }
- portBinding := ocicni.PortMapping{
- HostPort: p.HostPort,
- ContainerPort: p.ContainerPort,
- Protocol: strings.ToLower(string(p.Protocol)),
- }
- if p.HostIP != "" {
- logrus.Debug("HostIP on port bindings is not supported")
- }
- // only hostPort is utilized in podman context, all container ports
- // are accessible inside the shared network namespace
- if p.HostPort != 0 {
- infraPorts = append(infraPorts, portBinding)
- }
-
- }
- }
- return infraPorts
-}
-
-func setupSecurityContext(securityConfig *createconfig.SecurityConfig, userConfig *createconfig.UserConfig, containerYAML v1.Container) {
- if containerYAML.SecurityContext == nil {
- return
- }
- if containerYAML.SecurityContext.ReadOnlyRootFilesystem != nil {
- securityConfig.ReadOnlyRootfs = *containerYAML.SecurityContext.ReadOnlyRootFilesystem
- }
- if containerYAML.SecurityContext.Privileged != nil {
- securityConfig.Privileged = *containerYAML.SecurityContext.Privileged
- }
-
- if containerYAML.SecurityContext.AllowPrivilegeEscalation != nil {
- securityConfig.NoNewPrivs = !*containerYAML.SecurityContext.AllowPrivilegeEscalation
- }
-
- if seopt := containerYAML.SecurityContext.SELinuxOptions; seopt != nil {
- if seopt.User != "" {
- securityConfig.SecurityOpts = append(securityConfig.SecurityOpts, fmt.Sprintf("label=user:%s", seopt.User))
- securityConfig.LabelOpts = append(securityConfig.LabelOpts, fmt.Sprintf("user:%s", seopt.User))
- }
- if seopt.Role != "" {
- securityConfig.SecurityOpts = append(securityConfig.SecurityOpts, fmt.Sprintf("label=role:%s", seopt.Role))
- securityConfig.LabelOpts = append(securityConfig.LabelOpts, fmt.Sprintf("role:%s", seopt.Role))
- }
- if seopt.Type != "" {
- securityConfig.SecurityOpts = append(securityConfig.SecurityOpts, fmt.Sprintf("label=type:%s", seopt.Type))
- securityConfig.LabelOpts = append(securityConfig.LabelOpts, fmt.Sprintf("type:%s", seopt.Type))
- }
- if seopt.Level != "" {
- securityConfig.SecurityOpts = append(securityConfig.SecurityOpts, fmt.Sprintf("label=level:%s", seopt.Level))
- securityConfig.LabelOpts = append(securityConfig.LabelOpts, fmt.Sprintf("level:%s", seopt.Level))
- }
- }
- if caps := containerYAML.SecurityContext.Capabilities; caps != nil {
- for _, capability := range caps.Add {
- securityConfig.CapAdd = append(securityConfig.CapAdd, string(capability))
- }
- for _, capability := range caps.Drop {
- securityConfig.CapDrop = append(securityConfig.CapDrop, string(capability))
- }
- }
- if containerYAML.SecurityContext.RunAsUser != nil {
- userConfig.User = fmt.Sprintf("%d", *containerYAML.SecurityContext.RunAsUser)
- }
- if containerYAML.SecurityContext.RunAsGroup != nil {
- if userConfig.User == "" {
- userConfig.User = "0"
- }
- userConfig.User = fmt.Sprintf("%s:%d", userConfig.User, *containerYAML.SecurityContext.RunAsGroup)
- }
-}
-
-// kubeContainerToCreateConfig takes a v1.Container and returns a createconfig describing a container
-func kubeContainerToCreateConfig(ctx context.Context, containerYAML v1.Container, runtime *libpod.Runtime, newImage *image.Image, namespaces map[string]string, volumes map[string]string, podID, infraID string, seccompPaths *kubeSeccompPaths) (*createconfig.CreateConfig, error) {
- var (
- containerConfig createconfig.CreateConfig
- pidConfig createconfig.PidConfig
- networkConfig createconfig.NetworkConfig
- cgroupConfig createconfig.CgroupConfig
- utsConfig createconfig.UtsConfig
- ipcConfig createconfig.IpcConfig
- userConfig createconfig.UserConfig
- securityConfig createconfig.SecurityConfig
- )
-
- // The default for MemorySwappiness is -1, not 0
- containerConfig.Resources.MemorySwappiness = -1
-
- containerConfig.Image = containerYAML.Image
- containerConfig.ImageID = newImage.ID()
- containerConfig.Name = containerYAML.Name
- containerConfig.Tty = containerYAML.TTY
-
- containerConfig.Pod = podID
-
- imageData, _ := newImage.Inspect(ctx)
-
- userConfig.User = "0"
- if imageData != nil {
- userConfig.User = imageData.Config.User
- }
-
- setupSecurityContext(&securityConfig, &userConfig, containerYAML)
-
- securityConfig.SeccompProfilePath = seccompPaths.findForContainer(containerConfig.Name)
-
- containerConfig.Command = []string{}
- if imageData != nil && imageData.Config != nil {
- containerConfig.Command = append(containerConfig.Command, imageData.Config.Entrypoint...)
- }
- if len(containerYAML.Command) != 0 {
- containerConfig.Command = append(containerConfig.Command, containerYAML.Command...)
- } else if imageData != nil && imageData.Config != nil {
- containerConfig.Command = append(containerConfig.Command, imageData.Config.Cmd...)
- }
- if imageData != nil && len(containerConfig.Command) == 0 {
- return nil, errors.Errorf("No command specified in container YAML or as CMD or ENTRYPOINT in this image for %s", containerConfig.Name)
- }
-
- containerConfig.UserCommand = containerConfig.Command
-
- containerConfig.StopSignal = 15
-
- containerConfig.WorkDir = "/"
- if imageData != nil {
- // FIXME,
- // we are currently ignoring imageData.Config.ExposedPorts
- containerConfig.BuiltinImgVolumes = imageData.Config.Volumes
- if imageData.Config.WorkingDir != "" {
- containerConfig.WorkDir = imageData.Config.WorkingDir
- }
- containerConfig.Labels = imageData.Config.Labels
- if imageData.Config.StopSignal != "" {
- stopSignal, err := util.ParseSignal(imageData.Config.StopSignal)
- if err != nil {
- return nil, err
- }
- containerConfig.StopSignal = stopSignal
- }
- }
-
- if containerYAML.WorkingDir != "" {
- containerConfig.WorkDir = containerYAML.WorkingDir
- }
- // If the user does not pass in ID mappings, just set to basics
- if userConfig.IDMappings == nil {
- userConfig.IDMappings = &storage.IDMappingOptions{}
- }
-
- networkConfig.NetMode = ns.NetworkMode(namespaces["net"])
- ipcConfig.IpcMode = ns.IpcMode(namespaces["ipc"])
- utsConfig.UtsMode = ns.UTSMode(namespaces["uts"])
- // disabled in code review per mheon
- //containerConfig.PidMode = ns.PidMode(namespaces["pid"])
- userConfig.UsernsMode = ns.UsernsMode(namespaces["user"])
- if len(containerConfig.WorkDir) == 0 {
- containerConfig.WorkDir = "/"
- }
-
- containerConfig.Pid = pidConfig
- containerConfig.Network = networkConfig
- containerConfig.Uts = utsConfig
- containerConfig.Ipc = ipcConfig
- containerConfig.Cgroup = cgroupConfig
- containerConfig.User = userConfig
- containerConfig.Security = securityConfig
-
- annotations := make(map[string]string)
- if infraID != "" {
- annotations[ann.SandboxID] = infraID
- annotations[ann.ContainerType] = ann.ContainerTypeContainer
- }
- containerConfig.Annotations = annotations
-
- // Environment Variables
- envs := map[string]string{}
- if imageData != nil {
- imageEnv, err := envLib.ParseSlice(imageData.Config.Env)
- if err != nil {
- return nil, errors.Wrap(err, "error parsing image environment variables")
- }
- envs = imageEnv
- }
- for _, e := range containerYAML.Env {
- envs[e.Name] = e.Value
- }
- containerConfig.Env = envs
-
- for _, volume := range containerYAML.VolumeMounts {
- hostPath, exists := volumes[volume.Name]
- if !exists {
- return nil, errors.Errorf("Volume mount %s specified for container but not configured in volumes", volume.Name)
- }
- if err := parse.ValidateVolumeCtrDir(volume.MountPath); err != nil {
- return nil, errors.Wrapf(err, "error in parsing MountPath")
- }
- containerConfig.Volumes = append(containerConfig.Volumes, fmt.Sprintf("%s:%s", hostPath, volume.MountPath))
- }
- return &containerConfig, nil
-}
-
-// kubeSeccompPaths holds information about a pod YAML's seccomp configuration
-// it holds both container and pod seccomp paths
-type kubeSeccompPaths struct {
- containerPaths map[string]string
- podPath string
-}
-
-// findForContainer checks whether a container has a seccomp path configured for it
-// if not, it returns the podPath, which should always have a value
-func (k *kubeSeccompPaths) findForContainer(ctrName string) string {
- if path, ok := k.containerPaths[ctrName]; ok {
- return path
- }
- return k.podPath
-}
-
-// initializeSeccompPaths takes annotations from the pod object metadata and finds annotations pertaining to seccomp
-// it parses both pod and container level
-// if the annotation is of the form "localhost/%s", the seccomp profile will be set to profileRoot/%s
-func initializeSeccompPaths(annotations map[string]string, profileRoot string) (*kubeSeccompPaths, error) {
- seccompPaths := &kubeSeccompPaths{containerPaths: make(map[string]string)}
- var err error
- if annotations != nil {
- for annKeyValue, seccomp := range annotations {
- // check if it is prefaced with container.seccomp.security.alpha.kubernetes.io/
- prefixAndCtr := strings.Split(annKeyValue, "/")
- if prefixAndCtr[0]+"/" != v1.SeccompContainerAnnotationKeyPrefix {
- continue
- } else if len(prefixAndCtr) != 2 {
- // this could be caused by a user inputting either of
- // container.seccomp.security.alpha.kubernetes.io{,/}
- // both of which are invalid
- return nil, errors.Errorf("Invalid seccomp path: %s", prefixAndCtr[0])
- }
-
- path, err := verifySeccompPath(seccomp, profileRoot)
- if err != nil {
- return nil, err
- }
- seccompPaths.containerPaths[prefixAndCtr[1]] = path
- }
-
- podSeccomp, ok := annotations[v1.SeccompPodAnnotationKey]
- if ok {
- seccompPaths.podPath, err = verifySeccompPath(podSeccomp, profileRoot)
- } else {
- seccompPaths.podPath, err = libpod.DefaultSeccompPath()
- }
- if err != nil {
- return nil, err
- }
- }
- return seccompPaths, nil
-}
-
-// verifySeccompPath takes a path and checks whether it is a default, unconfined, or a path
-// the available options are parsed as defined in https://kubernetes.io/docs/concepts/policy/pod-security-policy/#seccomp
-func verifySeccompPath(path string, profileRoot string) (string, error) {
- switch path {
- case v1.DeprecatedSeccompProfileDockerDefault:
- fallthrough
- case v1.SeccompProfileRuntimeDefault:
- return libpod.DefaultSeccompPath()
- case "unconfined":
- return path, nil
- default:
- parts := strings.Split(path, "/")
- if parts[0] == "localhost" {
- return filepath.Join(profileRoot, parts[1]), nil
- }
- return "", errors.Errorf("invalid seccomp path: %s", path)
- }
-}
diff --git a/pkg/adapter/pods_remote.go b/pkg/adapter/pods_remote.go
deleted file mode 100644
index 4c6eea9a7..000000000
--- a/pkg/adapter/pods_remote.go
+++ /dev/null
@@ -1,576 +0,0 @@
-// +build remoteclient
-
-package adapter
-
-import (
- "context"
- "encoding/json"
- "strings"
- "time"
-
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/cmd/podman/shared"
- "github.com/containers/libpod/libpod"
- "github.com/containers/libpod/libpod/define"
- iopodman "github.com/containers/libpod/pkg/varlink"
- "github.com/containers/libpod/pkg/varlinkapi"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
-)
-
-// PodContainerStats is struct containing an adapter Pod and a libpod
-// ContainerStats and is used primarily for outputting pod stats.
-type PodContainerStats struct {
- Pod *Pod
- ContainerStats map[string]*libpod.ContainerStats
-}
-
-// RemovePods removes one or more based on the cli context.
-func (r *LocalRuntime) RemovePods(ctx context.Context, cli *cliconfig.PodRmValues) ([]string, []error) {
- var (
- rmErrs []error
- rmPods []string
- )
- podIDs, err := iopodman.GetPodsByContext().Call(r.Conn, cli.All, cli.Latest, cli.InputArgs)
- if err != nil {
- rmErrs = append(rmErrs, err)
- return nil, rmErrs
- }
-
- for _, p := range podIDs {
- reply, err := iopodman.RemovePod().Call(r.Conn, p, cli.Force)
- if err != nil {
- rmErrs = append(rmErrs, err)
- } else {
- rmPods = append(rmPods, reply)
- }
- }
- return rmPods, rmErrs
-}
-
-// Inspect looks up a pod by name or id and embeds its data into a remote pod
-// object.
-func (r *LocalRuntime) Inspect(nameOrID string) (*Pod, error) {
- reply, err := iopodman.PodStateData().Call(r.Conn, nameOrID)
- if err != nil {
- return nil, err
- }
- data := libpod.PodInspect{}
- if err := json.Unmarshal([]byte(reply), &data); err != nil {
- return nil, err
- }
- pod := Pod{}
- pod.Runtime = r
- pod.config = data.Config
- pod.state = data.State
- pod.containers = data.Containers
- return &pod, nil
-}
-
-// GetLatestPod gets the latest pod and wraps it in an adapter pod
-func (r *LocalRuntime) GetLatestPod() (*Pod, error) {
- reply, err := iopodman.GetPodsByContext().Call(r.Conn, false, true, nil)
- if err != nil {
- return nil, err
- }
- if len(reply) > 0 {
- return r.Inspect(reply[0])
- }
- return nil, errors.New("no pods exist")
-}
-
-// LookupPod gets a pod by name or ID and wraps it in an adapter pod
-func (r *LocalRuntime) LookupPod(nameOrID string) (*Pod, error) {
- return r.Inspect(nameOrID)
-}
-
-// Inspect, like libpod pod inspect, returns a libpod.PodInspect object from
-// the data of a remotepod data struct
-func (p *Pod) Inspect() (*libpod.PodInspect, error) {
- config := new(libpod.PodConfig)
- if err := libpod.JSONDeepCopy(p.remotepod.config, config); err != nil {
- return nil, err
- }
- inspectData := libpod.PodInspect{
- Config: config,
- State: p.remotepod.state,
- Containers: p.containers,
- }
- return &inspectData, nil
-}
-
-// StopPods stops pods based on the cli context from the remote client.
-func (r *LocalRuntime) StopPods(ctx context.Context, cli *cliconfig.PodStopValues) ([]string, []error) {
- var (
- stopErrs []error
- stopPods []string
- )
- var timeout int64 = -1
- if cli.Flags().Changed("timeout") {
- timeout = int64(cli.Timeout)
- }
- podIDs, err := iopodman.GetPodsByContext().Call(r.Conn, cli.All, cli.Latest, cli.InputArgs)
- if err != nil {
- return nil, []error{err}
- }
-
- for _, p := range podIDs {
- podID, err := iopodman.StopPod().Call(r.Conn, p, timeout)
- if err != nil {
- stopErrs = append(stopErrs, err)
- } else {
- stopPods = append(stopPods, podID)
- }
- }
- return stopPods, stopErrs
-}
-
-// KillPods kills pods over varlink for the remoteclient
-func (r *LocalRuntime) KillPods(ctx context.Context, cli *cliconfig.PodKillValues, signal uint) ([]string, []error) {
- var (
- killErrs []error
- killPods []string
- )
-
- podIDs, err := iopodman.GetPodsByContext().Call(r.Conn, cli.All, cli.Latest, cli.InputArgs)
- if err != nil {
- return nil, []error{err}
- }
-
- for _, p := range podIDs {
- podID, err := iopodman.KillPod().Call(r.Conn, p, int64(signal))
- if err != nil {
- killErrs = append(killErrs, err)
- } else {
- killPods = append(killPods, podID)
- }
- }
- return killPods, killErrs
-}
-
-// StartPods starts pods for the remote client over varlink
-func (r *LocalRuntime) StartPods(ctx context.Context, cli *cliconfig.PodStartValues) ([]string, []error) {
- var (
- startErrs []error
- startPods []string
- )
-
- podIDs, err := iopodman.GetPodsByContext().Call(r.Conn, cli.All, cli.Latest, cli.InputArgs)
- if err != nil {
- return nil, []error{err}
- }
-
- for _, p := range podIDs {
- podID, err := iopodman.StartPod().Call(r.Conn, p)
- if err != nil {
- startErrs = append(startErrs, err)
- } else {
- startPods = append(startPods, podID)
- }
- }
- return startPods, startErrs
-}
-
-// CreatePod creates a pod for the remote client over a varlink connection
-func (r *LocalRuntime) CreatePod(ctx context.Context, cli *cliconfig.PodCreateValues, labels map[string]string) (string, error) {
- var share []string
- if cli.Share != "" {
- share = strings.Split(cli.Share, ",")
- }
- pc := iopodman.PodCreate{
- Name: cli.Name,
- CgroupParent: cli.CgroupParent,
- Labels: labels,
- Share: share,
- Infra: cli.Infra,
- InfraCommand: cli.InfraCommand,
- InfraImage: cli.InfraCommand,
- Publish: cli.StringSlice("publish"),
- }
-
- return iopodman.CreatePod().Call(r.Conn, pc)
-}
-
-// GetAllPods is a helper function that gets all pods for the remote client
-func (r *LocalRuntime) GetAllPods() ([]*Pod, error) {
- var pods []*Pod
- podIDs, err := iopodman.GetPodsByContext().Call(r.Conn, true, false, []string{})
- if err != nil {
- return nil, err
- }
- for _, p := range podIDs {
- pod, err := r.LookupPod(p)
- if err != nil {
- return nil, err
- }
- pods = append(pods, pod)
- }
- return pods, nil
-}
-
-// This is a empty implementation stating remoteclient not yet implemented
-func (r *LocalRuntime) GetPodsWithFilters(filters string) ([]*Pod, error) {
- return nil, define.ErrNotImplemented
-}
-
-// GetPodsByStatus returns a slice of pods filtered by a libpod status
-func (r *LocalRuntime) GetPodsByStatus(statuses []string) ([]*Pod, error) {
- podIDs, err := iopodman.GetPodsByStatus().Call(r.Conn, statuses)
- if err != nil {
- return nil, err
- }
- pods := make([]*Pod, 0, len(podIDs))
- for _, p := range podIDs {
- pod, err := r.LookupPod(p)
- if err != nil {
- return nil, err
- }
- pods = append(pods, pod)
- }
- return pods, nil
-}
-
-// ID returns the id of a remote pod
-func (p *Pod) ID() string {
- return p.config.ID
-}
-
-// Name returns the name of the remote pod
-func (p *Pod) Name() string {
- return p.config.Name
-}
-
-// AllContainersByID returns a slice of a pod's container IDs
-func (p *Pod) AllContainersByID() ([]string, error) {
- var containerIDs []string
- for _, ctr := range p.containers {
- containerIDs = append(containerIDs, ctr.ID)
- }
- return containerIDs, nil
-}
-
-// AllContainers returns a pods containers
-func (p *Pod) AllContainers() ([]*Container, error) {
- var containers []*Container
- for _, ctr := range p.containers {
- container, err := p.Runtime.LookupContainer(ctr.ID)
- if err != nil {
- return nil, err
- }
- containers = append(containers, container)
- }
- return containers, nil
-}
-
-// Status ...
-func (p *Pod) Status() (map[string]define.ContainerStatus, error) {
- ctrs := make(map[string]define.ContainerStatus)
- for _, i := range p.containers {
- var status define.ContainerStatus
- switch i.State {
- case "exited":
- status = define.ContainerStateExited
- case "stopped":
- status = define.ContainerStateStopped
- case "running":
- status = define.ContainerStateRunning
- case "paused":
- status = define.ContainerStatePaused
- case "created":
- status = define.ContainerStateCreated
- case "define.red":
- status = define.ContainerStateConfigured
- default:
- status = define.ContainerStateUnknown
- }
- ctrs[i.ID] = status
- }
- return ctrs, nil
-}
-
-// GetPodStatus is a wrapper to get the string version of the status
-func (p *Pod) GetPodStatus() (string, error) {
- ctrStatuses, err := p.Status()
- if err != nil {
- return "", err
- }
- return shared.CreatePodStatusResults(ctrStatuses)
-}
-
-// InfraContainerID returns the ID of the infra container in a pod
-func (p *Pod) InfraContainerID() (string, error) {
- return p.state.InfraContainerID, nil
-}
-
-// CreatedTime returns the time the container was created as a time.Time
-func (p *Pod) CreatedTime() time.Time {
- return p.config.CreatedTime
-}
-
-// SharesPID ....
-func (p *Pod) SharesPID() bool {
- return p.config.UsePodPID
-}
-
-// SharesIPC returns whether containers in pod
-// default to use IPC namespace of first container in pod
-func (p *Pod) SharesIPC() bool {
- return p.config.UsePodIPC
-}
-
-// SharesNet returns whether containers in pod
-// default to use network namespace of first container in pod
-func (p *Pod) SharesNet() bool {
- return p.config.UsePodNet
-}
-
-// SharesMount returns whether containers in pod
-// default to use PID namespace of first container in pod
-func (p *Pod) SharesMount() bool {
- return p.config.UsePodMount
-}
-
-// SharesUser returns whether containers in pod
-// default to use user namespace of first container in pod
-func (p *Pod) SharesUser() bool {
- return p.config.UsePodUser
-}
-
-// SharesUTS returns whether containers in pod
-// default to use UTS namespace of first container in pod
-func (p *Pod) SharesUTS() bool {
- return p.config.UsePodUTS
-}
-
-// SharesCgroup returns whether containers in the pod will default to this pod's
-// cgroup instead of the default libpod parent
-func (p *Pod) SharesCgroup() bool {
- return p.config.UsePodCgroup
-}
-
-// CgroupParent returns the pod's CGroup parent
-func (p *Pod) CgroupParent() string {
- return p.config.CgroupParent
-}
-
-// PausePods pauses a pod using varlink and the remote client
-func (r *LocalRuntime) PausePods(c *cliconfig.PodPauseValues) ([]string, map[string]error, []error) {
- var (
- pauseIDs []string
- pauseErrors []error
- )
- containerErrors := make(map[string]error)
-
- pods, err := iopodman.GetPodsByContext().Call(r.Conn, c.All, c.Latest, c.InputArgs)
- if err != nil {
- pauseErrors = append(pauseErrors, err)
- return nil, containerErrors, pauseErrors
- }
- for _, pod := range pods {
- reply, err := iopodman.PausePod().Call(r.Conn, pod)
- if err != nil {
- pauseErrors = append(pauseErrors, err)
- continue
- }
- pauseIDs = append(pauseIDs, reply)
- }
- return pauseIDs, nil, pauseErrors
-}
-
-// UnpausePods unpauses a pod using varlink and the remote client
-func (r *LocalRuntime) UnpausePods(c *cliconfig.PodUnpauseValues) ([]string, map[string]error, []error) {
- var (
- unpauseIDs []string
- unpauseErrors []error
- )
- containerErrors := make(map[string]error)
-
- pods, err := iopodman.GetPodsByContext().Call(r.Conn, c.All, c.Latest, c.InputArgs)
- if err != nil {
- unpauseErrors = append(unpauseErrors, err)
- return nil, containerErrors, unpauseErrors
- }
- for _, pod := range pods {
- reply, err := iopodman.UnpausePod().Call(r.Conn, pod)
- if err != nil {
- unpauseErrors = append(unpauseErrors, err)
- continue
- }
- unpauseIDs = append(unpauseIDs, reply)
- }
- return unpauseIDs, nil, unpauseErrors
-}
-
-// RestartPods restarts pods using varlink and the remote client
-func (r *LocalRuntime) RestartPods(ctx context.Context, c *cliconfig.PodRestartValues) ([]string, map[string]error, []error) {
- var (
- restartIDs []string
- restartErrors []error
- )
- containerErrors := make(map[string]error)
-
- pods, err := iopodman.GetPodsByContext().Call(r.Conn, c.All, c.Latest, c.InputArgs)
- if err != nil {
- restartErrors = append(restartErrors, err)
- return nil, containerErrors, restartErrors
- }
- for _, pod := range pods {
- reply, err := iopodman.RestartPod().Call(r.Conn, pod)
- if err != nil {
- restartErrors = append(restartErrors, err)
- continue
- }
- restartIDs = append(restartIDs, reply)
- }
- return restartIDs, nil, restartErrors
-}
-
-// PodTop gets top statistics for a pod
-func (r *LocalRuntime) PodTop(c *cliconfig.PodTopValues, descriptors []string) ([]string, error) {
- var (
- latest bool
- podName string
- )
- if c.Latest {
- latest = true
- } else {
- podName = c.InputArgs[0]
- }
- return iopodman.TopPod().Call(r.Conn, podName, latest, descriptors)
-}
-
-// GetStatPods returns pods for use in pod stats
-func (r *LocalRuntime) GetStatPods(c *cliconfig.PodStatsValues) ([]*Pod, error) {
- var (
- pods []*Pod
- err error
- podIDs []string
- running bool
- )
-
- if len(c.InputArgs) > 0 || c.Latest || c.All {
- podIDs, err = iopodman.GetPodsByContext().Call(r.Conn, c.All, c.Latest, c.InputArgs)
- } else {
- podIDs, err = iopodman.GetPodsByContext().Call(r.Conn, true, false, []string{})
- running = true
- }
- if err != nil {
- return nil, err
- }
- for _, p := range podIDs {
- pod, err := r.Inspect(p)
- if err != nil {
- return nil, err
- }
- if running {
- status, err := pod.GetPodStatus()
- if err != nil {
- // if we cannot get the status of the pod, skip and move on
- continue
- }
- if strings.ToUpper(status) != "RUNNING" {
- // if the pod is not running, skip and move on as well
- continue
- }
- }
- pods = append(pods, pod)
- }
- return pods, nil
-}
-
-// GetPodStats returns the stats for each of its containers
-func (p *Pod) GetPodStats(previousContainerStats map[string]*libpod.ContainerStats) (map[string]*libpod.ContainerStats, error) {
- var (
- ok bool
- prevStat *libpod.ContainerStats
- )
- newContainerStats := make(map[string]*libpod.ContainerStats)
- containers, err := p.AllContainers()
- if err != nil {
- return nil, err
- }
- for _, c := range containers {
- if prevStat, ok = previousContainerStats[c.ID()]; !ok {
- prevStat = &libpod.ContainerStats{ContainerID: c.ID()}
- }
- cStats := iopodman.ContainerStats{
- Id: prevStat.ContainerID,
- Name: prevStat.Name,
- Cpu: prevStat.CPU,
- Cpu_nano: int64(prevStat.CPUNano),
- System_nano: int64(prevStat.SystemNano),
- Mem_usage: int64(prevStat.MemUsage),
- Mem_limit: int64(prevStat.MemLimit),
- Mem_perc: prevStat.MemPerc,
- Net_input: int64(prevStat.NetInput),
- Net_output: int64(prevStat.NetOutput),
- Block_input: int64(prevStat.BlockInput),
- Block_output: int64(prevStat.BlockOutput),
- Pids: int64(prevStat.PIDs),
- }
- stats, err := iopodman.GetContainerStatsWithHistory().Call(p.Runtime.Conn, cStats)
- if err != nil {
- return nil, err
- }
- newStats := varlinkapi.ContainerStatsToLibpodContainerStats(stats)
- // If the container wasn't running, don't include it
- // but also suppress the error
- if err != nil && errors.Cause(err) != define.ErrCtrStateInvalid { // nolint: govet
- return nil, err
- }
- if err == nil { // nolint: govet
- newContainerStats[c.ID()] = &newStats
- }
- }
- return newContainerStats, nil
-}
-
-// RemovePod removes a pod
-// If removeCtrs is specified, containers will be removed
-// Otherwise, a pod that is not empty will return an error and not be removed
-// If force is specified with removeCtrs, all containers will be stopped before
-// being removed
-// Otherwise, the pod will not be removed if any containers are running
-func (r *LocalRuntime) RemovePod(ctx context.Context, p *Pod, removeCtrs, force bool) error {
- _, err := iopodman.RemovePod().Call(r.Conn, p.ID(), force)
- if err != nil {
- return err
- }
- return nil
-}
-
-// PrunePods...
-func (r *LocalRuntime) PrunePods(ctx context.Context, cli *cliconfig.PodPruneValues) ([]string, map[string]error, error) {
- var (
- ok = []string{}
- failures = map[string]error{}
- )
- states := []string{define.PodStateStopped, define.PodStateExited}
- if cli.Force {
- states = append(states, define.PodStateRunning)
- }
-
- ids, err := iopodman.GetPodsByStatus().Call(r.Conn, states)
- if err != nil {
- return ok, failures, err
- }
- if len(ids) < 1 {
- return ok, failures, nil
- }
-
- for _, id := range ids {
- _, err := iopodman.RemovePod().Call(r.Conn, id, cli.Force)
- if err != nil {
- logrus.Debugf("Failed to remove pod %s: %s", id, err.Error())
- failures[id] = err
- } else {
- ok = append(ok, id)
- }
- }
- return ok, failures, nil
-}
-
-// PlayKubeYAML creates pods and containers from a kube YAML file
-func (r *LocalRuntime) PlayKubeYAML(ctx context.Context, c *cliconfig.KubePlayValues, yamlFile string) (*Pod, error) {
- return nil, define.ErrNotImplemented
-}
diff --git a/pkg/adapter/reset.go b/pkg/adapter/reset.go
deleted file mode 100644
index 0decc3d15..000000000
--- a/pkg/adapter/reset.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// +build !remoteclient
-
-package adapter
-
-import (
- "context"
-)
-
-// Reset the container storage back to initial states.
-// Removes all Pods, Containers, Images and Volumes.
-func (r *LocalRuntime) Reset() error {
- return r.Runtime.Reset(context.TODO())
-}
diff --git a/pkg/adapter/reset_remote.go b/pkg/adapter/reset_remote.go
deleted file mode 100644
index 284b54a17..000000000
--- a/pkg/adapter/reset_remote.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// +build remoteclient
-
-package adapter
-
-import (
- iopodman "github.com/containers/libpod/pkg/varlink"
-)
-
-// Info returns information for the host system and its components
-func (r RemoteRuntime) Reset() error {
- return iopodman.Reset().Call(r.Conn)
-}
diff --git a/pkg/adapter/runtime.go b/pkg/adapter/runtime.go
deleted file mode 100644
index 7a181e7e5..000000000
--- a/pkg/adapter/runtime.go
+++ /dev/null
@@ -1,477 +0,0 @@
-// +build !remoteclient
-
-package adapter
-
-import (
- "bufio"
- "context"
- "io"
- "io/ioutil"
- "os"
- "text/template"
-
- "github.com/containers/buildah"
- "github.com/containers/buildah/imagebuildah"
- "github.com/containers/buildah/pkg/formats"
- "github.com/containers/image/v5/docker/reference"
- "github.com/containers/image/v5/types"
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/cmd/podman/libpodruntime"
- "github.com/containers/libpod/cmd/podman/shared"
- "github.com/containers/libpod/libpod"
- "github.com/containers/libpod/libpod/define"
- "github.com/containers/libpod/libpod/events"
- "github.com/containers/libpod/libpod/image"
- "github.com/containers/libpod/pkg/rootless"
- "github.com/containers/libpod/pkg/util"
- "github.com/containers/storage/pkg/archive"
- "github.com/pkg/errors"
- v1 "k8s.io/api/core/v1"
-)
-
-// LocalRuntime describes a typical libpod runtime
-type LocalRuntime struct {
- *libpod.Runtime
- Remote bool
-}
-
-// ContainerImage ...
-type ContainerImage struct {
- *image.Image
-}
-
-// Container ...
-type Container struct {
- *libpod.Container
-}
-
-// Pod encapsulates the libpod.Pod structure, helps with remote vs. local
-type Pod struct {
- *libpod.Pod
-}
-
-// Volume ...
-type Volume struct {
- *libpod.Volume
-}
-
-// VolumeFilter is for filtering volumes on the client
-type VolumeFilter func(*Volume) bool
-
-// GetRuntimeNoStore returns a localruntime struct with an embedded runtime but
-// without a configured storage.
-func GetRuntimeNoStore(ctx context.Context, c *cliconfig.PodmanCommand) (*LocalRuntime, error) {
- runtime, err := libpodruntime.GetRuntimeNoStore(ctx, c)
- if err != nil {
- return nil, err
- }
- return getRuntime(runtime)
-}
-
-// GetRuntime returns a LocalRuntime struct with the actual runtime embedded in it
-func GetRuntime(ctx context.Context, c *cliconfig.PodmanCommand) (*LocalRuntime, error) {
- runtime, err := libpodruntime.GetRuntime(ctx, c)
- if err != nil {
- return nil, err
- }
- return getRuntime(runtime)
-}
-
-func getRuntime(runtime *libpod.Runtime) (*LocalRuntime, error) {
- return &LocalRuntime{
- Runtime: runtime,
- }, nil
-}
-
-// GetFilteredImages returns a slice of images in containerimages that are "filtered"
-func (r *LocalRuntime) GetFilteredImages(filters []string, rwOnly bool) ([]*ContainerImage, error) {
- images, err := r.ImageRuntime().GetImagesWithFilters(filters)
- if err != nil {
- return nil, err
- }
- return r.ImagestoContainerImages(images, rwOnly)
-}
-
-// GetImages returns a slice of images in containerimages
-func (r *LocalRuntime) GetImages() ([]*ContainerImage, error) {
- return r.getImages(false)
-}
-
-// GetRWImages returns a slice of read/write images in containerimages
-func (r *LocalRuntime) GetRWImages() ([]*ContainerImage, error) {
- return r.getImages(true)
-}
-
-func (r *LocalRuntime) getImages(rwOnly bool) ([]*ContainerImage, error) {
- images, err := r.Runtime.ImageRuntime().GetImages()
- if err != nil {
- return nil, err
- }
- return r.ImagestoContainerImages(images, rwOnly)
-}
-
-// ImagestoContainerImages converts the slice of *image.Image to a slice of
-// *ContainerImage. ReadOnly images are skipped when rwOnly is set.
-func (r *LocalRuntime) ImagestoContainerImages(images []*image.Image, rwOnly bool) ([]*ContainerImage, error) {
- var containerImages []*ContainerImage
- for _, i := range images {
- if rwOnly && i.IsReadOnly() {
- continue
- }
- containerImages = append(containerImages, &ContainerImage{i})
- }
- return containerImages, nil
-}
-
-// NewImageFromLocal returns a containerimage representation of a image from local storage
-func (r *LocalRuntime) NewImageFromLocal(name string) (*ContainerImage, error) {
- img, err := r.Runtime.ImageRuntime().NewFromLocal(name)
- if err != nil {
- return nil, err
- }
- return &ContainerImage{img}, nil
-}
-
-// ImageTree reutnrs an new image.Tree for the provided `imageOrID` and `whatrequires` flag
-func (r *LocalRuntime) ImageTree(imageOrID string, whatRequires bool) (string, error) {
- img, err := r.Runtime.ImageRuntime().NewFromLocal(imageOrID)
- if err != nil {
- return "", err
- }
- return img.GenerateTree(whatRequires)
-}
-
-// LoadFromArchiveReference calls into local storage to load an image from an archive
-func (r *LocalRuntime) LoadFromArchiveReference(ctx context.Context, srcRef types.ImageReference, signaturePolicyPath string, writer io.Writer) ([]*ContainerImage, error) {
- var containerImages []*ContainerImage
- imgs, err := r.Runtime.ImageRuntime().LoadFromArchiveReference(ctx, srcRef, signaturePolicyPath, writer)
- if err != nil {
- return nil, err
- }
- for _, i := range imgs {
- ci := ContainerImage{i}
- containerImages = append(containerImages, &ci)
- }
- return containerImages, nil
-}
-
-// New calls into local storage to look for an image in local storage or to pull it
-func (r *LocalRuntime) New(ctx context.Context, name, signaturePolicyPath, authfile string, writer io.Writer, dockeroptions *image.DockerRegistryOptions, signingoptions image.SigningOptions, label *string, pullType util.PullType) (*ContainerImage, error) {
- img, err := r.Runtime.ImageRuntime().New(ctx, name, signaturePolicyPath, authfile, writer, dockeroptions, signingoptions, label, pullType)
- if err != nil {
- return nil, err
- }
- return &ContainerImage{img}, nil
-}
-
-// RemoveImage calls into local storage and removes an image
-func (r *LocalRuntime) RemoveImage(ctx context.Context, img *ContainerImage, force bool) (*image.ImageDeleteResponse, error) {
- return r.Runtime.RemoveImage(ctx, img.Image, force)
-}
-
-// PruneImages is wrapper into PruneImages within the image pkg
-func (r *LocalRuntime) PruneImages(ctx context.Context, all bool, filter []string) ([]string, error) {
- return r.ImageRuntime().PruneImages(ctx, all, filter)
-}
-
-// Export is a wrapper to container export to a tarfile
-func (r *LocalRuntime) Export(name string, path string) error {
- ctr, err := r.Runtime.LookupContainer(name)
- if err != nil {
- return errors.Wrapf(err, "error looking up container %q", name)
- }
- return ctr.Export(path)
-}
-
-// Import is a wrapper to import a container image
-func (r *LocalRuntime) Import(ctx context.Context, source, reference string, changes []string, history string, quiet bool) (string, error) {
- return r.Runtime.Import(ctx, source, reference, changes, history, quiet)
-}
-
-// CreateVolume is a wrapper to create volumes
-func (r *LocalRuntime) CreateVolume(ctx context.Context, c *cliconfig.VolumeCreateValues, labels, opts map[string]string) (string, error) {
- var (
- options []libpod.VolumeCreateOption
- volName string
- )
-
- if len(c.InputArgs) > 0 {
- volName = c.InputArgs[0]
- options = append(options, libpod.WithVolumeName(volName))
- }
-
- if c.Flag("driver").Changed {
- options = append(options, libpod.WithVolumeDriver(c.Driver))
- }
-
- if len(labels) != 0 {
- options = append(options, libpod.WithVolumeLabels(labels))
- }
-
- if len(opts) != 0 {
- // We need to process -o for uid, gid
- parsedOptions, err := shared.ParseVolumeOptions(opts)
- if err != nil {
- return "", err
- }
- options = append(options, parsedOptions...)
- }
- newVolume, err := r.NewVolume(ctx, options...)
- if err != nil {
- return "", err
- }
- return newVolume.Name(), nil
-}
-
-// RemoveVolumes is a wrapper to remove volumes
-func (r *LocalRuntime) RemoveVolumes(ctx context.Context, c *cliconfig.VolumeRmValues) ([]string, map[string]error, error) {
- return shared.SharedRemoveVolumes(ctx, r.Runtime, c.InputArgs, c.All, c.Force)
-}
-
-// Push is a wrapper to push an image to a registry
-func (r *LocalRuntime) Push(ctx context.Context, srcName, destination, manifestMIMEType, authfile, digestfile, signaturePolicyPath string, writer io.Writer, forceCompress bool, signingOptions image.SigningOptions, dockerRegistryOptions *image.DockerRegistryOptions, additionalDockerArchiveTags []reference.NamedTagged) error {
- newImage, err := r.ImageRuntime().NewFromLocal(srcName)
- if err != nil {
- return err
- }
- return newImage.PushImageToHeuristicDestination(ctx, destination, manifestMIMEType, authfile, digestfile, signaturePolicyPath, writer, forceCompress, signingOptions, dockerRegistryOptions, nil)
-}
-
-// InspectVolumes returns a slice of volumes based on an arg list or --all
-func (r *LocalRuntime) InspectVolumes(ctx context.Context, c *cliconfig.VolumeInspectValues) ([]*libpod.InspectVolumeData, error) {
- var (
- volumes []*libpod.Volume
- err error
- )
-
- if c.All {
- volumes, err = r.GetAllVolumes()
- } else {
- for _, v := range c.InputArgs {
- vol, err := r.LookupVolume(v)
- if err != nil {
- return nil, err
- }
- volumes = append(volumes, vol)
- }
- }
- if err != nil {
- return nil, err
- }
-
- inspectVols := make([]*libpod.InspectVolumeData, 0, len(volumes))
- for _, vol := range volumes {
- inspectOut, err := vol.Inspect()
- if err != nil {
- return nil, errors.Wrapf(err, "error inspecting volume %s", vol.Name())
- }
- inspectVols = append(inspectVols, inspectOut)
- }
-
- return inspectVols, nil
-}
-
-// Volumes returns a slice of localruntime volumes
-func (r *LocalRuntime) Volumes(ctx context.Context) ([]*Volume, error) {
- vols, err := r.GetAllVolumes()
- if err != nil {
- return nil, err
- }
- return libpodVolumeToVolume(vols), nil
-}
-
-// libpodVolumeToVolume converts a slice of libpod volumes to a slice
-// of localruntime volumes (same as libpod)
-func libpodVolumeToVolume(volumes []*libpod.Volume) []*Volume {
- var vols []*Volume
- for _, v := range volumes {
- newVol := Volume{
- v,
- }
- vols = append(vols, &newVol)
- }
- return vols
-}
-
-// Build is the wrapper to build images
-func (r *LocalRuntime) Build(ctx context.Context, c *cliconfig.BuildValues, options imagebuildah.BuildOptions, dockerfiles []string) (string, reference.Canonical, error) {
-
- authfile := c.Authfile
- if len(c.Authfile) == 0 {
- authfile = os.Getenv("REGISTRY_AUTH_FILE")
- }
-
- options.SystemContext.AuthFilePath = authfile
-
- if c.GlobalFlags.Runtime != "" {
- options.Runtime = c.GlobalFlags.Runtime
- } else {
- options.Runtime = r.GetOCIRuntimePath()
- }
-
- if c.Quiet {
- options.ReportWriter = ioutil.Discard
- }
-
- if rootless.IsRootless() {
- options.Isolation = buildah.IsolationOCIRootless
- }
-
- return r.Runtime.Build(ctx, options, dockerfiles...)
-}
-
-// PruneVolumes is a wrapper function for libpod PruneVolumes
-func (r *LocalRuntime) PruneVolumes(ctx context.Context) ([]string, []error) {
- var (
- vids []string
- errs []error
- )
- reports, err := r.Runtime.PruneVolumes(ctx)
- if err != nil {
- errs = append(errs, err)
- return vids, errs
- }
- for k, v := range reports {
- if v == nil {
- vids = append(vids, k)
- } else {
- errs = append(errs, v)
- }
- }
- return vids, errs
-}
-
-// SaveImage is a wrapper function for saving an image to the local filesystem
-func (r *LocalRuntime) SaveImage(ctx context.Context, c *cliconfig.SaveValues) error {
- source := c.InputArgs[0]
- additionalTags := c.InputArgs[1:]
-
- newImage, err := r.Runtime.ImageRuntime().NewFromLocal(source)
- if err != nil {
- return err
- }
- return newImage.Save(ctx, source, c.Format, c.Output, additionalTags, c.Quiet, c.Compress)
-}
-
-// LoadImage is a wrapper function for libpod LoadImage
-func (r *LocalRuntime) LoadImage(ctx context.Context, name string, cli *cliconfig.LoadValues) (string, error) {
- var (
- writer io.Writer
- )
- if !cli.Quiet {
- writer = os.Stderr
- }
- return r.Runtime.LoadImage(ctx, name, cli.Input, writer, cli.SignaturePolicy)
-}
-
-// IsImageNotFound checks if the error indicates that no image was found.
-func IsImageNotFound(err error) bool {
- return errors.Cause(err) == image.ErrNoSuchImage
-}
-
-// HealthCheck is a wrapper to same named function in libpod
-func (r *LocalRuntime) HealthCheck(c *cliconfig.HealthCheckValues) (string, error) {
- output := "unhealthy"
- status, err := r.Runtime.HealthCheck(c.InputArgs[0])
- if status == libpod.HealthCheckSuccess {
- output = "healthy"
- }
- return output, err
-}
-
-// Events is a wrapper to libpod to obtain libpod/podman events
-func (r *LocalRuntime) Events(c *cliconfig.EventValues) error {
- var (
- fromStart bool
- eventsError error
- )
- var tmpl *template.Template
- if c.Format != formats.JSONString {
- template, err := template.New("events").Parse(c.Format)
- if err != nil {
- return err
- }
- tmpl = template
- }
- if len(c.Since) > 0 || len(c.Until) > 0 {
- fromStart = true
- }
- eventChannel := make(chan *events.Event)
- go func() {
- readOpts := events.ReadOptions{FromStart: fromStart, Stream: c.Stream, Filters: c.Filter, EventChannel: eventChannel, Since: c.Since, Until: c.Until}
- eventsError = r.Runtime.Events(readOpts)
- }()
-
- if eventsError != nil {
- return eventsError
- }
- w := bufio.NewWriter(os.Stdout)
- for event := range eventChannel {
- switch {
- case c.Format == formats.JSONString:
- jsonStr, err := event.ToJSONString()
- if err != nil {
- return errors.Wrapf(err, "unable to format json")
- }
- if _, err := w.Write([]byte(jsonStr)); err != nil {
- return err
- }
- case len(c.Format) > 0:
- if err := tmpl.Execute(w, event); err != nil {
- return err
- }
- default:
- if _, err := w.Write([]byte(event.ToHumanReadable())); err != nil {
- return err
- }
- }
- if _, err := w.Write([]byte("\n")); err != nil {
- return err
- }
- if err := w.Flush(); err != nil {
- return err
- }
- }
- return nil
-}
-
-// Diff shows the difference in two objects
-func (r *LocalRuntime) Diff(c *cliconfig.DiffValues, to string) ([]archive.Change, error) {
- return r.Runtime.GetDiff("", to)
-}
-
-// GenerateKube creates kubernetes email from containers and pods
-func (r *LocalRuntime) GenerateKube(c *cliconfig.GenerateKubeValues) (*v1.Pod, *v1.Service, error) {
- return shared.GenerateKube(c.InputArgs[0], c.Service, r.Runtime)
-}
-
-// GetPodsByStatus returns a slice of pods filtered by a libpod status
-func (r *LocalRuntime) GetPodsByStatus(statuses []string) ([]*libpod.Pod, error) {
-
- filterFunc := func(p *libpod.Pod) bool {
- state, _ := shared.GetPodStatus(p)
- for _, status := range statuses {
- if state == status {
- return true
- }
- }
- return false
- }
-
- pods, err := r.Runtime.Pods(filterFunc)
- if err != nil {
- return nil, err
- }
-
- return pods, nil
-}
-
-// GetVersion is an alias to satisfy interface{}
-func (r *LocalRuntime) GetVersion() (define.Version, error) {
- return define.GetVersion()
-}
-
-// RemoteEndpoint resolve interface requirement
-func (r *LocalRuntime) RemoteEndpoint() (*Endpoint, error) {
- return nil, errors.New("RemoteEndpoint() not implemented for local connection")
-}
diff --git a/pkg/adapter/runtime_remote.go b/pkg/adapter/runtime_remote.go
deleted file mode 100644
index c511b70f1..000000000
--- a/pkg/adapter/runtime_remote.go
+++ /dev/null
@@ -1,1108 +0,0 @@
-// +build remoteclient
-
-package adapter
-
-import (
- "bufio"
- "context"
- "encoding/json"
- "fmt"
- "io"
- "io/ioutil"
- "os"
- "path/filepath"
- "strings"
- "text/template"
- "time"
-
- "github.com/containers/buildah/imagebuildah"
- "github.com/containers/buildah/pkg/formats"
- "github.com/containers/common/pkg/config"
- "github.com/containers/image/v5/docker/reference"
- "github.com/containers/image/v5/types"
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/containers/libpod/cmd/podman/remoteclientconfig"
- "github.com/containers/libpod/libpod"
- "github.com/containers/libpod/libpod/define"
- "github.com/containers/libpod/libpod/events"
- "github.com/containers/libpod/libpod/image"
- "github.com/containers/libpod/pkg/util"
- iopodman "github.com/containers/libpod/pkg/varlink"
- "github.com/containers/libpod/utils"
- "github.com/containers/storage/pkg/archive"
- "github.com/opencontainers/go-digest"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- "github.com/varlink/go/varlink"
- v1 "k8s.io/api/core/v1"
-)
-
-// ImageRuntime is wrapper for image runtime
-type RemoteImageRuntime struct{}
-
-// RemoteRuntime describes a wrapper runtime struct
-type RemoteRuntime struct {
- Conn *varlink.Connection
- Remote bool
- cmd cliconfig.MainFlags
- config io.Reader
-}
-
-// LocalRuntime describes a typical libpod runtime
-type LocalRuntime struct {
- *RemoteRuntime
-}
-
-// GetRuntimeNoStore returns a LocalRuntime struct with the actual runtime embedded in it
-// The nostore is ignored
-func GetRuntimeNoStore(ctx context.Context, c *cliconfig.PodmanCommand) (*LocalRuntime, error) {
- return GetRuntime(ctx, c)
-}
-
-// GetRuntime returns a LocalRuntime struct with the actual runtime embedded in it
-func GetRuntime(ctx context.Context, c *cliconfig.PodmanCommand) (*LocalRuntime, error) {
- var (
- customConfig bool
- err error
- f *os.File
- )
- runtime := RemoteRuntime{
- Remote: true,
- cmd: c.GlobalFlags,
- }
- configPath := remoteclientconfig.GetConfigFilePath()
- // Check if the basedir for configPath exists and if not, create it.
- if _, err := os.Stat(filepath.Dir(configPath)); os.IsNotExist(err) {
- if mkdirErr := os.MkdirAll(filepath.Dir(configPath), 0750); mkdirErr != nil {
- return nil, mkdirErr
- }
- }
- if len(c.GlobalFlags.RemoteConfigFilePath) > 0 {
- configPath = c.GlobalFlags.RemoteConfigFilePath
- customConfig = true
- }
-
- f, err = os.Open(configPath)
- if err != nil {
- // If user does not explicitly provide a configuration file path and we cannot
- // find a default, no error should occur.
- if os.IsNotExist(err) && !customConfig {
- logrus.Debugf("unable to load configuration file at %s", configPath)
- runtime.config = nil
- } else {
- return nil, errors.Wrapf(err, "unable to load configuration file at %s", configPath)
- }
- } else {
- // create the io reader for the remote client
- runtime.config = bufio.NewReader(f)
- }
- conn, err := runtime.Connect()
- if err != nil {
- return nil, err
- }
- runtime.Conn = conn
- return &LocalRuntime{
- &runtime,
- }, nil
-}
-
-// DeferredShutdown is a bogus wrapper for compaat with the libpod
-// runtime and should only be run when a defer is being used
-func (r RemoteRuntime) DeferredShutdown(force bool) {
- if err := r.Shutdown(force); err != nil {
- logrus.Error("unable to shutdown runtime")
- }
-}
-
-// Containers is a bogus wrapper for compat with the libpod runtime
-type ContainersConfig struct {
- // CGroupManager is the CGroup Manager to use
- // Valid values are "cgroupfs" and "systemd"
- CgroupManager string
-}
-
-// RuntimeConfig is a bogus wrapper for compat with the libpod runtime
-type RuntimeConfig struct {
- Containers ContainersConfig
-}
-
-// Shutdown is a bogus wrapper for compat with the libpod runtime
-func (r *RemoteRuntime) GetConfig() (*config.Config, error) {
- return nil, nil
-}
-
-// Shutdown is a bogus wrapper for compat with the libpod runtime
-func (r RemoteRuntime) Shutdown(force bool) error {
- return nil
-}
-
-// ContainerImage
-type ContainerImage struct {
- remoteImage
-}
-
-type remoteImage struct {
- ID string
- Labels map[string]string
- RepoTags []string
- RepoDigests []string
- Parent string
- Size int64
- Created time.Time
- InputName string
- Names []string
- Digest digest.Digest
- Digests []digest.Digest
- isParent bool
- Runtime *LocalRuntime
- TopLayer string
- ReadOnly bool
- NamesHistory []string
-}
-
-// Container ...
-type Container struct {
- remoteContainer
-}
-
-// remoteContainer ....
-type remoteContainer struct {
- Runtime *LocalRuntime
- config *libpod.ContainerConfig
- state *libpod.ContainerState
-}
-
-// Pod ...
-type Pod struct {
- remotepod
-}
-
-type remotepod struct {
- config *libpod.PodConfig
- state *libpod.PodInspectState
- containers []libpod.PodContainerInfo // nolint: structcheck
- Runtime *LocalRuntime
-}
-
-type VolumeFilter func(*Volume) bool
-
-// Volume is embed for libpod volumes
-type Volume struct {
- remoteVolume
-}
-
-type remoteVolume struct {
- Runtime *LocalRuntime
- config *libpod.VolumeConfig
-}
-
-// GetImages returns a slice of containerimages over a varlink connection
-func (r *LocalRuntime) GetImages() ([]*ContainerImage, error) {
- return r.getImages(false)
-}
-
-// GetRWImages returns a slice of read/write containerimages over a varlink connection
-func (r *LocalRuntime) GetRWImages() ([]*ContainerImage, error) {
- return r.getImages(true)
-}
-
-func (r *LocalRuntime) GetFilteredImages(filters []string, rwOnly bool) ([]*ContainerImage, error) {
- if len(filters) > 0 {
- return nil, errors.Wrap(define.ErrNotImplemented, "filtering images is not supported on the remote client")
- }
- var newImages []*ContainerImage
- images, err := iopodman.ListImages().Call(r.Conn)
- if err != nil {
- return nil, err
- }
- for _, i := range images {
- if rwOnly && i.ReadOnly {
- continue
- }
- name := i.Id
- if len(i.RepoTags) > 1 {
- name = i.RepoTags[0]
- }
- newImage, err := imageInListToContainerImage(i, name, r)
- if err != nil {
- return nil, err
- }
- newImages = append(newImages, newImage)
- }
- return newImages, nil
-}
-func (r *LocalRuntime) getImages(rwOnly bool) ([]*ContainerImage, error) {
- var newImages []*ContainerImage
- images, err := iopodman.ListImages().Call(r.Conn)
- if err != nil {
- return nil, err
- }
- for _, i := range images {
- if rwOnly && i.ReadOnly {
- continue
- }
- name := i.Id
- if len(i.RepoTags) > 1 {
- name = i.RepoTags[0]
- }
- newImage, err := imageInListToContainerImage(i, name, r)
- if err != nil {
- return nil, err
- }
- newImages = append(newImages, newImage)
- }
- return newImages, nil
-}
-
-func imageInListToContainerImage(i iopodman.Image, name string, runtime *LocalRuntime) (*ContainerImage, error) {
- created, err := time.ParseInLocation(time.RFC3339, i.Created, time.UTC)
- if err != nil {
- return nil, err
- }
- var digests []digest.Digest
- for _, d := range i.Digests {
- digests = append(digests, digest.Digest(d))
- }
- ri := remoteImage{
- InputName: name,
- ID: i.Id,
- Digest: digest.Digest(i.Digest),
- Digests: digests,
- Labels: i.Labels,
- RepoTags: i.RepoTags,
- RepoDigests: i.RepoTags,
- Parent: i.ParentId,
- Size: i.Size,
- Created: created,
- Names: i.RepoTags,
- isParent: i.IsParent,
- Runtime: runtime,
- TopLayer: i.TopLayer,
- ReadOnly: i.ReadOnly,
- NamesHistory: i.History,
- }
- return &ContainerImage{ri}, nil
-}
-
-// NewImageFromLocal returns a container image representation of a image over varlink
-func (r *LocalRuntime) NewImageFromLocal(name string) (*ContainerImage, error) {
- img, err := iopodman.GetImage().Call(r.Conn, name)
- if err != nil {
- return nil, err
- }
- return imageInListToContainerImage(img, name, r)
-
-}
-
-// LoadFromArchiveReference creates an image from a local archive
-func (r *LocalRuntime) LoadFromArchiveReference(ctx context.Context, srcRef types.ImageReference, signaturePolicyPath string, writer io.Writer) ([]*ContainerImage, error) {
- var iid string
- creds := iopodman.AuthConfig{}
- reply, err := iopodman.PullImage().Send(r.Conn, varlink.More, srcRef.DockerReference().String(), creds)
- if err != nil {
- return nil, err
- }
-
- for {
- responses, flags, err := reply()
- if err != nil {
- return nil, err
- }
- for _, line := range responses.Logs {
- fmt.Print(line)
- }
- iid = responses.Id
- if flags&varlink.Continues == 0 {
- break
- }
- }
-
- newImage, err := r.NewImageFromLocal(iid)
- if err != nil {
- return nil, err
- }
- return []*ContainerImage{newImage}, nil
-}
-
-// New calls into local storage to look for an image in local storage or to pull it
-func (r *LocalRuntime) New(ctx context.Context, name, signaturePolicyPath, authfile string, writer io.Writer, dockeroptions *image.DockerRegistryOptions, signingoptions image.SigningOptions, label *string, pullType util.PullType) (*ContainerImage, error) {
- var iid string
- if label != nil {
- return nil, errors.New("the remote client function does not support checking a remote image for a label")
- }
- creds := iopodman.AuthConfig{}
- if dockeroptions.DockerRegistryCreds != nil {
- creds.Username = dockeroptions.DockerRegistryCreds.Username
- creds.Password = dockeroptions.DockerRegistryCreds.Password
- }
- reply, err := iopodman.PullImage().Send(r.Conn, varlink.More, name, creds)
- if err != nil {
- return nil, err
- }
- for {
- responses, flags, err := reply()
- if err != nil {
- return nil, err
- }
- for _, line := range responses.Logs {
- fmt.Print(line)
- }
- iid = responses.Id
- if flags&varlink.Continues == 0 {
- break
- }
- }
- newImage, err := r.NewImageFromLocal(iid)
- if err != nil {
- return nil, err
- }
- return newImage, nil
-}
-
-func (r *LocalRuntime) ImageTree(imageOrID string, whatRequires bool) (string, error) {
- return iopodman.ImageTree().Call(r.Conn, imageOrID, whatRequires)
-}
-
-// IsParent goes through the layers in the store and checks if i.TopLayer is
-// the parent of any other layer in store. Double check that image with that
-// layer exists as well.
-func (ci *ContainerImage) IsParent(context.Context) (bool, error) {
- return ci.remoteImage.isParent, nil
-}
-
-// ID returns the image ID as a string
-func (ci *ContainerImage) ID() string {
- return ci.remoteImage.ID
-}
-
-// Names returns a string array of names associated with the image
-func (ci *ContainerImage) Names() []string {
- return ci.remoteImage.Names
-}
-
-// NamesHistory returns a string array of names previously associated with the image
-func (ci *ContainerImage) NamesHistory() []string {
- return ci.remoteImage.NamesHistory
-}
-
-// Created returns the time the image was created
-func (ci *ContainerImage) Created() time.Time {
- return ci.remoteImage.Created
-}
-
-// IsReadOnly returns whether the image is ReadOnly
-func (ci *ContainerImage) IsReadOnly() bool {
- return ci.remoteImage.ReadOnly
-}
-
-// Size returns the size of the image
-func (ci *ContainerImage) Size(ctx context.Context) (*uint64, error) {
- usize := uint64(ci.remoteImage.Size)
- return &usize, nil
-}
-
-// Digest returns the image's digest
-func (ci *ContainerImage) Digest() digest.Digest {
- return ci.remoteImage.Digest
-}
-
-// Digests returns the image's digests
-func (ci *ContainerImage) Digests() []digest.Digest {
- return append([]digest.Digest{}, ci.remoteImage.Digests...)
-}
-
-// Labels returns a map of the image's labels
-func (ci *ContainerImage) Labels(ctx context.Context) (map[string]string, error) {
- return ci.remoteImage.Labels, nil
-}
-
-// Dangling returns a bool if the image is "dangling"
-func (ci *ContainerImage) Dangling() bool {
- return len(ci.Names()) == 0
-}
-
-// TopLayer returns an images top layer as a string
-func (ci *ContainerImage) TopLayer() string {
- return ci.remoteImage.TopLayer
-}
-
-// TagImage ...
-func (ci *ContainerImage) TagImage(tag string) error {
- _, err := iopodman.TagImage().Call(ci.Runtime.Conn, ci.ID(), tag)
- return err
-}
-
-// UntagImage removes a single tag from an image
-func (ci *ContainerImage) UntagImage(tag string) error {
- _, err := iopodman.UntagImage().Call(ci.Runtime.Conn, ci.ID(), tag)
- return err
-}
-
-// RemoveImage calls varlink to remove an image
-func (r *LocalRuntime) RemoveImage(ctx context.Context, img *ContainerImage, force bool) (*image.ImageDeleteResponse, error) {
- ir := image.ImageDeleteResponse{}
- response, err := iopodman.RemoveImageWithResponse().Call(r.Conn, img.InputName, force)
- if err != nil {
- return nil, err
- }
- ir.Deleted = response.Deleted
- ir.Untagged = append(ir.Untagged, response.Untagged...)
- return &ir, nil
-}
-
-// History returns the history of an image and its layers
-func (ci *ContainerImage) History(ctx context.Context) ([]*image.History, error) {
- var imageHistories []*image.History
-
- reply, err := iopodman.HistoryImage().Call(ci.Runtime.Conn, ci.InputName)
- if err != nil {
- return nil, err
- }
- for _, h := range reply {
- created, err := time.ParseInLocation(time.RFC3339, h.Created, time.UTC)
- if err != nil {
- return nil, err
- }
- ih := image.History{
- ID: h.Id,
- Created: &created,
- CreatedBy: h.CreatedBy,
- Size: h.Size,
- Comment: h.Comment,
- }
- imageHistories = append(imageHistories, &ih)
- }
- return imageHistories, nil
-}
-
-// PruneImages is the wrapper call for a remote-client to prune images
-func (r *LocalRuntime) PruneImages(ctx context.Context, all bool, filter []string) ([]string, error) {
- return iopodman.ImagesPrune().Call(r.Conn, all, filter)
-}
-
-// Export is a wrapper to container export to a tarfile
-func (r *LocalRuntime) Export(name string, path string) error {
- tempPath, err := iopodman.ExportContainer().Call(r.Conn, name, "")
- if err != nil {
- return err
- }
- return r.GetFileFromRemoteHost(tempPath, path, true)
-}
-
-func (r *LocalRuntime) GetFileFromRemoteHost(remoteFilePath, outputPath string, delete bool) error {
- outputFile, err := os.Create(outputPath)
- if err != nil {
- return err
- }
- defer outputFile.Close()
-
- writer := bufio.NewWriter(outputFile)
- defer writer.Flush()
-
- reply, err := iopodman.ReceiveFile().Send(r.Conn, varlink.Upgrade, remoteFilePath, delete)
- if err != nil {
- return err
- }
-
- length, _, err := reply()
- if err != nil {
- return errors.Wrap(err, "unable to get file length for transfer")
- }
-
- reader := r.Conn.Reader
- if _, err := io.CopyN(writer, reader, length); err != nil {
- return errors.Wrap(err, "file transfer failed")
- }
- return nil
-}
-
-// Import implements the remote calls required to import a container image to the store
-func (r *LocalRuntime) Import(ctx context.Context, source, reference string, changes []string, history string, quiet bool) (string, error) {
- // First we send the file to the host
- tempFile, err := r.SendFileOverVarlink(source)
- if err != nil {
- return "", err
- }
- return iopodman.ImportImage().Call(r.Conn, strings.TrimRight(tempFile, ":"), reference, history, changes, true)
-}
-
-func (r *LocalRuntime) Build(ctx context.Context, c *cliconfig.BuildValues, options imagebuildah.BuildOptions, dockerfiles []string) (string, reference.Canonical, error) {
- buildOptions := iopodman.BuildOptions{
- AddHosts: options.CommonBuildOpts.AddHost,
- CgroupParent: options.CommonBuildOpts.CgroupParent,
- CpuPeriod: int64(options.CommonBuildOpts.CPUPeriod),
- CpuQuota: options.CommonBuildOpts.CPUQuota,
- CpuShares: int64(options.CommonBuildOpts.CPUShares),
- CpusetCpus: options.CommonBuildOpts.CPUSetMems,
- CpusetMems: options.CommonBuildOpts.CPUSetMems,
- Memory: options.CommonBuildOpts.Memory,
- MemorySwap: options.CommonBuildOpts.MemorySwap,
- ShmSize: options.CommonBuildOpts.ShmSize,
- Ulimit: options.CommonBuildOpts.Ulimit,
- Volume: options.CommonBuildOpts.Volumes,
- }
- buildinfo := iopodman.BuildInfo{
- // Err: string(options.Err),
- // Out:
- // ReportWriter:
- Architecture: options.Architecture,
- AddCapabilities: options.AddCapabilities,
- AdditionalTags: options.AdditionalTags,
- Annotations: options.Annotations,
- BuildArgs: options.Args,
- BuildOptions: buildOptions,
- CniConfigDir: options.CNIConfigDir,
- CniPluginDir: options.CNIPluginPath,
- Compression: string(options.Compression),
- Devices: options.Devices,
- DefaultsMountFilePath: options.DefaultMountsFilePath,
- Dockerfiles: dockerfiles,
- DropCapabilities: options.DropCapabilities,
- ForceRmIntermediateCtrs: options.ForceRmIntermediateCtrs,
- Iidfile: options.IIDFile,
- Label: options.Labels,
- Layers: options.Layers,
- // NamespaceOptions: options.NamespaceOptions,
- Nocache: options.NoCache,
- Os: options.OS,
- Output: options.Output,
- OutputFormat: options.OutputFormat,
- PullPolicy: options.PullPolicy.String(),
- Quiet: options.Quiet,
- RemoteIntermediateCtrs: options.RemoveIntermediateCtrs,
- RuntimeArgs: options.RuntimeArgs,
- SignBy: options.SignBy,
- Squash: options.Squash,
- Target: options.Target,
- TransientMounts: options.TransientMounts,
- }
- // tar the file
- outputFile, err := ioutil.TempFile("", "varlink_tar_send")
- if err != nil {
- return "", nil, err
- }
- defer outputFile.Close()
- defer os.Remove(outputFile.Name())
-
- // Create the tarball of the context dir to a tempfile
- if err := utils.TarToFilesystem(options.ContextDirectory, outputFile); err != nil {
- return "", nil, err
- }
- // Send the context dir tarball over varlink.
- tempFile, err := r.SendFileOverVarlink(outputFile.Name())
- if err != nil {
- return "", nil, err
- }
- buildinfo.ContextDir = tempFile
-
- reply, err := iopodman.BuildImage().Send(r.Conn, varlink.More, buildinfo)
- if err != nil {
- return "", nil, err
- }
-
- for {
- responses, flags, err := reply()
- if err != nil {
- return "", nil, err
- }
- for _, line := range responses.Logs {
- fmt.Print(line)
- }
- if flags&varlink.Continues == 0 {
- break
- }
- }
- return "", nil, err
-}
-
-// SendFileOverVarlink sends a file over varlink in an upgraded connection
-func (r *LocalRuntime) SendFileOverVarlink(source string) (string, error) {
- fs, err := os.Open(source)
- if err != nil {
- return "", err
- }
-
- fileInfo, err := fs.Stat()
- if err != nil {
- return "", err
- }
- logrus.Debugf("sending %s over varlink connection", source)
- reply, err := iopodman.SendFile().Send(r.Conn, varlink.Upgrade, "", fileInfo.Size())
- if err != nil {
- return "", err
- }
- _, _, err = reply()
- if err != nil {
- return "", err
- }
-
- reader := bufio.NewReader(fs)
- _, err = reader.WriteTo(r.Conn.Writer)
- if err != nil {
- return "", err
- }
- logrus.Debugf("file transfer complete for %s", source)
- r.Conn.Writer.Flush()
-
- // All was sent, wait for the ACK from the server
- tempFile, err := r.Conn.Reader.ReadString(':')
- if err != nil {
- return "", err
- }
-
- // r.Conn is kaput at this point due to the upgrade
- if err := r.RemoteRuntime.RefreshConnection(); err != nil {
- return "", err
-
- }
-
- return strings.Replace(tempFile, ":", "", -1), nil
-}
-
-// GetAllVolumes retrieves all the volumes
-func (r *LocalRuntime) GetAllVolumes() ([]*libpod.Volume, error) {
- return nil, define.ErrNotImplemented
-}
-
-// RemoveVolume removes a volumes
-func (r *LocalRuntime) RemoveVolume(ctx context.Context, v *libpod.Volume, force, prune bool) error {
- return define.ErrNotImplemented
-}
-
-// GetContainers retrieves all containers from the state
-// Filters can be provided which will determine what containers are included in
-// the output. Multiple filters are handled by ANDing their output, so only
-// containers matching all filters are returned
-func (r *LocalRuntime) GetContainers(filters ...libpod.ContainerFilter) ([]*libpod.Container, error) {
- return nil, define.ErrNotImplemented
-}
-
-// RemoveContainer removes the given container
-// If force is specified, the container will be stopped first
-// Otherwise, RemoveContainer will return an error if the container is running
-func (r *LocalRuntime) RemoveContainer(ctx context.Context, c *libpod.Container, force, volumes bool) error {
- return define.ErrNotImplemented
-}
-
-// CreateVolume creates a volume over a varlink connection for the remote client
-func (r *LocalRuntime) CreateVolume(ctx context.Context, c *cliconfig.VolumeCreateValues, labels, opts map[string]string) (string, error) {
- cvOpts := iopodman.VolumeCreateOpts{
- Options: opts,
- Labels: labels,
- }
- if len(c.InputArgs) > 0 {
- cvOpts.VolumeName = c.InputArgs[0]
- }
-
- if c.Flag("driver").Changed {
- cvOpts.Driver = c.Driver
- }
-
- return iopodman.VolumeCreate().Call(r.Conn, cvOpts)
-}
-
-// RemoveVolumes removes volumes over a varlink connection for the remote client
-func (r *LocalRuntime) RemoveVolumes(ctx context.Context, c *cliconfig.VolumeRmValues) ([]string, map[string]error, error) {
- rmOpts := iopodman.VolumeRemoveOpts{
- All: c.All,
- Force: c.Force,
- Volumes: c.InputArgs,
- }
- success, failures, err := iopodman.VolumeRemove().Call(r.Conn, rmOpts)
- stringsToErrors := make(map[string]error)
- for k, v := range failures {
- stringsToErrors[k] = errors.New(v)
- }
- return success, stringsToErrors, err
-}
-
-func (r *LocalRuntime) Push(ctx context.Context, srcName, destination, manifestMIMEType, authfile, digestfile, signaturePolicyPath string, writer io.Writer, forceCompress bool, signingOptions image.SigningOptions, dockerRegistryOptions *image.DockerRegistryOptions, additionalDockerArchiveTags []reference.NamedTagged) error {
-
- reply, err := iopodman.PushImage().Send(r.Conn, varlink.More, srcName, destination, forceCompress, manifestMIMEType, signingOptions.RemoveSignatures, signingOptions.SignBy)
- if err != nil {
- return err
- }
- for {
- responses, flags, err := reply()
- if err != nil {
- return err
- }
- for _, line := range responses.Logs {
- fmt.Print(line)
- }
- if flags&varlink.Continues == 0 {
- break
- }
- }
-
- return err
-}
-
-// InspectVolumes returns a slice of volumes based on an arg list or --all
-func (r *LocalRuntime) InspectVolumes(ctx context.Context, c *cliconfig.VolumeInspectValues) ([]*libpod.InspectVolumeData, error) {
- var (
- inspectData []*libpod.InspectVolumeData
- volumes []string
- )
-
- if c.All {
- allVolumes, err := r.Volumes(ctx)
- if err != nil {
- return nil, err
- }
- for _, vol := range allVolumes {
- volumes = append(volumes, vol.Name())
- }
- } else {
- volumes = append(volumes, c.InputArgs...)
- }
-
- for _, vol := range volumes {
- jsonString, err := iopodman.InspectVolume().Call(r.Conn, vol)
- if err != nil {
- return nil, err
- }
- inspectJSON := new(libpod.InspectVolumeData)
- if err := json.Unmarshal([]byte(jsonString), inspectJSON); err != nil {
- return nil, errors.Wrapf(err, "error unmarshalling inspect JSON for volume %s", vol)
- }
- inspectData = append(inspectData, inspectJSON)
- }
-
- return inspectData, nil
-}
-
-// Volumes returns a slice of adapter.volumes based on information about libpod
-// volumes over a varlink connection
-func (r *LocalRuntime) Volumes(ctx context.Context) ([]*Volume, error) {
- reply, err := iopodman.GetVolumes().Call(r.Conn, []string{}, true)
- if err != nil {
- return nil, err
- }
- return varlinkVolumeToVolume(r, reply), nil
-}
-
-func varlinkVolumeToVolume(r *LocalRuntime, volumes []iopodman.Volume) []*Volume {
- var vols []*Volume
- for _, v := range volumes {
- volumeConfig := libpod.VolumeConfig{
- Name: v.Name,
- Labels: v.Labels,
- MountPoint: v.MountPoint,
- Driver: v.Driver,
- Options: v.Options,
- }
- n := remoteVolume{
- Runtime: r,
- config: &volumeConfig,
- }
- newVol := Volume{
- n,
- }
- vols = append(vols, &newVol)
- }
- return vols
-}
-
-// PruneVolumes removes all unused volumes from the remote system
-func (r *LocalRuntime) PruneVolumes(ctx context.Context) ([]string, []error) {
- var errs []error
- prunedNames, prunedErrors, err := iopodman.VolumesPrune().Call(r.Conn)
- if err != nil {
- return []string{}, []error{err}
- }
- // We need to transform the string results of the error into actual error types
- for _, e := range prunedErrors {
- errs = append(errs, errors.New(e))
- }
- return prunedNames, errs
-}
-
-// SaveImage is a wrapper function for saving an image to the local filesystem
-func (r *LocalRuntime) SaveImage(ctx context.Context, c *cliconfig.SaveValues) error {
- source := c.InputArgs[0]
- additionalTags := c.InputArgs[1:]
-
- options := iopodman.ImageSaveOptions{
- Name: source,
- Format: c.Format,
- Output: c.Output,
- MoreTags: additionalTags,
- Quiet: c.Quiet,
- Compress: c.Compress,
- }
- reply, err := iopodman.ImageSave().Send(r.Conn, varlink.More, options)
- if err != nil {
- return err
- }
-
- var fetchfile string
- for {
- responses, flags, err := reply()
- if err != nil {
- return err
- }
- if len(responses.Id) > 0 {
- fetchfile = responses.Id
- }
- for _, line := range responses.Logs {
- fmt.Print(line)
- }
- if flags&varlink.Continues == 0 {
- break
- }
-
- }
- if err != nil { // nolint: govet
- return err
- }
-
- outputToDir := false
- outfile := c.Output
- var outputFile *os.File
- // If the result is supposed to be a dir, then we need to put the tarfile
- // from the host in a temporary file
- if options.Format != "oci-archive" && options.Format != "docker-archive" {
- outputToDir = true
- outputFile, err = ioutil.TempFile("", "saveimage_tempfile")
- if err != nil {
- return err
- }
- outfile = outputFile.Name()
- defer outputFile.Close()
- defer os.Remove(outputFile.Name())
- }
- // We now need to fetch the tarball result back to the more system
- if err := r.GetFileFromRemoteHost(fetchfile, outfile, true); err != nil {
- return err
- }
-
- // If the result is a tarball, we're done
- // If it is a dir, we need to untar the temporary file into the dir
- if outputToDir {
- if err := utils.UntarToFileSystem(c.Output, outputFile, &archive.TarOptions{}); err != nil {
- return err
- }
- }
- return nil
-}
-
-// LoadImage loads a container image from a remote client's filesystem
-func (r *LocalRuntime) LoadImage(ctx context.Context, name string, cli *cliconfig.LoadValues) (string, error) {
- var names string
- remoteTempFile, err := r.SendFileOverVarlink(cli.Input)
- if err != nil {
- return "", nil
- }
- more := varlink.More
- if cli.Quiet {
- more = 0
- }
- reply, err := iopodman.LoadImage().Send(r.Conn, uint64(more), name, remoteTempFile, cli.Quiet, true)
- if err != nil {
- return "", err
- }
-
- for {
- responses, flags, err := reply()
- if err != nil {
- logrus.Error(err)
- return "", err
- }
- for _, line := range responses.Logs {
- fmt.Print(line)
- }
- names = responses.Id
- if flags&varlink.Continues == 0 {
- break
- }
- }
- return names, nil
-}
-
-// IsImageNotFound checks if the error indicates that no image was found.
-func IsImageNotFound(err error) bool {
- if errors.Cause(err) == image.ErrNoSuchImage {
- return true
- }
- switch err.(type) { // nolint: gocritic
- case *iopodman.ImageNotFound:
- return true
- }
- return false
-}
-
-// HealthCheck executes a container's healthcheck over a varlink connection
-func (r *LocalRuntime) HealthCheck(c *cliconfig.HealthCheckValues) (string, error) {
- return iopodman.HealthCheckRun().Call(r.Conn, c.InputArgs[0])
-}
-
-// Events monitors libpod/podman events over a varlink connection
-func (r *LocalRuntime) Events(c *cliconfig.EventValues) error {
- var more uint64
- if c.Stream {
- more = uint64(varlink.More)
- }
- reply, err := iopodman.GetEvents().Send(r.Conn, more, c.Filter, c.Since, c.Until)
- if err != nil {
- return errors.Wrapf(err, "unable to obtain events")
- }
-
- w := bufio.NewWriter(os.Stdout)
- var tmpl *template.Template
- if c.Format != formats.JSONString {
- template, err := template.New("events").Parse(c.Format)
- if err != nil {
- return err
- }
- tmpl = template
- }
-
- for {
- returnedEvent, flags, err := reply()
- if err != nil {
- // When the error handling is back into podman, we can flip this to a better way to check
- // for problems. For now, this works.
- return err
- }
- if returnedEvent.Time == "" && returnedEvent.Status == "" && returnedEvent.Type == "" {
- // We got a blank event return, signals end of stream in certain cases
- break
- }
- eTime, err := time.Parse(time.RFC3339Nano, returnedEvent.Time)
- if err != nil {
- return errors.Wrapf(err, "unable to parse time of event %s", returnedEvent.Time)
- }
- eType, err := events.StringToType(returnedEvent.Type)
- if err != nil {
- return err
- }
- eStatus, err := events.StringToStatus(returnedEvent.Status)
- if err != nil {
- return err
- }
- event := events.Event{
- ID: returnedEvent.Id,
- Image: returnedEvent.Image,
- Name: returnedEvent.Name,
- Status: eStatus,
- Time: eTime,
- Type: eType,
- }
- if c.Format == formats.JSONString { // nolint: gocritic
- jsonStr, err := event.ToJSONString()
- if err != nil {
- return errors.Wrapf(err, "unable to format json")
- }
- if _, err := w.Write([]byte(jsonStr)); err != nil {
- return err
- }
- } else if len(c.Format) > 0 {
- if err := tmpl.Execute(w, event); err != nil {
- return err
- }
- } else {
- if _, err := w.Write([]byte(event.ToHumanReadable())); err != nil {
- return err
- }
- }
-
- if _, err := w.Write([]byte("\n")); err != nil {
- return err
- }
- if err := w.Flush(); err != nil {
- return err
- }
- if flags&varlink.Continues == 0 {
- break
- }
- }
- return nil
-}
-
-// Diff ...
-func (r *LocalRuntime) Diff(c *cliconfig.DiffValues, to string) ([]archive.Change, error) {
- var changes []archive.Change
- reply, err := iopodman.Diff().Call(r.Conn, to)
- if err != nil {
- return nil, err
- }
- for _, change := range reply {
- changes = append(changes, archive.Change{Path: change.Path, Kind: stringToChangeType(change.ChangeType)})
- }
- return changes, nil
-}
-
-func stringToChangeType(change string) archive.ChangeType {
- switch change {
- case "A":
- return archive.ChangeAdd
- case "D":
- return archive.ChangeDelete
- default: // nolint: gocritic,stylecheck
- logrus.Errorf("'%s' is unknown archive type", change)
- fallthrough
- case "C":
- return archive.ChangeModify
- }
-}
-
-// GenerateKube creates kubernetes email from containers and pods
-func (r *LocalRuntime) GenerateKube(c *cliconfig.GenerateKubeValues) (*v1.Pod, *v1.Service, error) {
- var (
- pod v1.Pod
- service v1.Service
- )
- reply, err := iopodman.GenerateKube().Call(r.Conn, c.InputArgs[0], c.Service)
- if err != nil {
- return nil, nil, errors.Wrap(err, "unable to create kubernetes YAML")
- }
- if err := json.Unmarshal([]byte(reply.Pod), &pod); err != nil {
- return nil, nil, err
- }
- err = json.Unmarshal([]byte(reply.Service), &service)
- return &pod, &service, err
-}
-
-// GetContainersByContext looks up containers based on the cli input of all, latest, or a list
-func (r *LocalRuntime) GetContainersByContext(all bool, latest bool, namesOrIDs []string) ([]*Container, error) {
- var containers []*Container
- cids, err := iopodman.GetContainersByContext().Call(r.Conn, all, latest, namesOrIDs)
- if err != nil {
- return nil, err
- }
- for _, cid := range cids {
- ctr, err := r.LookupContainer(cid)
- if err != nil {
- return nil, err
- }
- containers = append(containers, ctr)
- }
- return containers, nil
-}
-
-// GetVersion returns version information from service
-func (r *LocalRuntime) GetVersion() (define.Version, error) {
- version, goVersion, gitCommit, built, osArch, apiVersion, err := iopodman.GetVersion().Call(r.Conn)
- if err != nil {
- return define.Version{}, errors.Wrapf(err, "Unable to obtain server version information")
- }
-
- var buildTime int64
- if built != "" {
- t, err := time.Parse(time.RFC3339, built)
- if err != nil {
- return define.Version{}, nil
- }
- buildTime = t.Unix()
- }
-
- return define.Version{
- RemoteAPIVersion: apiVersion,
- Version: version,
- GoVersion: goVersion,
- GitCommit: gitCommit,
- Built: buildTime,
- OsArch: osArch,
- }, nil
-}
diff --git a/pkg/adapter/runtime_remote_supported.go b/pkg/adapter/runtime_remote_supported.go
deleted file mode 100644
index b8e8da308..000000000
--- a/pkg/adapter/runtime_remote_supported.go
+++ /dev/null
@@ -1 +0,0 @@
-package adapter
diff --git a/pkg/adapter/sigproxy_linux.go b/pkg/adapter/sigproxy_linux.go
deleted file mode 100644
index 5695d0e42..000000000
--- a/pkg/adapter/sigproxy_linux.go
+++ /dev/null
@@ -1,45 +0,0 @@
-package adapter
-
-import (
- "os"
- "syscall"
-
- "github.com/containers/libpod/libpod"
- "github.com/containers/libpod/pkg/signal"
- "github.com/sirupsen/logrus"
-)
-
-// ProxySignals ...
-func ProxySignals(ctr *libpod.Container) {
- sigBuffer := make(chan os.Signal, 128)
- signal.CatchAll(sigBuffer)
-
- logrus.Debugf("Enabling signal proxying")
-
- go func() {
- for s := range sigBuffer {
- // Ignore SIGCHLD and SIGPIPE - these are mostly likely
- // intended for the podman command itself.
- // SIGURG was added because of golang 1.14 and its preemptive changes
- // causing more signals to "show up".
- // https://github.com/containers/libpod/issues/5483
- if s == syscall.SIGCHLD || s == syscall.SIGPIPE || s == syscall.SIGURG {
- continue
- }
-
- if err := ctr.Kill(uint(s.(syscall.Signal))); err != nil {
- // If the container dies, and we find out here,
- // we need to forward that one signal to
- // ourselves so that it is not lost, and then
- // we terminate the proxy and let the defaults
- // play out.
- logrus.Errorf("Error forwarding signal %d to container %s: %v", s, ctr.ID(), err)
- signal.StopCatch(sigBuffer)
- if err := syscall.Kill(syscall.Getpid(), s.(syscall.Signal)); err != nil {
- logrus.Errorf("failed to kill pid %d", syscall.Getpid())
- }
- return
- }
- }
- }()
-}
diff --git a/pkg/adapter/terminal.go b/pkg/adapter/terminal.go
deleted file mode 100644
index 499e77def..000000000
--- a/pkg/adapter/terminal.go
+++ /dev/null
@@ -1,101 +0,0 @@
-package adapter
-
-import (
- "context"
- "os"
- "os/signal"
-
- lsignal "github.com/containers/libpod/pkg/signal"
- "github.com/docker/docker/pkg/term"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- "k8s.io/client-go/tools/remotecommand"
-)
-
-// RawTtyFormatter ...
-type RawTtyFormatter struct {
-}
-
-// getResize returns a TerminalSize command matching stdin's current
-// size on success, and nil on errors.
-func getResize() *remotecommand.TerminalSize {
- winsize, err := term.GetWinsize(os.Stdin.Fd())
- if err != nil {
- logrus.Warnf("Could not get terminal size %v", err)
- return nil
- }
- return &remotecommand.TerminalSize{
- Width: winsize.Width,
- Height: winsize.Height,
- }
-}
-
-// Helper for prepareAttach - set up a goroutine to generate terminal resize events
-func resizeTty(ctx context.Context, resize chan remotecommand.TerminalSize) {
- sigchan := make(chan os.Signal, 1)
- signal.Notify(sigchan, lsignal.SIGWINCH)
- go func() {
- defer close(resize)
- // Update the terminal size immediately without waiting
- // for a SIGWINCH to get the correct initial size.
- resizeEvent := getResize()
- for {
- if resizeEvent == nil {
- select {
- case <-ctx.Done():
- return
- case <-sigchan:
- resizeEvent = getResize()
- }
- } else {
- select {
- case <-ctx.Done():
- return
- case <-sigchan:
- resizeEvent = getResize()
- case resize <- *resizeEvent:
- resizeEvent = nil
- }
- }
- }
- }()
-}
-
-func restoreTerminal(state *term.State) error {
- logrus.SetFormatter(&logrus.TextFormatter{})
- return term.RestoreTerminal(os.Stdin.Fd(), state)
-}
-
-// Format ...
-func (f *RawTtyFormatter) Format(entry *logrus.Entry) ([]byte, error) {
- textFormatter := logrus.TextFormatter{}
- bytes, err := textFormatter.Format(entry)
-
- if err == nil {
- bytes = append(bytes, '\r')
- }
-
- return bytes, err
-}
-
-func handleTerminalAttach(ctx context.Context, resize chan remotecommand.TerminalSize) (context.CancelFunc, *term.State, error) {
- logrus.Debugf("Handling terminal attach")
-
- subCtx, cancel := context.WithCancel(ctx)
-
- resizeTty(subCtx, resize)
-
- oldTermState, err := term.SaveState(os.Stdin.Fd())
- if err != nil {
- // allow caller to not have to do any cleaning up if we error here
- cancel()
- return nil, nil, errors.Wrapf(err, "unable to save terminal state")
- }
-
- logrus.SetFormatter(&RawTtyFormatter{})
- if _, err := term.SetRawTerminal(os.Stdin.Fd()); err != nil {
- return cancel, nil, err
- }
-
- return cancel, oldTermState, nil
-}
diff --git a/pkg/adapter/terminal_linux.go b/pkg/adapter/terminal_linux.go
deleted file mode 100644
index a56704be6..000000000
--- a/pkg/adapter/terminal_linux.go
+++ /dev/null
@@ -1,121 +0,0 @@
-package adapter
-
-import (
- "bufio"
- "context"
- "fmt"
- "os"
-
- "github.com/containers/libpod/libpod"
- "github.com/containers/libpod/libpod/define"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- "golang.org/x/crypto/ssh/terminal"
- "k8s.io/client-go/tools/remotecommand"
-)
-
-// ExecAttachCtr execs and attaches to a container
-func ExecAttachCtr(ctx context.Context, ctr *libpod.Container, tty, privileged bool, env map[string]string, cmd []string, user, workDir string, streams *define.AttachStreams, preserveFDs uint, detachKeys string) (int, error) {
- resize := make(chan remotecommand.TerminalSize)
- haveTerminal := terminal.IsTerminal(int(os.Stdin.Fd()))
-
- // Check if we are attached to a terminal. If we are, generate resize
- // events, and set the terminal to raw mode
- if haveTerminal && tty {
- cancel, oldTermState, err := handleTerminalAttach(ctx, resize)
- if err != nil {
- return -1, err
- }
- defer cancel()
- defer func() {
- if err := restoreTerminal(oldTermState); err != nil {
- logrus.Errorf("unable to restore terminal: %q", err)
- }
- }()
- }
-
- execConfig := new(libpod.ExecConfig)
- execConfig.Command = cmd
- execConfig.Terminal = tty
- execConfig.Privileged = privileged
- execConfig.Environment = env
- execConfig.User = user
- execConfig.WorkDir = workDir
- execConfig.DetachKeys = &detachKeys
- execConfig.PreserveFDs = preserveFDs
-
- return ctr.Exec(execConfig, streams, resize)
-}
-
-// StartAttachCtr starts and (if required) attaches to a container
-// if you change the signature of this function from os.File to io.Writer, it will trigger a downstream
-// error. we may need to just lint disable this one.
-func StartAttachCtr(ctx context.Context, ctr *libpod.Container, stdout, stderr, stdin *os.File, detachKeys string, sigProxy bool, startContainer bool, recursive bool) error { //nolint-interfacer
- resize := make(chan remotecommand.TerminalSize)
-
- haveTerminal := terminal.IsTerminal(int(os.Stdin.Fd()))
-
- // Check if we are attached to a terminal. If we are, generate resize
- // events, and set the terminal to raw mode
- if haveTerminal && ctr.Spec().Process.Terminal {
- cancel, oldTermState, err := handleTerminalAttach(ctx, resize)
- if err != nil {
- return err
- }
- defer func() {
- if err := restoreTerminal(oldTermState); err != nil {
- logrus.Errorf("unable to restore terminal: %q", err)
- }
- }()
- defer cancel()
- }
-
- streams := new(define.AttachStreams)
- streams.OutputStream = stdout
- streams.ErrorStream = stderr
- streams.InputStream = bufio.NewReader(stdin)
- streams.AttachOutput = true
- streams.AttachError = true
- streams.AttachInput = true
-
- if stdout == nil {
- logrus.Debugf("Not attaching to stdout")
- streams.AttachOutput = false
- }
- if stderr == nil {
- logrus.Debugf("Not attaching to stderr")
- streams.AttachError = false
- }
- if stdin == nil {
- logrus.Debugf("Not attaching to stdin")
- streams.AttachInput = false
- }
-
- if !startContainer {
- if sigProxy {
- ProxySignals(ctr)
- }
-
- return ctr.Attach(streams, detachKeys, resize)
- }
-
- attachChan, err := ctr.StartAndAttach(ctx, streams, detachKeys, resize, recursive)
- if err != nil {
- return err
- }
-
- if sigProxy {
- ProxySignals(ctr)
- }
-
- if stdout == nil && stderr == nil {
- fmt.Printf("%s\n", ctr.ID())
- }
-
- err = <-attachChan
- if err != nil {
- return errors.Wrapf(err, "error attaching to container %s", ctr.ID())
- }
-
- return nil
-}
diff --git a/pkg/adapter/terminal_unsupported.go b/pkg/adapter/terminal_unsupported.go
deleted file mode 100644
index 9067757a1..000000000
--- a/pkg/adapter/terminal_unsupported.go
+++ /dev/null
@@ -1,23 +0,0 @@
-// +build !linux
-
-package adapter
-
-import (
- "context"
- "os"
-
- "github.com/containers/libpod/libpod"
- "github.com/containers/libpod/libpod/define"
-)
-
-// ExecAttachCtr execs and attaches to a container
-func ExecAttachCtr(ctx context.Context, ctr *libpod.Container, tty, privileged bool, env map[string]string, cmd []string, user, workDir string, streams *define.AttachStreams, preserveFDs uint, detachKeys string) (int, error) {
- return -1, define.ErrNotImplemented
-}
-
-// StartAttachCtr starts and (if required) attaches to a container
-// if you change the signature of this function from os.File to io.Writer, it will trigger a downstream
-// error. we may need to just lint disable this one.
-func StartAttachCtr(ctx context.Context, ctr *libpod.Container, stdout, stderr, stdin *os.File, detachKeys string, sigProxy bool, startContainer bool, recursive bool) error { //nolint-interfacer
- return define.ErrNotImplemented
-}
diff --git a/pkg/adapter/volumes_remote.go b/pkg/adapter/volumes_remote.go
deleted file mode 100644
index 58f9ba625..000000000
--- a/pkg/adapter/volumes_remote.go
+++ /dev/null
@@ -1,33 +0,0 @@
-// +build remoteclient
-
-package adapter
-
-// Name returns the name of the volume
-func (v *Volume) Name() string {
- return v.config.Name
-}
-
-//Labels returns the labels for a volume
-func (v *Volume) Labels() map[string]string {
- return v.config.Labels
-}
-
-// Driver returns the driver for the volume
-func (v *Volume) Driver() string {
- return v.config.Driver
-}
-
-// Options returns the options a volume was created with
-func (v *Volume) Options() map[string]string {
- return v.config.Options
-}
-
-// MountPath returns the path the volume is mounted to
-func (v *Volume) MountPoint() string {
- return v.config.MountPoint
-}
-
-// Scope returns the scope for an adapter.volume
-func (v *Volume) Scope() string {
- return "local"
-}
diff --git a/pkg/api/handlers/utils/containers.go b/pkg/api/handlers/utils/containers.go
index bc247c4ae..a46b308b5 100644
--- a/pkg/api/handlers/utils/containers.go
+++ b/pkg/api/handlers/utils/containers.go
@@ -5,7 +5,6 @@ import (
"net/http"
"time"
- "github.com/containers/libpod/cmd/podman/shared"
"github.com/containers/libpod/libpod"
"github.com/containers/libpod/libpod/define"
"github.com/containers/libpod/pkg/domain/entities"
@@ -63,7 +62,7 @@ func WaitContainer(w http.ResponseWriter, r *http.Request) (int32, error) {
func CreateContainer(ctx context.Context, w http.ResponseWriter, runtime *libpod.Runtime, cc *createconfig.CreateConfig) {
var pod *libpod.Pod
- ctr, err := shared.CreateContainerFromCreateConfig(runtime, cc, ctx, pod)
+ ctr, err := createconfig.CreateContainerFromCreateConfig(runtime, cc, ctx, pod)
if err != nil {
Error(w, "Something went wrong.", http.StatusInternalServerError, errors.Wrap(err, "CreateContainerFromCreateConfig()"))
return
diff --git a/pkg/domain/infra/runtime_image_proxy.go b/pkg/domain/infra/runtime_image_proxy.go
index 45c5425a3..535fba858 100644
--- a/pkg/domain/infra/runtime_image_proxy.go
+++ b/pkg/domain/infra/runtime_image_proxy.go
@@ -10,7 +10,7 @@ import (
"github.com/spf13/pflag"
)
-// ContainerEngine Image Proxy will be EOL'ed after podmanV2 is separated from libpod repo
+// ContainerEngine Image Proxy will be EOL'ed after podman is separated from libpod repo
func NewLibpodImageRuntime(flags *pflag.FlagSet, opts entities.PodmanConfig) (entities.ImageEngine, error) {
r, err := GetRuntime(context.Background(), flags, opts)
diff --git a/pkg/domain/infra/runtime_proxy.go b/pkg/domain/infra/runtime_proxy.go
index 18f716ea0..fbe45ea8f 100644
--- a/pkg/domain/infra/runtime_proxy.go
+++ b/pkg/domain/infra/runtime_proxy.go
@@ -10,7 +10,7 @@ import (
flag "github.com/spf13/pflag"
)
-// ContainerEngine Proxy will be EOL'ed after podmanV2 is separated from libpod repo
+// ContainerEngine Proxy will be EOL'ed after podman is separated from libpod repo
func NewLibpodRuntime(flags *flag.FlagSet, opts entities.PodmanConfig) (entities.ContainerEngine, error) {
r, err := GetRuntime(context.Background(), flags, opts)
diff --git a/pkg/spec/createconfig.go b/pkg/spec/createconfig.go
index daa997104..2cf30a59e 100644
--- a/pkg/spec/createconfig.go
+++ b/pkg/spec/createconfig.go
@@ -1,6 +1,7 @@
package createconfig
import (
+ "context"
"os"
"strconv"
"strings"
@@ -397,3 +398,20 @@ func (c *CreateConfig) getContainerCreateOptions(runtime *libpod.Runtime, pod *l
func AddPrivilegedDevices(g *generate.Generator) error {
return addPrivilegedDevices(g)
}
+
+func CreateContainerFromCreateConfig(r *libpod.Runtime, createConfig *CreateConfig, ctx context.Context, pod *libpod.Pod) (*libpod.Container, error) {
+ runtimeSpec, options, err := createConfig.MakeContainerConfig(r, pod)
+ if err != nil {
+ return nil, err
+ }
+
+ // Set the CreateCommand explicitly. Some (future) consumers of libpod
+ // might not want to set it.
+ options = append(options, libpod.WithCreateCommand())
+
+ ctr, err := r.NewContainer(ctx, runtimeSpec, options...)
+ if err != nil {
+ return nil, err
+ }
+ return ctr, nil
+}
diff --git a/cmd/podman/shared/container.go b/pkg/varlinkapi/container.go
index b5a1e7104..eae54dfeb 100644
--- a/cmd/podman/shared/container.go
+++ b/pkg/varlinkapi/container.go
@@ -1,4 +1,4 @@
-package shared
+package varlinkapi
import (
"context"
@@ -7,6 +7,7 @@ import (
"os"
"path/filepath"
"regexp"
+ "runtime"
"sort"
"strconv"
"strings"
@@ -885,3 +886,43 @@ func GenerateKube(name string, service bool, r *libpod.Runtime) (*v1.Pod, *v1.Se
}
return podYAML, &serviceYAML, nil
}
+
+// Parallelize provides the maximum number of parallel workers (int) as calculated by a basic
+// heuristic. This can be overridden by the --max-workers primary switch to podman.
+func Parallelize(job string) int {
+ numCpus := runtime.NumCPU()
+ switch job {
+ case "kill":
+ if numCpus <= 3 {
+ return numCpus * 3
+ }
+ return numCpus * 4
+ case "pause":
+ if numCpus <= 3 {
+ return numCpus * 3
+ }
+ return numCpus * 4
+ case "ps":
+ return 8
+ case "restart":
+ return numCpus * 2
+ case "rm":
+ if numCpus <= 3 {
+ return numCpus * 3
+ } else {
+ return numCpus * 4
+ }
+ case "stop":
+ if numCpus <= 2 {
+ return 4
+ } else {
+ return numCpus * 3
+ }
+ case "unpause":
+ if numCpus <= 3 {
+ return numCpus * 3
+ }
+ return numCpus * 4
+ }
+ return 3
+}
diff --git a/pkg/varlinkapi/containers.go b/pkg/varlinkapi/containers.go
index 66b3e4095..8fba07c18 100644
--- a/pkg/varlinkapi/containers.go
+++ b/pkg/varlinkapi/containers.go
@@ -14,11 +14,9 @@ import (
"syscall"
"time"
- "github.com/containers/libpod/cmd/podman/shared"
"github.com/containers/libpod/libpod"
"github.com/containers/libpod/libpod/define"
"github.com/containers/libpod/libpod/logs"
- "github.com/containers/libpod/pkg/adapter/shortcuts"
"github.com/containers/libpod/pkg/cgroups"
"github.com/containers/libpod/pkg/rootless"
iopodman "github.com/containers/libpod/pkg/varlink"
@@ -39,12 +37,12 @@ func (i *VarlinkAPI) ListContainers(call iopodman.VarlinkCall) error {
if err != nil {
return call.ReplyErrorOccurred(err.Error())
}
- opts := shared.PsOptions{
+ opts := PsOptions{
Namespace: true,
Size: true,
}
for _, ctr := range containers {
- batchInfo, err := shared.BatchContainerOp(ctr, opts)
+ batchInfo, err := BatchContainerOp(ctr, opts)
if err != nil {
return call.ReplyErrorOccurred(err.Error())
}
@@ -58,13 +56,13 @@ func (i *VarlinkAPI) Ps(call iopodman.VarlinkCall, opts iopodman.PsOpts) error {
var (
containers []iopodman.PsContainer
)
- maxWorkers := shared.Parallelize("ps")
+ maxWorkers := Parallelize("ps")
psOpts := makePsOpts(opts)
filters := []string{}
if opts.Filters != nil {
filters = *opts.Filters
}
- psContainerOutputs, err := shared.GetPsContainerOutput(i.Runtime, psOpts, filters, maxWorkers)
+ psContainerOutputs, err := GetPsContainerOutput(i.Runtime, psOpts, filters, maxWorkers)
if err != nil {
return call.ReplyErrorOccurred(err.Error())
}
@@ -111,22 +109,22 @@ func (i *VarlinkAPI) GetContainer(call iopodman.VarlinkCall, id string) error {
if err != nil {
return call.ReplyContainerNotFound(id, err.Error())
}
- opts := shared.PsOptions{
+ opts := PsOptions{
Namespace: true,
Size: true,
}
- batchInfo, err := shared.BatchContainerOp(ctr, opts)
+ batchInfo, err := BatchContainerOp(ctr, opts)
if err != nil {
return call.ReplyErrorOccurred(err.Error())
}
return call.ReplyGetContainer(makeListContainer(ctr.ID(), batchInfo))
}
-// GetContainersByContext returns a slice of container ids based on all, latest, or a list
+// getContainersByContext returns a slice of container ids based on all, latest, or a list
func (i *VarlinkAPI) GetContainersByContext(call iopodman.VarlinkCall, all, latest bool, input []string) error {
var ids []string
- ctrs, err := shortcuts.GetContainersByContext(all, latest, input, i.Runtime)
+ ctrs, err := getContainersByContext(all, latest, input, i.Runtime)
if err != nil {
if errors.Cause(err) == define.ErrNoSuchCtr {
return call.ReplyContainerNotFound("", err.Error())
@@ -160,9 +158,9 @@ func (i *VarlinkAPI) GetContainersByStatus(call iopodman.VarlinkCall, statuses [
if err != nil {
return call.ReplyErrorOccurred(err.Error())
}
- opts := shared.PsOptions{Size: true, Namespace: true}
+ opts := PsOptions{Size: true, Namespace: true}
for _, ctr := range filteredContainers {
- batchInfo, err := shared.BatchContainerOp(ctr, opts)
+ batchInfo, err := BatchContainerOp(ctr, opts)
if err != nil {
return call.ReplyErrorOccurred(err.Error())
}
@@ -752,7 +750,7 @@ func (i *VarlinkAPI) GetContainersLogs(call iopodman.VarlinkCall, names []string
tailLen = 0
}
logChannel := make(chan *logs.LogLine, tailLen*len(names)+1)
- containers, err := shortcuts.GetContainersByContext(false, latest, names, i.Runtime)
+ containers, err := getContainersByContext(false, latest, names, i.Runtime)
if err != nil {
return call.ReplyErrorOccurred(err.Error())
}
diff --git a/pkg/varlinkapi/containers_create.go b/pkg/varlinkapi/containers_create.go
index c1c1f6674..f0a87491a 100644
--- a/pkg/varlinkapi/containers_create.go
+++ b/pkg/varlinkapi/containers_create.go
@@ -3,14 +3,13 @@
package varlinkapi
import (
- "github.com/containers/libpod/cmd/podman/shared"
iopodman "github.com/containers/libpod/pkg/varlink"
)
// CreateContainer ...
func (i *VarlinkAPI) CreateContainer(call iopodman.VarlinkCall, config iopodman.Create) error {
- generic := shared.VarlinkCreateToGeneric(config)
- ctr, _, err := shared.CreateContainer(getContext(), &generic, i.Runtime)
+ generic := VarlinkCreateToGeneric(config)
+ ctr, _, err := CreateContainer(getContext(), &generic, i.Runtime)
if err != nil {
return call.ReplyErrorOccurred(err.Error())
}
diff --git a/cmd/podman/shared/create.go b/pkg/varlinkapi/create.go
index f8178a841..63d5072c6 100644
--- a/cmd/podman/shared/create.go
+++ b/pkg/varlinkapi/create.go
@@ -1,4 +1,4 @@
-package shared
+package varlinkapi
import (
"context"
@@ -14,12 +14,13 @@ import (
"time"
"github.com/containers/image/v5/manifest"
- "github.com/containers/libpod/cmd/podman/shared/parse"
+ "github.com/containers/libpod/cmd/podman/parse"
"github.com/containers/libpod/libpod"
"github.com/containers/libpod/libpod/define"
"github.com/containers/libpod/libpod/image"
ann "github.com/containers/libpod/pkg/annotations"
"github.com/containers/libpod/pkg/autoupdate"
+ "github.com/containers/libpod/pkg/cgroups"
envLib "github.com/containers/libpod/pkg/env"
"github.com/containers/libpod/pkg/errorhandling"
"github.com/containers/libpod/pkg/inspect"
@@ -27,6 +28,7 @@ import (
"github.com/containers/libpod/pkg/rootless"
"github.com/containers/libpod/pkg/seccomp"
cc "github.com/containers/libpod/pkg/spec"
+ "github.com/containers/libpod/pkg/sysinfo"
systemdGen "github.com/containers/libpod/pkg/systemd/generate"
"github.com/containers/libpod/pkg/util"
"github.com/docker/go-connections/nat"
@@ -36,6 +38,8 @@ import (
"github.com/sirupsen/logrus"
)
+var DefaultKernelNamespaces = "cgroup,ipc,net,uts"
+
func CreateContainer(ctx context.Context, c *GenericCLIResults, runtime *libpod.Runtime) (*libpod.Container, *cc.CreateConfig, error) {
var (
healthCheck *manifest.Schema2HealthConfig
@@ -979,3 +983,172 @@ func makeHealthCheckFromCli(c *GenericCLIResults) (*manifest.Schema2HealthConfig
return &hc, nil
}
+
+// GetNamespaceOptions transforms a slice of kernel namespaces
+// into a slice of pod create options. Currently, not all
+// kernel namespaces are supported, and they will be returned in an error
+func GetNamespaceOptions(ns []string) ([]libpod.PodCreateOption, error) {
+ var options []libpod.PodCreateOption
+ var erroredOptions []libpod.PodCreateOption
+ for _, toShare := range ns {
+ switch toShare {
+ case "cgroup":
+ options = append(options, libpod.WithPodCgroups())
+ case "net":
+ options = append(options, libpod.WithPodNet())
+ case "mnt":
+ return erroredOptions, errors.Errorf("Mount sharing functionality not supported on pod level")
+ case "pid":
+ options = append(options, libpod.WithPodPID())
+ case "user":
+ return erroredOptions, errors.Errorf("User sharing functionality not supported on pod level")
+ case "ipc":
+ options = append(options, libpod.WithPodIPC())
+ case "uts":
+ options = append(options, libpod.WithPodUTS())
+ case "":
+ case "none":
+ return erroredOptions, nil
+ default:
+ return erroredOptions, errors.Errorf("Invalid kernel namespace to share: %s. Options are: net, pid, ipc, uts or none", toShare)
+ }
+ }
+ return options, nil
+}
+
+func addWarning(warnings []string, msg string) []string {
+ logrus.Warn(msg)
+ return append(warnings, msg)
+}
+
+func verifyContainerResources(config *cc.CreateConfig, update bool) ([]string, error) {
+ warnings := []string{}
+
+ cgroup2, err := cgroups.IsCgroup2UnifiedMode()
+ if err != nil || cgroup2 {
+ return warnings, err
+ }
+
+ sysInfo := sysinfo.New(true)
+
+ // memory subsystem checks and adjustments
+ if config.Resources.Memory > 0 && !sysInfo.MemoryLimit {
+ warnings = addWarning(warnings, "Your kernel does not support memory limit capabilities or the cgroup is not mounted. Limitation discarded.")
+ config.Resources.Memory = 0
+ config.Resources.MemorySwap = -1
+ }
+ if config.Resources.Memory > 0 && config.Resources.MemorySwap != -1 && !sysInfo.SwapLimit {
+ warnings = addWarning(warnings, "Your kernel does not support swap limit capabilities,or the cgroup is not mounted. Memory limited without swap.")
+ config.Resources.MemorySwap = -1
+ }
+ if config.Resources.Memory > 0 && config.Resources.MemorySwap > 0 && config.Resources.MemorySwap < config.Resources.Memory {
+ return warnings, fmt.Errorf("minimum memoryswap limit should be larger than memory limit, see usage")
+ }
+ if config.Resources.Memory == 0 && config.Resources.MemorySwap > 0 && !update {
+ return warnings, fmt.Errorf("you should always set the memory limit when using memoryswap limit, see usage")
+ }
+ if config.Resources.MemorySwappiness != -1 {
+ if !sysInfo.MemorySwappiness {
+ msg := "Your kernel does not support memory swappiness capabilities, or the cgroup is not mounted. Memory swappiness discarded."
+ warnings = addWarning(warnings, msg)
+ config.Resources.MemorySwappiness = -1
+ } else {
+ swappiness := config.Resources.MemorySwappiness
+ if swappiness < -1 || swappiness > 100 {
+ return warnings, fmt.Errorf("invalid value: %v, valid memory swappiness range is 0-100", swappiness)
+ }
+ }
+ }
+ if config.Resources.MemoryReservation > 0 && !sysInfo.MemoryReservation {
+ warnings = addWarning(warnings, "Your kernel does not support memory soft limit capabilities or the cgroup is not mounted. Limitation discarded.")
+ config.Resources.MemoryReservation = 0
+ }
+ if config.Resources.Memory > 0 && config.Resources.MemoryReservation > 0 && config.Resources.Memory < config.Resources.MemoryReservation {
+ return warnings, fmt.Errorf("minimum memory limit cannot be less than memory reservation limit, see usage")
+ }
+ if config.Resources.KernelMemory > 0 && !sysInfo.KernelMemory {
+ warnings = addWarning(warnings, "Your kernel does not support kernel memory limit capabilities or the cgroup is not mounted. Limitation discarded.")
+ config.Resources.KernelMemory = 0
+ }
+ if config.Resources.DisableOomKiller && !sysInfo.OomKillDisable {
+ // only produce warnings if the setting wasn't to *disable* the OOM Kill; no point
+ // warning the caller if they already wanted the feature to be off
+ warnings = addWarning(warnings, "Your kernel does not support OomKillDisable. OomKillDisable discarded.")
+ config.Resources.DisableOomKiller = false
+ }
+
+ if config.Resources.PidsLimit != 0 && !sysInfo.PidsLimit {
+ warnings = addWarning(warnings, "Your kernel does not support pids limit capabilities or the cgroup is not mounted. PIDs limit discarded.")
+ config.Resources.PidsLimit = 0
+ }
+
+ if config.Resources.CPUShares > 0 && !sysInfo.CPUShares {
+ warnings = addWarning(warnings, "Your kernel does not support CPU shares or the cgroup is not mounted. Shares discarded.")
+ config.Resources.CPUShares = 0
+ }
+ if config.Resources.CPUPeriod > 0 && !sysInfo.CPUCfsPeriod {
+ warnings = addWarning(warnings, "Your kernel does not support CPU cfs period or the cgroup is not mounted. Period discarded.")
+ config.Resources.CPUPeriod = 0
+ }
+ if config.Resources.CPUPeriod != 0 && (config.Resources.CPUPeriod < 1000 || config.Resources.CPUPeriod > 1000000) {
+ return warnings, fmt.Errorf("CPU cfs period cannot be less than 1ms (i.e. 1000) or larger than 1s (i.e. 1000000)")
+ }
+ if config.Resources.CPUQuota > 0 && !sysInfo.CPUCfsQuota {
+ warnings = addWarning(warnings, "Your kernel does not support CPU cfs quota or the cgroup is not mounted. Quota discarded.")
+ config.Resources.CPUQuota = 0
+ }
+ if config.Resources.CPUQuota > 0 && config.Resources.CPUQuota < 1000 {
+ return warnings, fmt.Errorf("CPU cfs quota cannot be less than 1ms (i.e. 1000)")
+ }
+ // cpuset subsystem checks and adjustments
+ if (config.Resources.CPUsetCPUs != "" || config.Resources.CPUsetMems != "") && !sysInfo.Cpuset {
+ warnings = addWarning(warnings, "Your kernel does not support cpuset or the cgroup is not mounted. CPUset discarded.")
+ config.Resources.CPUsetCPUs = ""
+ config.Resources.CPUsetMems = ""
+ }
+ cpusAvailable, err := sysInfo.IsCpusetCpusAvailable(config.Resources.CPUsetCPUs)
+ if err != nil {
+ return warnings, fmt.Errorf("invalid value %s for cpuset cpus", config.Resources.CPUsetCPUs)
+ }
+ if !cpusAvailable {
+ return warnings, fmt.Errorf("requested CPUs are not available - requested %s, available: %s", config.Resources.CPUsetCPUs, sysInfo.Cpus)
+ }
+ memsAvailable, err := sysInfo.IsCpusetMemsAvailable(config.Resources.CPUsetMems)
+ if err != nil {
+ return warnings, fmt.Errorf("invalid value %s for cpuset mems", config.Resources.CPUsetMems)
+ }
+ if !memsAvailable {
+ return warnings, fmt.Errorf("requested memory nodes are not available - requested %s, available: %s", config.Resources.CPUsetMems, sysInfo.Mems)
+ }
+
+ // blkio subsystem checks and adjustments
+ if config.Resources.BlkioWeight > 0 && !sysInfo.BlkioWeight {
+ warnings = addWarning(warnings, "Your kernel does not support Block I/O weight or the cgroup is not mounted. Weight discarded.")
+ config.Resources.BlkioWeight = 0
+ }
+ if config.Resources.BlkioWeight > 0 && (config.Resources.BlkioWeight < 10 || config.Resources.BlkioWeight > 1000) {
+ return warnings, fmt.Errorf("range of blkio weight is from 10 to 1000")
+ }
+ if len(config.Resources.BlkioWeightDevice) > 0 && !sysInfo.BlkioWeightDevice {
+ warnings = addWarning(warnings, "Your kernel does not support Block I/O weight_device or the cgroup is not mounted. Weight-device discarded.")
+ config.Resources.BlkioWeightDevice = []string{}
+ }
+ if len(config.Resources.DeviceReadBps) > 0 && !sysInfo.BlkioReadBpsDevice {
+ warnings = addWarning(warnings, "Your kernel does not support BPS Block I/O read limit or the cgroup is not mounted. Block I/O BPS read limit discarded")
+ config.Resources.DeviceReadBps = []string{}
+ }
+ if len(config.Resources.DeviceWriteBps) > 0 && !sysInfo.BlkioWriteBpsDevice {
+ warnings = addWarning(warnings, "Your kernel does not support BPS Block I/O write limit or the cgroup is not mounted. Block I/O BPS write limit discarded.")
+ config.Resources.DeviceWriteBps = []string{}
+ }
+ if len(config.Resources.DeviceReadIOps) > 0 && !sysInfo.BlkioReadIOpsDevice {
+ warnings = addWarning(warnings, "Your kernel does not support IOPS Block read limit or the cgroup is not mounted. Block I/O IOPS read limit discarded.")
+ config.Resources.DeviceReadIOps = []string{}
+ }
+ if len(config.Resources.DeviceWriteIOps) > 0 && !sysInfo.BlkioWriteIOpsDevice {
+ warnings = addWarning(warnings, "Your kernel does not support IOPS Block I/O write limit or the cgroup is not mounted. Block I/O IOPS write limit discarded.")
+ config.Resources.DeviceWriteIOps = []string{}
+ }
+
+ return warnings, nil
+}
diff --git a/cmd/podman/shared/funcs.go b/pkg/varlinkapi/funcs.go
index 404d0f288..ed90ba050 100644
--- a/cmd/podman/shared/funcs.go
+++ b/pkg/varlinkapi/funcs.go
@@ -1,4 +1,4 @@
-package shared
+package varlinkapi
import (
"fmt"
diff --git a/pkg/varlinkapi/generate.go b/pkg/varlinkapi/generate.go
index 81a0df68e..4df185db6 100644
--- a/pkg/varlinkapi/generate.go
+++ b/pkg/varlinkapi/generate.go
@@ -5,13 +5,12 @@ package varlinkapi
import (
"encoding/json"
- "github.com/containers/libpod/cmd/podman/shared"
iopodman "github.com/containers/libpod/pkg/varlink"
)
// GenerateKube ...
func (i *VarlinkAPI) GenerateKube(call iopodman.VarlinkCall, name string, service bool) error {
- pod, serv, err := shared.GenerateKube(name, service, i.Runtime)
+ pod, serv, err := GenerateKube(name, service, i.Runtime)
if err != nil {
return call.ReplyErrorOccurred(err.Error())
}
diff --git a/pkg/varlinkapi/images.go b/pkg/varlinkapi/images.go
index 49bd0b0cb..8d43b8414 100644
--- a/pkg/varlinkapi/images.go
+++ b/pkg/varlinkapi/images.go
@@ -20,7 +20,6 @@ import (
"github.com/containers/image/v5/manifest"
"github.com/containers/image/v5/transports/alltransports"
"github.com/containers/image/v5/types"
- "github.com/containers/libpod/cmd/podman/shared"
"github.com/containers/libpod/libpod"
"github.com/containers/libpod/libpod/define"
"github.com/containers/libpod/libpod/image"
@@ -779,7 +778,7 @@ func (i *VarlinkAPI) ContainerRunlabel(call iopodman.VarlinkCall, input iopodman
stdOut := os.Stdout
stdIn := os.Stdin
- runLabel, imageName, err := shared.GetRunlabel(input.Label, input.Image, ctx, i.Runtime, input.Pull, "", dockerRegistryOptions, input.Authfile, "", nil)
+ runLabel, imageName, err := GetRunlabel(input.Label, input.Image, ctx, i.Runtime, input.Pull, "", dockerRegistryOptions, input.Authfile, "", nil)
if err != nil {
return call.ReplyErrorOccurred(err.Error())
}
@@ -787,7 +786,7 @@ func (i *VarlinkAPI) ContainerRunlabel(call iopodman.VarlinkCall, input iopodman
return call.ReplyErrorOccurred(fmt.Sprintf("%s does not contain the label %s", input.Image, input.Label))
}
- cmd, env, err := shared.GenerateRunlabelCommand(runLabel, imageName, input.Name, input.Opts, input.ExtraArgs, "")
+ cmd, env, err := GenerateRunlabelCommand(runLabel, imageName, input.Name, input.Opts, input.ExtraArgs, "")
if err != nil {
return call.ReplyErrorOccurred(err.Error())
}
diff --git a/pkg/varlinkapi/intermediate.go b/pkg/varlinkapi/intermediate.go
new file mode 100644
index 000000000..f04665a86
--- /dev/null
+++ b/pkg/varlinkapi/intermediate.go
@@ -0,0 +1,289 @@
+package varlinkapi
+
+import (
+ "github.com/sirupsen/logrus"
+)
+
+/*
+attention
+
+in this file you will see a lot of struct duplication. this was done because people wanted a strongly typed
+varlink mechanism. this resulted in us creating this intermediate layer that allows us to take the input
+from the cli and make an intermediate layer which can be transferred as strongly typed structures over a varlink
+interface.
+
+we intentionally avoided heavy use of reflection here because we were concerned about performance impacts to the
+non-varlink intermediate layer generation.
+*/
+
+// GenericCLIResult describes the overall interface for dealing with
+// the create command cli in both local and remote uses
+type GenericCLIResult interface {
+ IsSet() bool
+ Name() string
+ Value() interface{}
+}
+
+// CRStringSlice describes a string slice cli struct
+type CRStringSlice struct {
+ Val []string
+ createResult
+}
+
+// CRString describes a string cli struct
+type CRString struct {
+ Val string
+ createResult
+}
+
+// CRUint64 describes a uint64 cli struct
+type CRUint64 struct {
+ Val uint64
+ createResult
+}
+
+// CRFloat64 describes a float64 cli struct
+type CRFloat64 struct {
+ Val float64
+ createResult
+}
+
+//CRBool describes a bool cli struct
+type CRBool struct {
+ Val bool
+ createResult
+}
+
+// CRInt64 describes an int64 cli struct
+type CRInt64 struct {
+ Val int64
+ createResult
+}
+
+// CRUint describes a uint cli struct
+type CRUint struct {
+ Val uint
+ createResult
+}
+
+// CRInt describes an int cli struct
+type CRInt struct {
+ Val int
+ createResult
+}
+
+// CRStringArray describes a stringarray cli struct
+type CRStringArray struct {
+ Val []string
+ createResult
+}
+
+type createResult struct {
+ Flag string
+ Changed bool
+}
+
+// GenericCLIResults in the intermediate object between the cobra cli
+// and createconfig
+type GenericCLIResults struct {
+ results map[string]GenericCLIResult
+ InputArgs []string
+}
+
+// IsSet returns a bool if the flag was changed
+func (f GenericCLIResults) IsSet(flag string) bool {
+ r := f.findResult(flag)
+ if r == nil {
+ return false
+ }
+ return r.IsSet()
+}
+
+// Value returns the value of the cli flag
+func (f GenericCLIResults) Value(flag string) interface{} {
+ r := f.findResult(flag)
+ if r == nil {
+ return ""
+ }
+ return r.Value()
+}
+
+func (f GenericCLIResults) findResult(flag string) GenericCLIResult {
+ val, ok := f.results[flag]
+ if ok {
+ return val
+ }
+ logrus.Debugf("unable to find flag %s", flag)
+ return nil
+}
+
+// Bool is a wrapper to get a bool value from GenericCLIResults
+func (f GenericCLIResults) Bool(flag string) bool {
+ r := f.findResult(flag)
+ if r == nil {
+ return false
+ }
+ return r.Value().(bool)
+}
+
+// String is a wrapper to get a string value from GenericCLIResults
+func (f GenericCLIResults) String(flag string) string {
+ r := f.findResult(flag)
+ if r == nil {
+ return ""
+ }
+ return r.Value().(string)
+}
+
+// Uint is a wrapper to get an uint value from GenericCLIResults
+func (f GenericCLIResults) Uint(flag string) uint {
+ r := f.findResult(flag)
+ if r == nil {
+ return 0
+ }
+ return r.Value().(uint)
+}
+
+// StringSlice is a wrapper to get a stringslice value from GenericCLIResults
+func (f GenericCLIResults) StringSlice(flag string) []string {
+ r := f.findResult(flag)
+ if r == nil {
+ return []string{}
+ }
+ return r.Value().([]string)
+}
+
+// StringArray is a wrapper to get a stringslice value from GenericCLIResults
+func (f GenericCLIResults) StringArray(flag string) []string {
+ r := f.findResult(flag)
+ if r == nil {
+ return []string{}
+ }
+ return r.Value().([]string)
+}
+
+// Uint64 is a wrapper to get an uint64 value from GenericCLIResults
+func (f GenericCLIResults) Uint64(flag string) uint64 {
+ r := f.findResult(flag)
+ if r == nil {
+ return 0
+ }
+ return r.Value().(uint64)
+}
+
+// Int64 is a wrapper to get an int64 value from GenericCLIResults
+func (f GenericCLIResults) Int64(flag string) int64 {
+ r := f.findResult(flag)
+ if r == nil {
+ return 0
+ }
+ return r.Value().(int64)
+}
+
+// Int is a wrapper to get an int value from GenericCLIResults
+func (f GenericCLIResults) Int(flag string) int {
+ r := f.findResult(flag)
+ if r == nil {
+ return 0
+ }
+ return r.Value().(int)
+}
+
+// Float64 is a wrapper to get an float64 value from GenericCLIResults
+func (f GenericCLIResults) Float64(flag string) float64 {
+ r := f.findResult(flag)
+ if r == nil {
+ return 0
+ }
+ return r.Value().(float64)
+}
+
+// Float64 is a wrapper to get an float64 value from GenericCLIResults
+func (f GenericCLIResults) Changed(flag string) bool {
+ r := f.findResult(flag)
+ if r == nil {
+ return false
+ }
+ return r.IsSet()
+}
+
+// IsSet ...
+func (c CRStringSlice) IsSet() bool { return c.Changed }
+
+// Name ...
+func (c CRStringSlice) Name() string { return c.Flag }
+
+// Value ...
+func (c CRStringSlice) Value() interface{} { return c.Val }
+
+// IsSet ...
+func (c CRString) IsSet() bool { return c.Changed }
+
+// Name ...
+func (c CRString) Name() string { return c.Flag }
+
+// Value ...
+func (c CRString) Value() interface{} { return c.Val }
+
+// IsSet ...
+func (c CRUint64) IsSet() bool { return c.Changed }
+
+// Name ...
+func (c CRUint64) Name() string { return c.Flag }
+
+// Value ...
+func (c CRUint64) Value() interface{} { return c.Val }
+
+// IsSet ...
+func (c CRFloat64) IsSet() bool { return c.Changed }
+
+// Name ...
+func (c CRFloat64) Name() string { return c.Flag }
+
+// Value ...
+func (c CRFloat64) Value() interface{} { return c.Val }
+
+// IsSet ...
+func (c CRBool) IsSet() bool { return c.Changed }
+
+// Name ...
+func (c CRBool) Name() string { return c.Flag }
+
+// Value ...
+func (c CRBool) Value() interface{} { return c.Val }
+
+// IsSet ...
+func (c CRInt64) IsSet() bool { return c.Changed }
+
+// Name ...
+func (c CRInt64) Name() string { return c.Flag }
+
+// Value ...
+func (c CRInt64) Value() interface{} { return c.Val }
+
+// IsSet ...
+func (c CRUint) IsSet() bool { return c.Changed }
+
+// Name ...
+func (c CRUint) Name() string { return c.Flag }
+
+// Value ...
+func (c CRUint) Value() interface{} { return c.Val }
+
+// IsSet ...
+func (c CRInt) IsSet() bool { return c.Changed }
+
+// Name ...
+func (c CRInt) Name() string { return c.Flag }
+
+// Value ...
+func (c CRInt) Value() interface{} { return c.Val }
+
+// IsSet ...
+func (c CRStringArray) IsSet() bool { return c.Changed }
+
+// Name ...
+func (c CRStringArray) Name() string { return c.Flag }
+
+// Value ...
+func (c CRStringArray) Value() interface{} { return c.Val }
diff --git a/cmd/podman/shared/intermediate_varlink.go b/pkg/varlinkapi/intermediate_varlink.go
index 82594fb40..21c57d4f4 100644
--- a/cmd/podman/shared/intermediate_varlink.go
+++ b/pkg/varlinkapi/intermediate_varlink.go
@@ -1,14 +1,29 @@
// +build varlink remoteclient
-package shared
+package varlinkapi
import (
- "github.com/containers/libpod/cmd/podman/cliconfig"
+ "github.com/containers/common/pkg/config"
"github.com/containers/libpod/pkg/rootless"
iopodman "github.com/containers/libpod/pkg/varlink"
"github.com/pkg/errors"
)
+//FIXME these are duplicated here to resolve a circular
+//import with cmd/podman/common.
+var (
+ // DefaultHealthCheckInterval default value
+ DefaultHealthCheckInterval = "30s"
+ // DefaultHealthCheckRetries default value
+ DefaultHealthCheckRetries uint = 3
+ // DefaultHealthCheckStartPeriod default value
+ DefaultHealthCheckStartPeriod = "0s"
+ // DefaultHealthCheckTimeout default value
+ DefaultHealthCheckTimeout = "30s"
+ // DefaultImageVolume default value
+ DefaultImageVolume = "bind"
+)
+
// StringSliceToPtr converts a genericcliresult value into a *[]string
func StringSliceToPtr(g GenericCLIResult) *[]string {
if !g.IsSet() {
@@ -315,8 +330,8 @@ func intFromVarlink(v *int64, flagName string, defaultValue *int) CRInt {
// VarlinkCreateToGeneric creates a GenericCLIResults from the varlink create
// structure.
func VarlinkCreateToGeneric(opts iopodman.Create) GenericCLIResults {
-
- defaultContainerConfig := cliconfig.GetDefaultConfig()
+ // FIXME this will need to be fixed!!!!! With containers conf
+ //defaultContainerConfig := cliconfig.GetDefaultConfig()
// TODO | WARN
// We do not get a default network over varlink. Unlike the other default values for some cli
// elements, it seems it gets set to the default anyway.
@@ -328,6 +343,8 @@ func VarlinkCreateToGeneric(opts iopodman.Create) GenericCLIResults {
netModeDefault = "slirp4netns"
}
+ shmSize := config.DefaultShmSize
+
m := make(map[string]GenericCLIResult)
m["add-host"] = stringSliceFromVarlink(opts.AddHost, "add-host", nil)
m["annotation"] = stringSliceFromVarlink(opts.Annotation, "annotation", nil)
@@ -364,12 +381,12 @@ func VarlinkCreateToGeneric(opts iopodman.Create) GenericCLIResults {
m["gidmap"] = stringSliceFromVarlink(opts.Gidmap, "gidmap", nil)
m["group-add"] = stringSliceFromVarlink(opts.Groupadd, "group-add", nil)
m["healthcheck-command"] = stringFromVarlink(opts.HealthcheckCommand, "healthcheck-command", nil)
- m["healthcheck-interval"] = stringFromVarlink(opts.HealthcheckInterval, "healthcheck-interval", &cliconfig.DefaultHealthCheckInterval)
- m["healthcheck-retries"] = uintFromVarlink(opts.HealthcheckRetries, "healthcheck-retries", &cliconfig.DefaultHealthCheckRetries)
- m["healthcheck-start-period"] = stringFromVarlink(opts.HealthcheckStartPeriod, "healthcheck-start-period", &cliconfig.DefaultHealthCheckStartPeriod)
- m["healthcheck-timeout"] = stringFromVarlink(opts.HealthcheckTimeout, "healthcheck-timeout", &cliconfig.DefaultHealthCheckTimeout)
+ m["healthcheck-interval"] = stringFromVarlink(opts.HealthcheckInterval, "healthcheck-interval", &DefaultHealthCheckInterval)
+ m["healthcheck-retries"] = uintFromVarlink(opts.HealthcheckRetries, "healthcheck-retries", &DefaultHealthCheckRetries)
+ m["healthcheck-start-period"] = stringFromVarlink(opts.HealthcheckStartPeriod, "healthcheck-start-period", &DefaultHealthCheckStartPeriod)
+ m["healthcheck-timeout"] = stringFromVarlink(opts.HealthcheckTimeout, "healthcheck-timeout", &DefaultHealthCheckTimeout)
m["hostname"] = stringFromVarlink(opts.Hostname, "hostname", nil)
- m["image-volume"] = stringFromVarlink(opts.ImageVolume, "image-volume", &cliconfig.DefaultImageVolume)
+ m["image-volume"] = stringFromVarlink(opts.ImageVolume, "image-volume", &DefaultImageVolume)
m["init"] = boolFromVarlink(opts.Init, "init", false)
m["init-path"] = stringFromVarlink(opts.InitPath, "init-path", nil)
m["interactive"] = boolFromVarlink(opts.Interactive, "interactive", false)
@@ -406,7 +423,7 @@ func VarlinkCreateToGeneric(opts iopodman.Create) GenericCLIResults {
m["rm"] = boolFromVarlink(opts.Rm, "rm", false)
m["rootfs"] = boolFromVarlink(opts.Rootfs, "rootfs", false)
m["security-opt"] = stringArrayFromVarlink(opts.SecurityOpt, "security-opt", nil)
- m["shm-size"] = stringFromVarlink(opts.ShmSize, "shm-size", &defaultContainerConfig.Containers.ShmSize)
+ m["shm-size"] = stringFromVarlink(opts.ShmSize, "shm-size", &shmSize)
m["stop-signal"] = stringFromVarlink(opts.StopSignal, "stop-signal", nil)
m["stop-timeout"] = uintFromVarlink(opts.StopTimeout, "stop-timeout", nil)
m["storage-opt"] = stringSliceFromVarlink(opts.StorageOpt, "storage-opt", nil)
diff --git a/pkg/varlinkapi/pods.go b/pkg/varlinkapi/pods.go
index 94add1b6c..5a9360447 100644
--- a/pkg/varlinkapi/pods.go
+++ b/pkg/varlinkapi/pods.go
@@ -5,11 +5,14 @@ package varlinkapi
import (
"encoding/json"
"fmt"
+ "strconv"
"syscall"
- "github.com/containers/libpod/cmd/podman/shared"
+ "github.com/cri-o/ocicni/pkg/ocicni"
+ "github.com/docker/go-connections/nat"
+ "github.com/pkg/errors"
+
"github.com/containers/libpod/libpod"
- "github.com/containers/libpod/pkg/adapter/shortcuts"
iopodman "github.com/containers/libpod/pkg/varlink"
)
@@ -18,7 +21,7 @@ func (i *VarlinkAPI) CreatePod(call iopodman.VarlinkCall, create iopodman.PodCre
var options []libpod.PodCreateOption
if create.Infra {
options = append(options, libpod.WithInfraContainer())
- nsOptions, err := shared.GetNamespaceOptions(create.Share)
+ nsOptions, err := GetNamespaceOptions(create.Share)
if err != nil {
return err
}
@@ -44,7 +47,7 @@ func (i *VarlinkAPI) CreatePod(call iopodman.VarlinkCall, create iopodman.PodCre
if !create.Infra {
return call.ReplyErrorOccurred("you must have an infra container to publish port bindings to the host")
}
- portBindings, err := shared.CreatePortBindings(create.Publish)
+ portBindings, err := CreatePortBindings(create.Publish)
if err != nil {
return call.ReplyErrorOccurred(err.Error())
}
@@ -70,7 +73,7 @@ func (i *VarlinkAPI) ListPods(call iopodman.VarlinkCall) error {
if err != nil {
return call.ReplyErrorOccurred(err.Error())
}
- opts := shared.PsOptions{}
+ opts := PsOptions{}
for _, pod := range pods {
listPod, err := makeListPod(pod, opts)
if err != nil {
@@ -87,7 +90,7 @@ func (i *VarlinkAPI) GetPod(call iopodman.VarlinkCall, name string) error {
if err != nil {
return call.ReplyPodNotFound(name, err.Error())
}
- opts := shared.PsOptions{}
+ opts := PsOptions{}
listPod, err := makeListPod(pod, opts)
if err != nil {
@@ -100,7 +103,7 @@ func (i *VarlinkAPI) GetPod(call iopodman.VarlinkCall, name string) error {
// GetPodsByStatus returns a slice of pods filtered by a libpod status
func (i *VarlinkAPI) GetPodsByStatus(call iopodman.VarlinkCall, statuses []string) error {
filterFuncs := func(p *libpod.Pod) bool {
- state, _ := shared.GetPodStatus(p)
+ state, _ := p.GetPodStatus()
for _, status := range statuses {
if state == status {
return true
@@ -290,11 +293,11 @@ func (i *VarlinkAPI) GetPodStats(call iopodman.VarlinkCall, name string) error {
return call.ReplyGetPodStats(pod.ID(), containersStats)
}
-// GetPodsByContext returns a slice of pod ids based on all, latest, or a list
+// getPodsByContext returns a slice of pod ids based on all, latest, or a list
func (i *VarlinkAPI) GetPodsByContext(call iopodman.VarlinkCall, all, latest bool, input []string) error {
var podids []string
- pods, err := shortcuts.GetPodsByContext(all, latest, input, i.Runtime)
+ pods, err := getPodsByContext(all, latest, input, i.Runtime)
if err != nil {
return call.ReplyErrorOccurred(err.Error())
}
@@ -337,7 +340,7 @@ func (i *VarlinkAPI) TopPod(call iopodman.VarlinkCall, name string, latest bool,
return call.ReplyPodNotFound(name, err.Error())
}
- podStatus, err := shared.GetPodStatus(pod)
+ podStatus, err := pod.GetPodStatus()
if err != nil {
return call.ReplyErrorOccurred(fmt.Sprintf("unable to get status for pod %s", pod.ID()))
}
@@ -350,3 +353,36 @@ func (i *VarlinkAPI) TopPod(call iopodman.VarlinkCall, name string, latest bool,
}
return call.ReplyTopPod(reply)
}
+
+// CreatePortBindings iterates ports mappings and exposed ports into a format CNI understands
+func CreatePortBindings(ports []string) ([]ocicni.PortMapping, error) {
+ var portBindings []ocicni.PortMapping
+ // The conversion from []string to natBindings is temporary while mheon reworks the port
+ // deduplication code. Eventually that step will not be required.
+ _, natBindings, err := nat.ParsePortSpecs(ports)
+ if err != nil {
+ return nil, err
+ }
+ for containerPb, hostPb := range natBindings {
+ var pm ocicni.PortMapping
+ pm.ContainerPort = int32(containerPb.Int())
+ for _, i := range hostPb {
+ var hostPort int
+ var err error
+ pm.HostIP = i.HostIP
+ if i.HostPort == "" {
+ hostPort = containerPb.Int()
+ } else {
+ hostPort, err = strconv.Atoi(i.HostPort)
+ if err != nil {
+ return nil, errors.Wrapf(err, "unable to convert host port to integer")
+ }
+ }
+
+ pm.HostPort = int32(hostPort)
+ pm.Protocol = containerPb.Proto()
+ portBindings = append(portBindings, pm)
+ }
+ }
+ return portBindings, nil
+}
diff --git a/pkg/adapter/shortcuts/shortcuts.go b/pkg/varlinkapi/shortcuts.go
index 8a8459c6c..771129404 100644
--- a/pkg/adapter/shortcuts/shortcuts.go
+++ b/pkg/varlinkapi/shortcuts.go
@@ -1,13 +1,13 @@
-package shortcuts
+package varlinkapi
import (
"github.com/containers/libpod/libpod"
"github.com/sirupsen/logrus"
)
-// GetPodsByContext returns a slice of pods. Note that all, latest and pods are
+// getPodsByContext returns a slice of pods. Note that all, latest and pods are
// mutually exclusive arguments.
-func GetPodsByContext(all, latest bool, pods []string, runtime *libpod.Runtime) ([]*libpod.Pod, error) {
+func getPodsByContext(all, latest bool, pods []string, runtime *libpod.Runtime) ([]*libpod.Pod, error) {
var outpods []*libpod.Pod
if all {
return runtime.GetAllPods()
@@ -36,9 +36,9 @@ func GetPodsByContext(all, latest bool, pods []string, runtime *libpod.Runtime)
return outpods, err
}
-// GetContainersByContext gets pods whether all, latest, or a slice of names/ids
+// getContainersByContext gets pods whether all, latest, or a slice of names/ids
// is specified.
-func GetContainersByContext(all, latest bool, names []string, runtime *libpod.Runtime) (ctrs []*libpod.Container, err error) {
+func getContainersByContext(all, latest bool, names []string, runtime *libpod.Runtime) (ctrs []*libpod.Container, err error) {
var ctr *libpod.Container
ctrs = []*libpod.Container{}
diff --git a/pkg/varlinkapi/util.go b/pkg/varlinkapi/util.go
index 6b196f384..f73e77249 100644
--- a/pkg/varlinkapi/util.go
+++ b/pkg/varlinkapi/util.go
@@ -9,7 +9,6 @@ import (
"time"
"github.com/containers/buildah"
- "github.com/containers/libpod/cmd/podman/shared"
"github.com/containers/libpod/libpod"
"github.com/containers/libpod/libpod/define"
"github.com/containers/libpod/pkg/channelwriter"
@@ -22,12 +21,12 @@ func getContext() context.Context {
return context.TODO()
}
-func makeListContainer(containerID string, batchInfo shared.BatchContainerStruct) iopodman.Container {
+func makeListContainer(containerID string, batchInfo BatchContainerStruct) iopodman.Container {
var (
mounts []iopodman.ContainerMount
ports []iopodman.ContainerPortMappings
)
- ns := shared.GetNamespaces(batchInfo.Pid)
+ ns := GetNamespaces(batchInfo.Pid)
for _, mount := range batchInfo.ConConfig.Spec.Mounts {
m := iopodman.ContainerMount{
@@ -85,7 +84,7 @@ func makeListContainer(containerID string, batchInfo shared.BatchContainerStruct
return lc
}
-func makeListPodContainers(containerID string, batchInfo shared.BatchContainerStruct) iopodman.ListPodContainerInfo {
+func makeListPodContainers(containerID string, batchInfo BatchContainerStruct) iopodman.ListPodContainerInfo {
lc := iopodman.ListPodContainerInfo{
Id: containerID,
Status: batchInfo.ConState.String(),
@@ -94,10 +93,10 @@ func makeListPodContainers(containerID string, batchInfo shared.BatchContainerSt
return lc
}
-func makeListPod(pod *libpod.Pod, batchInfo shared.PsOptions) (iopodman.ListPodData, error) {
+func makeListPod(pod *libpod.Pod, batchInfo PsOptions) (iopodman.ListPodData, error) {
var listPodsContainers []iopodman.ListPodContainerInfo
var errPodData = iopodman.ListPodData{}
- status, err := shared.GetPodStatus(pod)
+ status, err := pod.GetPodStatus()
if err != nil {
return errPodData, err
}
@@ -106,7 +105,7 @@ func makeListPod(pod *libpod.Pod, batchInfo shared.PsOptions) (iopodman.ListPodD
return errPodData, err
}
for _, ctr := range containers {
- batchInfo, err := shared.BatchContainerOp(ctr, batchInfo)
+ batchInfo, err := BatchContainerOp(ctr, batchInfo)
if err != nil {
return errPodData, err
}
@@ -179,13 +178,13 @@ func derefString(in *string) string {
return *in
}
-func makePsOpts(inOpts iopodman.PsOpts) shared.PsOptions {
+func makePsOpts(inOpts iopodman.PsOpts) PsOptions {
last := 0
if inOpts.Last != nil {
lastT := *inOpts.Last
last = int(lastT)
}
- return shared.PsOptions{
+ return PsOptions{
All: inOpts.All,
Last: last,
Latest: derefBool(inOpts.Latest),
diff --git a/pkg/varlinkapi/volumes.go b/pkg/varlinkapi/volumes.go
index ff72c3869..aa0eb1fb5 100644
--- a/pkg/varlinkapi/volumes.go
+++ b/pkg/varlinkapi/volumes.go
@@ -3,10 +3,11 @@
package varlinkapi
import (
+ "context"
"encoding/json"
- "github.com/containers/libpod/cmd/podman/shared"
"github.com/containers/libpod/libpod"
+ "github.com/containers/libpod/pkg/domain/infra/abi/parse"
iopodman "github.com/containers/libpod/pkg/varlink"
)
@@ -24,7 +25,7 @@ func (i *VarlinkAPI) VolumeCreate(call iopodman.VarlinkCall, options iopodman.Vo
volumeOptions = append(volumeOptions, libpod.WithVolumeLabels(options.Labels))
}
if len(options.Options) > 0 {
- parsedOptions, err := shared.ParseVolumeOptions(options.Options)
+ parsedOptions, err := parse.ParseVolumeOptions(options.Options)
if err != nil {
return call.ReplyErrorOccurred(err.Error())
}
@@ -39,7 +40,7 @@ func (i *VarlinkAPI) VolumeCreate(call iopodman.VarlinkCall, options iopodman.Vo
// VolumeRemove removes volumes by options.All or options.Volumes
func (i *VarlinkAPI) VolumeRemove(call iopodman.VarlinkCall, options iopodman.VolumeRemoveOpts) error {
- success, failed, err := shared.SharedRemoveVolumes(getContext(), i.Runtime, options.Volumes, options.All, options.Force)
+ success, failed, err := SharedRemoveVolumes(getContext(), i.Runtime, options.Volumes, options.All, options.Force)
if err != nil {
return call.ReplyErrorOccurred(err.Error())
}
@@ -122,3 +123,43 @@ func (i *VarlinkAPI) VolumesPrune(call iopodman.VarlinkCall) error {
}
return call.ReplyVolumesPrune(prunedNames, prunedErrors)
}
+
+// Remove given set of volumes
+func SharedRemoveVolumes(ctx context.Context, runtime *libpod.Runtime, vols []string, all, force bool) ([]string, map[string]error, error) {
+ var (
+ toRemove []*libpod.Volume
+ success []string
+ failed map[string]error
+ )
+
+ failed = make(map[string]error)
+
+ if all {
+ vols, err := runtime.Volumes()
+ if err != nil {
+ return nil, nil, err
+ }
+ toRemove = vols
+ } else {
+ for _, v := range vols {
+ vol, err := runtime.LookupVolume(v)
+ if err != nil {
+ failed[v] = err
+ continue
+ }
+ toRemove = append(toRemove, vol)
+ }
+ }
+
+ // We could parallelize this, but I haven't heard anyone complain about
+ // performance here yet, so hold off.
+ for _, vol := range toRemove {
+ if err := runtime.RemoveVolume(ctx, vol, force); err != nil {
+ failed[vol.Name()] = err
+ continue
+ }
+ success = append(success, vol.Name())
+ }
+
+ return success, failed, nil
+}