Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

kvm: provide solution if user doesn't belong to libvirt group #10712

Merged
merged 2 commits into from
Mar 6, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions cmd/minikube/cmd/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -746,6 +746,11 @@ func validateDriver(ds registry.DriverState, existing *config.ClusterConfig) {
return
}

r := reason.MatchKnownIssue(reason.Kind{}, st.Error, runtime.GOOS)
if r.ID != "" {
exitIfNotForced(*r, st.Error.Error())
}

if !st.Installed {
exit.Message(reason.Kind{
ID: fmt.Sprintf("PROVIDER_%s_NOT_FOUND", strings.ToUpper(name)),
Expand Down
12 changes: 12 additions & 0 deletions pkg/minikube/reason/known_issues.go
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,18 @@ var providerIssues = []match{
},

// KVM hypervisor
{
Kind: Kind{
ID: "PR_KVM_USER_PERMISSION",
ExitCode: ExProviderPermission,
Style: style.NotAllowed,
Advice: "Ensure that you are a member of the appropriate libvirt group (remember to relogin for group changes to take effect!)",
URL: "https://minikube.sigs.k8s.io/docs/reference/drivers/kvm2/",
Issues: []int{5617, 10070},
},
Regexp: re(`libvirt group membership check failed`),
GOOS: []string{"linux"},
},
{
Kind: Kind{
ID: "PR_KVM_CAPABILITIES",
Expand Down
55 changes: 51 additions & 4 deletions pkg/minikube/registry/drvs/kvm2/kvm2.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import (
"fmt"
"os"
"os/exec"
"os/user"
"path/filepath"
"strings"
"time"
Expand Down Expand Up @@ -113,16 +114,39 @@ func status() registry.State {
return registry.State{Error: err, Fix: "Install libvirt", Doc: docURL}
}

member, err := isCurrentUserLibvirtGroupMember()
if err != nil {
return registry.State{
Installed: true,
Running: true,
// keep the error messsage in sync with reason.providerIssues(Kind.ID: "PR_KVM_USER_PERMISSION") regexp
Error: fmt.Errorf("libvirt group membership check failed:\n%v", err.Error()),
Reason: "PR_KVM_USER_PERMISSION",
Fix: "Check that libvirtd is properly installed and that you are a member of the appropriate libvirt group (remember to relogin for group changes to take effect!)",
Doc: docURL,
}
}
if !member {
return registry.State{
Installed: true,
Running: true,
// keep the error messsage in sync with reason.providerIssues(Kind.ID: "PR_KVM_USER_PERMISSION") regexp
Error: fmt.Errorf("libvirt group membership check failed:\nuser is not a member of the appropriate libvirt group"),
Reason: "PR_KVM_USER_PERMISSION",
Fix: "Check that libvirtd is properly installed and that you are a member of the appropriate libvirt group (remember to relogin for group changes to take effect!)",
Doc: docURL,
}
}

// On Ubuntu 19.10 (libvirt 5.4), this fails if LIBVIRT_DEFAULT_URI is unset
cmd := exec.CommandContext(ctx, path, "domcapabilities", "--virttype", "kvm")
cmd.Env = append(os.Environ(), fmt.Sprintf("LIBVIRT_DEFAULT_URI=%s", defaultURI()))

out, err := cmd.CombinedOutput()
if err != nil {
return registry.State{
Installed: true,
Running: true,
Error: fmt.Errorf("%s failed:\n%s", strings.Join(cmd.Args, " "), strings.TrimSpace(string(out))),
Error: fmt.Errorf("%s failed:\n%s\n%v", strings.Join(cmd.Args, " "), strings.TrimSpace(string(out)), err),
Fix: "Follow your Linux distribution instructions for configuring KVM",
Doc: docURL,
}
Expand All @@ -136,9 +160,32 @@ func status() registry.State {
Installed: true,
Running: true,
Error: fmt.Errorf("%s failed:\n%s", strings.Join(cmd.Args, " "), strings.TrimSpace(string(out))),
Fix: "Check that libvirtd is properly installed and that you are a member of the appropriate libvirt group",
Fix: "Check that libvirtd is properly installed and that you are a member of the appropriate libvirt group (remember to relogin for group changes to take effect!)",
Doc: docURL,
}
}
return registry.State{Installed: true, Healthy: true}

return registry.State{Installed: true, Healthy: true, Running: true}
}

// isCurrentUserLibvirtGroupMember returns if the current user is a member of "libvirt*" group.
func isCurrentUserLibvirtGroupMember() (bool, error) {
usr, err := user.Current()
if err != nil {
return false, fmt.Errorf("error getting current user: %w", err)
}
gids, err := usr.GroupIds()
if err != nil {
return false, fmt.Errorf("error getting current user's GIDs: %w", err)
}
for _, gid := range gids {
grp, err := user.LookupGroupId(gid)
if err != nil {
return false, fmt.Errorf("error getting current user's group with GID %q: %w", gid, err)
}
if strings.HasPrefix(grp.Name, "libvirt") {
return true, nil
}
}
return false, nil
}