-
Notifications
You must be signed in to change notification settings - Fork 36
/
dsn.go
221 lines (165 loc) · 5.53 KB
/
dsn.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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to you under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package avatica
import (
"errors"
"fmt"
"net/url"
"strconv"
"strings"
"time"
)
type authentication int
const (
none authentication = iota
basic
digest
spnego
)
// Config is a configuration parsed from a DSN string
type Config struct {
endpoint string
maxRowsTotal int64
frameMaxSize int32
location *time.Location
schema string
transactionIsolation uint32
batching bool
authentication authentication
avaticaUser string
avaticaPassword string
principal krb5Principal
keytab string
krb5Conf string
krb5CredentialCache string
}
type krb5Principal struct {
username string
realm string
}
// ParseDSN parses a DSN string to a Config
func ParseDSN(dsn string) (*Config, error) {
conf := &Config{
maxRowsTotal: -1,
frameMaxSize: -1,
location: time.UTC,
transactionIsolation: 0,
batching: false,
}
parsed, err := url.ParseRequestURI(dsn)
if err != nil {
return nil, fmt.Errorf("unable to parse DSN: %w", err)
}
queries := parsed.Query()
if v := queries.Get("maxRowsTotal"); v != "" {
maxRowTotal, err := strconv.Atoi(v)
if err != nil {
return nil, fmt.Errorf("invalid value for maxRowsTotal: %w", err)
}
conf.maxRowsTotal = int64(maxRowTotal)
}
if v := queries.Get("frameMaxSize"); v != "" {
maxRowTotal, err := strconv.Atoi(v)
if err != nil {
return nil, fmt.Errorf("invalid value for frameMaxSize: %w", err)
}
conf.frameMaxSize = int32(maxRowTotal)
}
if v := queries.Get("location"); v != "" {
loc, err := time.LoadLocation(v)
if err != nil {
return nil, fmt.Errorf("invalid value for location: %w", err)
}
conf.location = loc
}
if v := queries.Get("transactionIsolation"); v != "" {
isolation, err := strconv.Atoi(v)
if err != nil {
return nil, fmt.Errorf("invalid value for transactionIsolation: %w", err)
}
if isolation < 0 || isolation > 8 || isolation&(isolation-1) != 0 {
return nil, fmt.Errorf("transactionIsolation must be 0, 1, 2, 4 or 8, %d given", isolation)
}
conf.transactionIsolation = uint32(isolation)
}
if v := queries.Get("batching"); v != "" {
if v == "true" {
conf.batching = true
}
}
if v := queries.Get("authentication"); v != "" {
auth := strings.ToUpper(v)
if auth == "BASIC" {
conf.authentication = basic
} else if auth == "DIGEST" {
conf.authentication = digest
} else if auth == "SPNEGO" {
conf.authentication = spnego
} else {
return nil, errors.New("authentication must be either BASIC, DIGEST or SPNEGO")
}
if conf.authentication == basic || conf.authentication == digest {
user := queries.Get("avaticaUser")
if user == "" {
return nil, fmt.Errorf("authentication is set to %s, but avaticaUser is empty", v)
}
conf.avaticaUser = user
pass := queries.Get("avaticaPassword")
if pass == "" {
return nil, fmt.Errorf("authentication is set to %s, but avaticaPassword is empty", v)
}
conf.avaticaPassword = pass
} else if conf.authentication == spnego {
principal := queries.Get("principal")
keytab := queries.Get("keytab")
krb5Conf := queries.Get("krb5Conf")
krb5CredentialCache := queries.Get("krb5CredentialCache")
if principal == "" && keytab == "" && krb5Conf == "" && krb5CredentialCache == "" {
return nil, errors.New("when using SPNEGO authetication, you must provide the principal, keytab and krb5Conf parameters or a krb5TicketCache parameter")
}
if !((principal != "" && keytab != "" && krb5Conf != "") || (principal == "" && keytab == "" && krb5Conf == "")) {
return nil, errors.New("when using SPNEGO authentication with a principal and keytab, the principal, keytab and krb5Conf parameters are required")
}
if (principal != "" || keytab != "" || krb5Conf != "") && krb5CredentialCache != "" {
return nil, errors.New("ambigious configuration for SPNEGO authentication: use either principal, keytab and krb5Conf or krb5TicketCache")
}
if principal != "" {
splittedPrincipal := strings.Split(principal, "@")
if len(splittedPrincipal) != 2 {
return nil, fmt.Errorf("invalid kerberos principal (%s): the principal should be in the format primary/instance@realm where instance is optional", principal)
}
conf.principal = krb5Principal{
username: splittedPrincipal[0],
realm: splittedPrincipal[1],
}
conf.keytab = keytab
conf.krb5Conf = krb5Conf
} else if krb5CredentialCache != "" {
conf.krb5CredentialCache = krb5CredentialCache
}
}
}
if parsed.Path != "" {
s := strings.Split(parsed.Path, "/")
conf.schema = s[len(s)-1]
}
parsed.User = nil
parsed.RawQuery = ""
parsed.Fragment = ""
conf.endpoint = parsed.String()
return conf, nil
}