|
1
|
|
|
package credentials |
|
2
|
|
|
|
|
3
|
|
|
import ( |
|
4
|
|
|
"encoding/json" |
|
5
|
|
|
"errors" |
|
6
|
|
|
"fmt" |
|
7
|
|
|
"strconv" |
|
8
|
|
|
"time" |
|
9
|
|
|
|
|
10
|
|
|
"github.com/aliyun/credentials-go/credentials/request" |
|
11
|
|
|
"github.com/aliyun/credentials-go/credentials/utils" |
|
12
|
|
|
) |
|
13
|
|
|
|
|
14
|
|
|
const defaultDurationSeconds = 3600 |
|
15
|
|
|
|
|
16
|
|
|
type RamRoleArnCredential struct { |
|
|
|
|
|
|
17
|
|
|
*credentialUpdater |
|
18
|
|
|
AccessKeyID string |
|
19
|
|
|
AccessKeySecret string |
|
20
|
|
|
RoleArn string |
|
21
|
|
|
RoleSessionName string |
|
22
|
|
|
RoleSessionExpiration int |
|
23
|
|
|
Policy string |
|
24
|
|
|
sessionCredential *sessionCredential |
|
25
|
|
|
runtime *utils.Runtime |
|
26
|
|
|
} |
|
27
|
|
|
|
|
28
|
|
|
type RamRoleArnResponse struct { |
|
|
|
|
|
|
29
|
|
|
Credentials *CredentialsInResponse `json:"Credentials" xml:"Credentials"` |
|
30
|
|
|
} |
|
31
|
|
|
|
|
32
|
|
|
type CredentialsInResponse struct { |
|
|
|
|
|
|
33
|
|
|
AccessKeyID string `json:"AccessKeyID" xml:"AccessKeyID"` |
|
34
|
|
|
AccessKeySecret string `json:"AccessKeySecret" xml:"AccessKeySecret"` |
|
35
|
|
|
SecurityToken string `json:"SecurityToken" xml:"SecurityToken"` |
|
36
|
|
|
Expiration string `json:"Expiration" xml:"Expiration"` |
|
37
|
|
|
} |
|
38
|
|
|
|
|
39
|
|
|
func newRamRoleArnCredential(accessKeyID, accessKeySecret, roleArn, roleSessionName, policy string, roleSessionExpiration int, runtime *utils.Runtime) *RamRoleArnCredential { |
|
|
|
|
|
|
40
|
|
|
return &RamRoleArnCredential{ |
|
41
|
|
|
AccessKeyID: accessKeyID, |
|
42
|
|
|
AccessKeySecret: accessKeySecret, |
|
43
|
|
|
RoleArn: roleArn, |
|
44
|
|
|
RoleSessionName: roleSessionName, |
|
45
|
|
|
RoleSessionExpiration: roleSessionExpiration, |
|
46
|
|
|
Policy: policy, |
|
47
|
|
|
credentialUpdater: new(credentialUpdater), |
|
48
|
|
|
runtime: runtime, |
|
49
|
|
|
} |
|
50
|
|
|
} |
|
51
|
|
|
|
|
52
|
|
|
// GetAccessKeyID reutrns RamRoleArnCredential's AccessKeyID |
|
53
|
|
|
// if AccessKeyID is not exist or out of date, the function will update it. |
|
54
|
|
|
func (r *RamRoleArnCredential) GetAccessKeyID() (string, error) { |
|
55
|
|
|
if r.sessionCredential == nil || r.needUpdateCredential() { |
|
56
|
|
|
err := r.updateCredential() |
|
57
|
|
|
if err != nil { |
|
58
|
|
|
return "", err |
|
59
|
|
|
} |
|
60
|
|
|
} |
|
61
|
|
|
return r.sessionCredential.AccessKeyID, nil |
|
62
|
|
|
} |
|
63
|
|
|
|
|
64
|
|
|
// GetAccessSecret reutrns RamRoleArnCredential's AccessKeySecret |
|
65
|
|
|
// if AccessKeySecret is not exist or out of date, the function will update it. |
|
66
|
|
|
func (r *RamRoleArnCredential) GetAccessSecret() (string, error) { |
|
67
|
|
|
if r.sessionCredential == nil || r.needUpdateCredential() { |
|
68
|
|
|
err := r.updateCredential() |
|
69
|
|
|
if err != nil { |
|
70
|
|
|
return "", err |
|
71
|
|
|
} |
|
72
|
|
|
} |
|
73
|
|
|
return r.sessionCredential.AccessKeySecret, nil |
|
74
|
|
|
} |
|
75
|
|
|
|
|
76
|
|
|
// GetSecurityToken reutrns RamRoleArnCredential's SecurityToken |
|
77
|
|
|
// if SecurityToken is not exist or out of date, the function will update it. |
|
78
|
|
|
func (r *RamRoleArnCredential) GetSecurityToken() (string, error) { |
|
79
|
|
|
if r.sessionCredential == nil || r.needUpdateCredential() { |
|
80
|
|
|
err := r.updateCredential() |
|
81
|
|
|
if err != nil { |
|
82
|
|
|
return "", err |
|
83
|
|
|
} |
|
84
|
|
|
} |
|
85
|
|
|
return r.sessionCredential.SecurityToken, nil |
|
86
|
|
|
} |
|
87
|
|
|
|
|
88
|
|
|
// GetBearerToken is useless RamRoleArnCredential |
|
89
|
|
|
func (r *RamRoleArnCredential) GetBearerToken() string { |
|
90
|
|
|
return "" |
|
91
|
|
|
} |
|
92
|
|
|
|
|
93
|
|
|
// GetType reutrns RamRoleArnCredential's type |
|
94
|
|
|
func (r *RamRoleArnCredential) GetType() string { |
|
95
|
|
|
return "ram_role_arn" |
|
96
|
|
|
} |
|
97
|
|
|
|
|
98
|
|
|
func (r *RamRoleArnCredential) updateCredential() (err error) { |
|
99
|
|
|
if r.runtime == nil { |
|
100
|
|
|
r.runtime = new(utils.Runtime) |
|
101
|
|
|
} |
|
102
|
|
|
request := request.NewCommonRequest() |
|
103
|
|
|
request.Domain = "sts.aliyuncs.com" |
|
104
|
|
|
request.Scheme = "HTTPS" |
|
105
|
|
|
request.Method = "GET" |
|
106
|
|
|
request.QueryParams["AccessKeyId"] = r.AccessKeyID |
|
107
|
|
|
request.QueryParams["Action"] = "AssumeRole" |
|
108
|
|
|
request.QueryParams["Format"] = "JSON" |
|
109
|
|
|
if r.RoleSessionExpiration > 0 { |
|
110
|
|
|
if r.RoleSessionExpiration >= 900 && r.RoleSessionExpiration <= 3600 { |
|
111
|
|
|
request.QueryParams["DurationSeconds"] = strconv.Itoa(r.RoleSessionExpiration) |
|
112
|
|
|
} else { |
|
113
|
|
|
err = errors.New("[InvalidParam]:Assume Role session duration should be in the range of 15min - 1Hr") |
|
114
|
|
|
return |
|
115
|
|
|
} |
|
116
|
|
|
} else { |
|
117
|
|
|
request.QueryParams["DurationSeconds"] = strconv.Itoa(defaultDurationSeconds) |
|
118
|
|
|
} |
|
119
|
|
|
request.QueryParams["RoleArn"] = r.RoleArn |
|
120
|
|
|
if r.Policy != "" { |
|
121
|
|
|
request.QueryParams["Policy"] = r.Policy |
|
122
|
|
|
} |
|
123
|
|
|
request.QueryParams["RoleSessionName"] = r.RoleSessionName |
|
124
|
|
|
request.QueryParams["SignatureMethod"] = "HMAC-SHA1" |
|
125
|
|
|
request.QueryParams["SignatureVersion"] = "1.0" |
|
126
|
|
|
request.QueryParams["Version"] = "2015-04-01" |
|
127
|
|
|
request.QueryParams["Timestamp"] = utils.GetTimeInFormatISO8601() |
|
128
|
|
|
request.QueryParams["SignatureNonce"] = utils.GetUUID() |
|
129
|
|
|
signature := utils.ShaHmac1(request.BuildStringToSign(), r.AccessKeySecret+"&") |
|
130
|
|
|
request.QueryParams["Signature"] = signature |
|
131
|
|
|
request.Headers["Host"] = request.Domain |
|
132
|
|
|
request.Headers["Accept-Encoding"] = "identity" |
|
133
|
|
|
request.Url = request.BuildUrl() |
|
134
|
|
|
content, err := doAction(request, r.runtime) |
|
135
|
|
|
if err != nil { |
|
136
|
|
|
return fmt.Errorf("refresh RoleArn sts token err: %s", err.Error()) |
|
137
|
|
|
} |
|
138
|
|
|
var resp *RamRoleArnResponse |
|
139
|
|
|
err = json.Unmarshal(content, &resp) |
|
140
|
|
|
if err != nil { |
|
141
|
|
|
return fmt.Errorf("refresh RoleArn sts token err: Json.Unmarshal fail: %s", err.Error()) |
|
142
|
|
|
} |
|
143
|
|
|
if resp == nil || resp.Credentials == nil { |
|
144
|
|
|
return fmt.Errorf("refresh RoleArn sts token err: Credentials is empty") |
|
145
|
|
|
} |
|
146
|
|
|
respCredentials := resp.Credentials |
|
147
|
|
|
if respCredentials.AccessKeyID == "" || respCredentials.AccessKeySecret == "" || respCredentials.SecurityToken == "" || respCredentials.Expiration == "" { |
|
148
|
|
|
return fmt.Errorf("refresh RoleArn sts token err: AccessKeyID: %s, AccessKeySecret: %s, SecurityToken: %s, Expiration: %s", respCredentials.AccessKeyID, respCredentials.AccessKeySecret, respCredentials.SecurityToken, respCredentials.Expiration) |
|
149
|
|
|
} |
|
150
|
|
|
|
|
151
|
|
|
expirationTime, err := time.Parse("2006-01-02T15:04:05Z", respCredentials.Expiration) |
|
152
|
|
|
r.lastUpdateTimestamp = time.Now().Unix() |
|
153
|
|
|
r.credentialExpiration = int(expirationTime.Unix() - time.Now().Unix()) |
|
154
|
|
|
r.sessionCredential = &sessionCredential{ |
|
155
|
|
|
AccessKeyID: respCredentials.AccessKeyID, |
|
156
|
|
|
AccessKeySecret: respCredentials.AccessKeySecret, |
|
157
|
|
|
SecurityToken: respCredentials.SecurityToken, |
|
158
|
|
|
} |
|
159
|
|
|
|
|
160
|
|
|
return |
|
161
|
|
|
} |
|
162
|
|
|
|