1
0

🔨」 fix(Mariadb): entrypoint working as expected

This commit is contained in:
2025-01-08 19:29:05 +01:00
parent 108b42eb98
commit ba5bfba30d
5 changed files with 104 additions and 16 deletions

View File

@ -7,11 +7,58 @@ import (
"os" "os"
"os/exec" "os/exec"
"time" "time"
"strings"
"bufio"
"git.keyzox.me/42_adjoly/inception/internal/env" "git.keyzox.me/42_adjoly/inception/internal/env"
"git.keyzox.me/42_adjoly/inception/internal/log" "git.keyzox.me/42_adjoly/inception/internal/log"
) )
func removeSkipNetworking(filePath string) error {
// Open the file for reading
file, err := os.Open(filePath)
if err != nil {
return fmt.Errorf("failed to open file: %v", err)
}
defer file.Close()
// Create a temporary slice to store updated lines
var updatedLines []string
// Read the file line by line
scanner := bufio.NewScanner(file)
for scanner.Scan() {
line := scanner.Text()
// Skip lines that contain "skip-networking"
if !strings.Contains(line, "skip-networking") {
updatedLines = append(updatedLines, line)
}
}
// Check for scanner errors
if err := scanner.Err(); err != nil {
return fmt.Errorf("error reading file: %v", err)
}
// Open the file for writing (overwrite mode)
file, err = os.Create(filePath)
if err != nil {
return fmt.Errorf("failed to open file for writing: %v", err)
}
defer file.Close()
// Write the updated lines back to the file
writer := bufio.NewWriter(file)
for _, line := range updatedLines {
_, err := writer.WriteString(line + "\n")
if err != nil {
return fmt.Errorf("failed to write to file: %v", err)
}
}
return writer.Flush()
}
func createDBDir(dataDir string) { func createDBDir(dataDir string) {
if dataDir == "/var/lib/mysql" { if dataDir == "/var/lib/mysql" {
return return
@ -33,27 +80,41 @@ func checkOlderDB(dataDir string) bool {
return true return true
} }
func waitForMariaDB() { func waitForMariaDB(rootPass string) {
for i := 0; i < 30; i++ { for i := 0; i < 30; i++ {
cmd := exec.Command("mysql", "-uroot", "-e", "SELECT 1") cmd := exec.Command("mariadb", "-uroot", "-p"+escapePassword(rootPass), "-e", "SELECT 1")
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
if err := cmd.Run(); err == nil { if err := cmd.Run(); err == nil {
fmt.Println("MariaDB is ready.")
return return
} else {
fmt.Printf("MariaDB init process in progress... (%d/%d): %v\n", i+1, 30, err)
} }
fmt.Println("MariaDB init process in progress...")
time.Sleep(1 * time.Second) time.Sleep(1 * time.Second)
} }
fmt.Println("MariaDB init process failed.") fmt.Println("MariaDB init process failed.")
os.Exit(1) os.Exit(1)
} }
func escapeIdentifier(identifier string) string {
// Replace backticks with double backticks to safely escape identifiers
return fmt.Sprintf("`%s`", strings.ReplaceAll(identifier, "'", "\""))
}
func escapePassword(password string) string {
// Escape single quotes in passwords
return strings.ReplaceAll(password, "'", "\\'")
}
func configureMariaDB(rootPassword, user, password, database string) { func configureMariaDB(rootPassword, user, password, database string) {
cmd := exec.Command("mysql", "-uroot", "-e", fmt.Sprintf(` cmd := exec.Command("mariadb", "-uroot", "-p"+rootPassword, "-e", fmt.Sprintf(`
ALTER USER 'root'@'localhost' IDENTIFIED BY '%s'; ALTER USER 'root'@'localhost' IDENTIFIED BY '%s';
CREATE DATABASE IF NOT EXISTS %s; CREATE DATABASE IF NOT EXISTS %s;
CREATE USER IF NOT EXISTS '%s'@'%%' IDENTIFIED BY '%s'; CREATE USER IF NOT EXISTS '%s'@'%%' IDENTIFIED BY '%s';
GRANT ALL PRIVILEGES ON %s.* TO '%s'@'%%'; GRANT ALL PRIVILEGES ON %s.* TO '%s'@'%%';
FLUSH PRIVILEGES; FLUSH PRIVILEGES;
`, rootPassword, database, user, password, database, user)) `, escapePassword(rootPassword), escapeIdentifier(database), escapeIdentifier(user), escapePassword(password), escapeIdentifier(database), escapeIdentifier(user)))
cmd.Stdout = os.Stdout cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr cmd.Stderr = os.Stderr
if err := cmd.Run(); err != nil { if err := cmd.Run(); err != nil {
@ -74,6 +135,7 @@ func main() {
user := env.FileEnv("MYSQL_USER", "mariadb") user := env.FileEnv("MYSQL_USER", "mariadb")
dbName := env.EnvCheck("MYSQL_DATABASE", "default") dbName := env.EnvCheck("MYSQL_DATABASE", "default")
dataDir := env.EnvCheck("DATADIR", "/var/lib/mysql") dataDir := env.EnvCheck("DATADIR", "/var/lib/mysql")
filePath := "/etc/my.cnf.d/mariadb-server.cnf"
oldDB := checkOlderDB(dataDir) oldDB := checkOlderDB(dataDir)
if oldDB == false { if oldDB == false {
@ -82,7 +144,6 @@ func main() {
cmd := exec.Command("mariadb-install-db", "--user=mysql", "--ldata="+dataDir) cmd := exec.Command("mariadb-install-db", "--user=mysql", "--ldata="+dataDir)
cmd.Stdout = os.Stdout cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr cmd.Stderr = os.Stderr
createDBDir(dataDir)
if err := cmd.Run(); err != nil { if err := cmd.Run(); err != nil {
_log.Log("error", "Error initializing MariaDB") _log.Log("error", "Error initializing MariaDB")
} }
@ -96,11 +157,18 @@ func main() {
os.Exit(1) os.Exit(1)
} }
// Wait for mariadb to start // Wait for mariadb to start
waitForMariaDB() waitForMariaDB(rootPass)
configureMariaDB(rootPass, user, pass, dbName) configureMariaDB(rootPass, user, pass, dbName)
if err := cmd.Process.Kill(); err != nil { if err := removeSkipNetworking(filePath); err != nil {
fmt.Printf("Error: %v\n", err)
} else {
fmt.Println("Successfully removed 'skip-networking' from the configuration file.")
}
cmd = exec.Command("mysqladmin", "-uroot", "-p"+rootPass, "shutdown")
if err := cmd.Run(); err != nil {
fmt.Printf("Error stopping MariaDB: %v\n", err) fmt.Printf("Error stopping MariaDB: %v\n", err)
} }
} }

View File

@ -3,11 +3,24 @@ package main
import ( import (
"database/sql" "database/sql"
"fmt" "fmt"
"strings"
"os"
"git.keyzox.me/42_adjoly/inception/internal/env" "git.keyzox.me/42_adjoly/inception/internal/env"
"git.keyzox.me/42_adjoly/inception/internal/log" "git.keyzox.me/42_adjoly/inception/internal/log"
) )
func escapeIdentifier(identifier string) string {
// Replace backticks with double backticks to safely escape identifiers
return fmt.Sprintf("`%s`", strings.ReplaceAll(identifier, "'", "\""))
}
func escapePassword(password string) string {
// Escape single quotes in passwords
return strings.ReplaceAll(password, "'", "\\'")
}
func checkHealth(host, user, pass, port, dbName string) bool { func checkHealth(host, user, pass, port, dbName string) bool {
dsn := fmt.Sprintf("%s:%s@tcp(%s:%s)/%s", user, pass, host, port, dbName) dsn := fmt.Sprintf("%s:%s@tcp(%s:%s)/%s", user, pass, host, port, dbName)
@ -23,14 +36,15 @@ func checkHealth(host, user, pass, port, dbName string) bool {
} }
func main() { func main() {
pass := env.FileEnv("MYSQL_PASSWORD", "default") pass := escapePassword(env.FileEnv("MYSQL_PASSWORD", "default"))
user := env.FileEnv("MYSQL_USER", "mariadb") user := escapeIdentifier(env.FileEnv("MYSQL_USER", "mariadb"))
dbName := env.EnvCheck("MYSQL_DATABASE", "default") dbName := escapeIdentifier(env.EnvCheck("MYSQL_DATABASE", "default"))
dbHost := "localhost" dbHost := escapeIdentifier("localhost")
res := checkHealth(dbHost, user, pass, "3306", dbName) res := checkHealth(dbHost, user, pass, "3306", dbName)
if res == true{ if res == true{
_log.Log("note", "Mariadb is healthy") _log.Log("note", "Mariadb is healthy")
os.Exit(0)
} }
_log.Log("error", "Health check failed") _log.Log("error", "Health check failed")
} }

View File

@ -1,8 +1,14 @@
[mariadb] [mariadb]
host-cache-size=0 host-cache-size=0
skip-name-resolve skip-name-resolve
port=3306
expire_logs_days=10 expire_logs_days=10
!includedir /etc/mysql/mariadb.conf.d
!includedir /etc/mysql/conf.d !includedir /etc/mysql/conf.d
[mysqld]
port=3306
socket=/run/mysqld/mysqld.sock
bind-address=0.0.0.0

View File

@ -13,7 +13,7 @@ services:
container_name: inception-nginx container_name: inception-nginx
build: build:
context: . context: .
dockerfile: docker/nginx/Dockerfile dockerfile: docker/nginx/dockerfile
networks: networks:
- inception - inception
environment: environment:

View File

@ -12,7 +12,7 @@ COPY go.mod /build/go.mod
COPY cmd /build/cmd COPY cmd /build/cmd
COPY internal /build/internal COPY internal /build/internal
RUN apk add --no-cache go mariadb tzdata \ RUN apk add --no-cache go mariadb tzdata mariadb-client \
&& cd /build \ && cd /build \
&& go build git.keyzox.me/42_adjoly/inception/cmd/mariadb/entrypoint \ && go build git.keyzox.me/42_adjoly/inception/cmd/mariadb/entrypoint \
&& go build git.keyzox.me/42_adjoly/inception/cmd/mariadb/healthcheck \ && go build git.keyzox.me/42_adjoly/inception/cmd/mariadb/healthcheck \
@ -29,7 +29,7 @@ RUN apk add --no-cache go mariadb tzdata \
ENV LANG=C.UTF-8 ENV LANG=C.UTF-8
COPY --chmod=0644 configs/mariadb/docker.cnf /etc/my.cnf.d/ COPY --chmod=0644 configs/mariadb/docker.cnf /etc/my.cnf.d/mariadb-server.cnf.d
VOLUME /var/lib/mysql VOLUME /var/lib/mysql