-
Notifications
You must be signed in to change notification settings - Fork 436
server: Add optional auth token #736
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
package server | ||
|
||
import ( | ||
"github.com/pkg/errors" | ||
"fmt" | ||
"io/ioutil" | ||
"path/filepath" | ||
|
@@ -10,8 +11,10 @@ import ( | |
corev1 "k8s.io/api/core/v1" | ||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
rest "k8s.io/client-go/rest" | ||
clientset "k8s.io/client-go/kubernetes" | ||
clientcmd "k8s.io/client-go/tools/clientcmd" | ||
clientcmdv1 "k8s.io/client-go/tools/clientcmd/api/v1" | ||
apierrors "k8s.io/apimachinery/pkg/api/errors" | ||
|
||
"github.com/openshift/machine-config-operator/pkg/generated/clientset/versioned/typed/machineconfiguration.openshift.io/v1" | ||
) | ||
|
@@ -22,13 +25,18 @@ const ( | |
inClusterConfig = "" | ||
|
||
bootstrapTokenDir = "/etc/mcs/bootstrap-token" | ||
|
||
componentNamespace = "openshift-machine-config-operator" | ||
ignitionAuth = "ignition-auth" | ||
) | ||
|
||
// ensure clusterServer implements the | ||
// Server interface. | ||
var _ = Server(&clusterServer{}) | ||
|
||
type clusterServer struct { | ||
// kubeClient is used for the Ignition secret currently | ||
kubeClient clientset.Interface | ||
// machineClient is used to interact with the | ||
// machine config, pool objects. | ||
machineClient v1.MachineconfigurationV1Interface | ||
|
@@ -48,17 +56,46 @@ func NewClusterServer(kubeConfig, apiserverURL string) (Server, error) { | |
return nil, fmt.Errorf("Failed to create Kubernetes rest client: %v", err) | ||
} | ||
|
||
kc, err := clientset.NewForConfig(restConfig) | ||
if err != nil { | ||
return nil, err | ||
} | ||
mc := v1.NewForConfigOrDie(restConfig) | ||
return &clusterServer{ | ||
kubeClient: kc, | ||
machineClient: mc, | ||
kubeconfigFunc: func() ([]byte, []byte, error) { return kubeconfigFromSecret(bootstrapTokenDir, apiserverURL) }, | ||
}, nil | ||
} | ||
|
||
// GetConfig fetches the machine config(type - Ignition) from the cluster, | ||
// based on the pool request. | ||
func (cs *clusterServer) GetConfig(cr poolRequest) (*ignv2_2types.Config, error) { | ||
mp, err := cs.machineClient.MachineConfigPools().Get(cr.machineConfigPool, metav1.GetOptions{}) | ||
func (cs *clusterServer) GetConfig(cr poolRequest, auth string) (*ignv2_2types.Config, error) { | ||
authSecretObj, err := cs.kubeClient.CoreV1().Secrets(componentNamespace).Get(ignitionAuth, metav1.GetOptions{}) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The ability to configure multiple secrets would make later rotation much easier. |
||
authEnabled := true | ||
if err != nil { | ||
// For backwards compat, allow any request if the secret isn't found | ||
if apierrors.IsNotFound(err) { | ||
authEnabled = false | ||
} else { | ||
return nil, errors.Wrapf(err, "getting ignition-auth") | ||
} | ||
} | ||
|
||
name := cr.machineConfigPool | ||
|
||
// If there's a secret, require that it was passed as a query parameter. | ||
if authEnabled { | ||
authSecret := string(authSecretObj.Data[name]) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If an administrator forgets to configure an authsecret for a new machine pool, this will fail open. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That's intentional for backcompat reasons. |
||
if auth != authSecret { | ||
return nil, &configError { | ||
msg: "Not authorized", | ||
forbidden: true, | ||
} | ||
} | ||
} | ||
|
||
mp, err := cs.machineClient.MachineConfigPools().Get(name, metav1.GetOptions{}) | ||
if err != nil { | ||
return nil, fmt.Errorf("could not fetch pool. err: %v", err) | ||
} | ||
|
Uh oh!
There was an error while loading. Please reload this page.