This repository has been archived by the owner on Oct 30, 2024. It is now read-only.
forked from mgit-at/sql_exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sql_mssql.go
157 lines (140 loc) · 4.13 KB
/
sql_mssql.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
//go:build !db2 && !hana && mssql && !oracle && !postgres
package main
import (
"context"
"database/sql"
"fmt"
"log/slog"
"strings"
_ "github.com/microsoft/go-mssqldb" // register the MS-SQL driver
"github.com/peekjef72/passwd_encrypt/encrypt"
)
// OpenConnection extracts the driver name from the DSN (expected as the URI scheme), adjusts it where necessary (e.g.
// some driver supported DSN formats don't include a scheme), opens a DB handle ensuring early termination if the
// context is closed (this is actually prevented by `database/sql` implementation), sets connection limits and returns
// the handle.
//
// # MS SQL Server
//
// Using the https://github.com/denisenkom/go-mssqldb driver, DSN format (passed through to the driver unchanged):
//
// url format:
// sqlserver://username:password@host:port/instance?param=value
// or DSN format:
// DATABASE=<database>; HOSTNAME=<hostname>; PORT=<port>; PROTOCOL=<protocol>; UID=<login>; PWD=<password>;
func OpenConnection(
ctx context.Context,
logContext []interface{},
logger *slog.Logger,
dsn string,
auth AuthConfig,
maxConns, maxIdleConns int,
symbol_table map[string]interface{}) (*sql.DB, error) {
var driver string
// Extract driver name from DSN.
idx := strings.Index(dsn, "://")
if idx == -1 {
driver = "sqlserver"
} else {
driver = dsn[:idx]
}
// Adjust DSN, where necessary.
var params map[string]string
switch driver {
case "sqlserver":
var err error
if strings.HasPrefix(dsn, "sqlserver://") {
// "sqlserver://<hostname>:<port>/<path>?user%20id=<login>&password=<password>&database=<database>&protocol=..."
params, err = splitConnectionStringURL(dsn)
if err != nil {
return nil, err
}
} else {
// DATABASE=<database>; HOSTNAME=<hostname>; PORT=<port>; PROTOCOL=<protocol>; UID=<login>; PWD=<password>;
params, err = splitRawConnectionStringDSN(dsn)
if err != nil {
return nil, err
}
}
val, ok := params["server"]
if !ok || val == "" {
return nil, fmt.Errorf("server can't be empty")
}
val, ok = params["user id"]
if !ok || val == "" {
if auth.Username != "" {
params["user id"] = auth.Username
} else {
return nil, fmt.Errorf("user Id can't be empty")
}
}
val, ok = params["password"]
if !ok || val == "" {
if auth.Password != "" {
val = string(auth.Password)
} else {
return nil, fmt.Errorf("password has to be set")
}
}
passwd := val
if strings.HasPrefix(passwd, "/encrypted/") {
ciphertext := passwd[len("/encrypted/"):]
logger.Debug("debug ciphertext",
"ciphertext", ciphertext)
auth_key := GetMapValueString(symbol_table, "auth_key")
logger.Debug(
"debug authkey",
"auth_key", auth_key)
if auth_key == "" {
return nil, fmt.Errorf("password is encrypt and not ciphertext provided (auth_key)")
}
cipher, err := encrypt.NewAESCipher(auth_key)
if err != nil {
err := fmt.Errorf("can't obtain cipher to decrypt")
// level.Error(c.logger).Log("errmsg", err)
return nil, err
}
passwd, err = cipher.Decrypt(ciphertext, true)
if err != nil {
err := fmt.Errorf("invalid key provided to decrypt")
// level.Error(c.logger).Log("errmsg", err)
return nil, err
}
params["password"] = passwd
}
// val, ok = params["database"]
// if !ok || val == "" {
// return nil, fmt.Errorf("database must be set")
// }
// add params to target symbol table
symbol_table["params"] = params
default:
return nil, fmt.Errorf("driver '%s' not supported", driver)
}
// rebuild dsn from params because params may have changed
dsn = GenDSNUrl(driver, params)
// Open the DB handle in a separate goroutine so we can terminate early if the context closes.
var (
conn *sql.DB
err error
ch = make(chan error)
)
go func() {
conn, err = sql.Open(driver, dsn)
close(ch)
}()
select {
case <-ctx.Done():
return nil, ctx.Err()
case <-ch:
if err != nil {
return nil, err
}
}
conn.SetMaxIdleConns(maxIdleConns)
conn.SetMaxOpenConns(maxConns)
logContext = append(logContext, "msg", fmt.Sprintf("Database handle successfully opened with driver %s.", driver))
logger.Debug("msg_stack",
logContext...)
return conn, nil
}