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

node: updating init containers for node daemonset and node cleanup da… #344

Merged
merged 5 commits into from
Apr 10, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions pkg/common/common_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ type FakeDiscovery struct {
}

func TestInitContainerArgs(t *testing.T) {
want := []string{"-c", `if [ -d "/opt/CrowdStrike/falconstore" ] ; then echo "Re-creating /opt/CrowdStrike/falconstore as it is a directory instead of a file"; rm -rf /opt/CrowdStrike/falconstore; fi; mkdir -p /opt/CrowdStrike && touch /opt/CrowdStrike/falconstore`}
want := []string{"-c", `if [ -x "/opt/CrowdStrike/falcon-daemonset-init" ]; then echo "Executing falcon-daemonset-init -i"; falcon-daemonset-init -i ; else if [ -d "/host_opt/CrowdStrike/falconstore" ]; then echo "Re-creating /opt/CrowdStrike/falconstore as it is a directory instead of a file"; rm -rf /host_opt/CrowdStrike/falconstore; fi; mkdir -p /host_opt/CrowdStrike/ && touch /host_opt/CrowdStrike/falconstore; fi`}
if got := InitContainerArgs(); !reflect.DeepEqual(got, want) {
t.Errorf("InitContainerArgs() = %v, want %v", got, want)
}
}

func TestInitCleanupArgs(t *testing.T) {
want := []string{"-c", "rm -rf /opt/CrowdStrike"}
want := []string{"-c", `if [ -x "/opt/CrowdStrike/falcon-daemonset-init" ]; then echo "Running falcon-daemonset-init -u"; falcon-daemonset-init -u; else echo "Manually removing /opt/CrowdStrike"; rm -rf /opt/CrowdStrike; fi`}
if got := InitCleanupArgs(); !reflect.DeepEqual(got, want) {
t.Errorf("InitCleanupArgs() = %v, want %v", got, want)
}
Expand Down
22 changes: 14 additions & 8 deletions pkg/common/constants.go
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
package common

const (
FalconContainerInjection = "sensor.falcon-system.crowdstrike.com/injection"
FalconContainerInjectorTLSName = "injector-tls"
FalconHostInstallDir = "/opt"
FalconDataDir = "/opt/CrowdStrike"
FalconStoreFile = "/opt/CrowdStrike/falconstore"
FalconContainerProbePath = "/live"
FalconServiceHTTPSName = "https"
FalconServiceHTTPSPort = 443
FalconContainerInjection = "sensor.falcon-system.crowdstrike.com/injection"
FalconContainerInjectorTLSName = "injector-tls"
FalconHostInstallDir = "/opt"
FalconInitHostInstallDir = "/host_opt"
FalconDataDir = "/opt/CrowdStrike"
FalconInitDataDir = "/host_opt/CrowdStrike/"
FalconStoreFile = "/opt/CrowdStrike/falconstore"
FalconInitStoreFile = "/host_opt/CrowdStrike/falconstore"
FalconDaemonsetInitBinary = "/opt/CrowdStrike/falcon-daemonset-init"
FalconDaemonsetInitBinaryInvocation = "falcon-daemonset-init -i"
FalconDaemonsetCleanupBinaryInvocation = "falcon-daemonset-init -u"
FalconContainerProbePath = "/live"
FalconServiceHTTPSName = "https"
FalconServiceHTTPSPort = 443

FalconInstanceNameKey = "crowdstrike.com/name"
FalconInstanceKey = "crowdstrike.com/instance"
Expand Down
19 changes: 14 additions & 5 deletions pkg/common/funcs.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,26 @@ import (
func InitContainerArgs() []string {
return []string{
"-c",
`if [ -d "/opt/CrowdStrike/falconstore" ] ; then echo "Re-creating /opt/CrowdStrike/falconstore as it is a directory instead of a file"; rm -rf /opt/CrowdStrike/falconstore; fi; ` +
"mkdir -p " + FalconDataDir +
" && " +
"touch " + FalconStoreFile,
// Versions of falcon-sensor 6.53+ will contain an init binary that we invoke
`if [ -x "` + FalconDaemonsetInitBinary + `" ]; then ` +
`echo "Executing ` + FalconDaemonsetInitBinaryInvocation + `"; ` + FalconDaemonsetInitBinaryInvocation + ` ; else ` +
`if [ -d "` + FalconInitStoreFile + `" ]; then echo "Re-creating ` + FalconStoreFile + ` as it is a directory instead of a file"; rm -rf ` + FalconInitStoreFile + `; fi; ` +
`mkdir -p ` + FalconInitDataDir +
` && ` +
`touch ` + FalconInitStoreFile +
`; fi`,
}
}

func InitCleanupArgs() []string {
return []string{
"-c",
"rm -rf " + FalconDataDir,
// Versions of falcon-sensor 6.53+ will contain an init binary that we invoke with a cleanup argument
`if [ -x "` + FalconDaemonsetInitBinary + `" ]; then ` +
`echo "Running ` + FalconDaemonsetCleanupBinaryInvocation + `"; ` + FalconDaemonsetCleanupBinaryInvocation + `; else ` +
`echo "Manually removing ` + FalconDataDir + `"; ` +
`rm -rf ` + FalconDataDir +
`; fi`,
}
}

Expand Down
8 changes: 7 additions & 1 deletion pkg/node/assets/daemonset.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,15 @@ func Daemonset(dsName, image, serviceAccount string, node *falconv1alpha1.Falcon
VolumeMounts: []corev1.VolumeMount{
{
Name: "falconstore-hostdir",
MountPath: common.FalconHostInstallDir,
MountPath: common.FalconInitHostInstallDir,
},
},
SecurityContext: &corev1.SecurityContext{
Privileged: &privileged,
RunAsUser: &runAs,
ReadOnlyRootFilesystem: &readOnlyFs,
AllowPrivilegeEscalation: &escalation,
},
},
},
ServiceAccountName: serviceAccount,
Expand Down
8 changes: 7 additions & 1 deletion pkg/node/assets/daemonset_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -152,10 +152,16 @@ func TestDaemonset(t *testing.T) {
Image: image,
Command: common.FalconShellCommand,
Args: common.InitContainerArgs(),
SecurityContext: &corev1.SecurityContext{
Privileged: &privileged,
RunAsUser: &runAs,
ReadOnlyRootFilesystem: &readOnlyFs,
AllowPrivilegeEscalation: &escalation,
},
VolumeMounts: []corev1.VolumeMount{
{
Name: "falconstore-hostdir",
MountPath: common.FalconHostInstallDir,
MountPath: common.FalconInitHostInstallDir,
},
},
},
Expand Down