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_db2.go
166 lines (147 loc) · 4.42 KB
/
sql_db2.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
158
159
160
161
162
163
164
165
166
//go:build db2 && !hana && !mssql && !oracle && !postgres
package main
import (
"context"
"database/sql"
"fmt"
"strings"
"github.com/go-kit/log"
"github.com/go-kit/log/level"
_ "github.com/ibmdb/go_ibm_db" // register the DB2 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.
//
// # DB2 sql server
//
// Using the https://github.com/denisenkom/go-mssqldb driver, DSN format (passed through to the driver unchanged):
//
// url format:
// db2://<hostname>:<port>?user%20id=<login>&password=<password>&database=<database>&protocol=...
// DSN format!
// DATABASE=<database>; HOSTNAME=<hostname>; PORT=<port>; PROTOCOL=<protocol>; UID=<login>; PWD=<password>;
func OpenConnection(
ctx context.Context,
logContext []interface{},
logger log.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 {
//return nil, fmt.Errorf("missing driver in data source name. Expected format `<driver>://<dsn>`")
driver = "db2"
} else {
driver = dsn[:idx]
}
// Adjust DSN, where necessary.
var params map[string]string
switch driver {
case "db2":
var err error
if strings.HasPrefix(dsn, "db2://") {
// "db2://<hostname>:<port>?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["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/"):]
level.Debug(logger).Log(
"module", "sql::OpenConnection()",
"ciphertext", ciphertext)
auth_key := GetMapValueString(symbol_table, "auth_key")
level.Debug(logger).Log(
"module", "sql::OpenConnection()",
"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")
}
if params["port"] == "" {
params["port"] = "60000"
}
if params["protocol"] == "" {
params["protocol"] = "TCP"
}
// remove instance from url if any has been specified
delete(params, "instance")
// add params to target symbol table
symbol_table["params"] = params
driver = "go_ibm_db"
default:
return nil, fmt.Errorf("driver '%s' not supported", driver)
}
// rebuild dsn from params because params may have changed
dsn = GenDSN(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))
level.Debug(logger).Log(logContext...)
return conn, nil
}