2016-09-21 14:29:42 +00:00
|
|
|
package audit
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io"
|
2017-01-05 04:50:24 +00:00
|
|
|
"strings"
|
2016-09-21 14:29:42 +00:00
|
|
|
"time"
|
|
|
|
|
2017-01-05 04:50:24 +00:00
|
|
|
"github.com/SermoDigital/jose/jws"
|
2017-05-24 00:36:20 +00:00
|
|
|
"github.com/hashicorp/errwrap"
|
|
|
|
"github.com/hashicorp/vault/helper/salt"
|
2016-09-21 14:29:42 +00:00
|
|
|
"github.com/hashicorp/vault/logical"
|
|
|
|
"github.com/mitchellh/copystructure"
|
|
|
|
)
|
|
|
|
|
|
|
|
type AuditFormatWriter interface {
|
|
|
|
WriteRequest(io.Writer, *AuditRequestEntry) error
|
|
|
|
WriteResponse(io.Writer, *AuditResponseEntry) error
|
2017-05-24 00:36:20 +00:00
|
|
|
Salt() (*salt.Salt, error)
|
2016-09-21 14:29:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// AuditFormatter implements the Formatter interface, and allows the underlying
|
|
|
|
// marshaller to be swapped out
|
|
|
|
type AuditFormatter struct {
|
|
|
|
AuditFormatWriter
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *AuditFormatter) FormatRequest(
|
|
|
|
w io.Writer,
|
|
|
|
config FormatterConfig,
|
|
|
|
auth *logical.Auth,
|
|
|
|
req *logical.Request,
|
2017-02-16 18:09:53 +00:00
|
|
|
inErr error) error {
|
|
|
|
|
|
|
|
if req == nil {
|
|
|
|
return fmt.Errorf("request to request-audit a nil request")
|
|
|
|
}
|
2016-09-21 14:29:42 +00:00
|
|
|
|
|
|
|
if w == nil {
|
|
|
|
return fmt.Errorf("writer for audit request is nil")
|
|
|
|
}
|
|
|
|
|
|
|
|
if f.AuditFormatWriter == nil {
|
|
|
|
return fmt.Errorf("no format writer specified")
|
|
|
|
}
|
|
|
|
|
2017-05-24 00:36:20 +00:00
|
|
|
salt, err := f.Salt()
|
|
|
|
if err != nil {
|
|
|
|
return errwrap.Wrapf("error fetching salt: {{err}}", err)
|
|
|
|
}
|
|
|
|
|
2016-09-21 14:29:42 +00:00
|
|
|
if !config.Raw {
|
|
|
|
// Before we copy the structure we must nil out some data
|
|
|
|
// otherwise we will cause reflection to panic and die
|
|
|
|
if req.Connection != nil && req.Connection.ConnState != nil {
|
|
|
|
origReq := req
|
|
|
|
origState := req.Connection.ConnState
|
|
|
|
req.Connection.ConnState = nil
|
|
|
|
defer func() {
|
|
|
|
origReq.Connection.ConnState = origState
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
2017-02-16 18:09:53 +00:00
|
|
|
// Copy the auth structure
|
|
|
|
if auth != nil {
|
|
|
|
cp, err := copystructure.Copy(auth)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
auth = cp.(*logical.Auth)
|
2016-09-21 14:29:42 +00:00
|
|
|
}
|
|
|
|
|
2017-02-16 18:09:53 +00:00
|
|
|
cp, err := copystructure.Copy(req)
|
2016-09-21 14:29:42 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
req = cp.(*logical.Request)
|
|
|
|
|
|
|
|
// Hash any sensitive information
|
2017-02-16 18:09:53 +00:00
|
|
|
if auth != nil {
|
2017-06-05 22:04:31 +00:00
|
|
|
// Cache and restore accessor in the auth
|
|
|
|
var authAccessor string
|
|
|
|
if !config.HMACAccessor && auth.Accessor != "" {
|
|
|
|
authAccessor = auth.Accessor
|
|
|
|
}
|
2017-05-24 00:36:20 +00:00
|
|
|
if err := Hash(salt, auth); err != nil {
|
2017-02-16 18:09:53 +00:00
|
|
|
return err
|
|
|
|
}
|
2017-06-05 22:04:31 +00:00
|
|
|
if authAccessor != "" {
|
|
|
|
auth.Accessor = authAccessor
|
|
|
|
}
|
2016-09-21 14:29:42 +00:00
|
|
|
}
|
2016-10-29 21:01:49 +00:00
|
|
|
|
|
|
|
// Cache and restore accessor in the request
|
|
|
|
var clientTokenAccessor string
|
|
|
|
if !config.HMACAccessor && req != nil && req.ClientTokenAccessor != "" {
|
|
|
|
clientTokenAccessor = req.ClientTokenAccessor
|
|
|
|
}
|
2017-05-24 00:36:20 +00:00
|
|
|
if err := Hash(salt, req); err != nil {
|
2016-09-21 14:29:42 +00:00
|
|
|
return err
|
|
|
|
}
|
2016-10-29 21:01:49 +00:00
|
|
|
if clientTokenAccessor != "" {
|
|
|
|
req.ClientTokenAccessor = clientTokenAccessor
|
|
|
|
}
|
2016-09-21 14:29:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// If auth is nil, make an empty one
|
|
|
|
if auth == nil {
|
|
|
|
auth = new(logical.Auth)
|
|
|
|
}
|
|
|
|
var errString string
|
2017-02-16 18:09:53 +00:00
|
|
|
if inErr != nil {
|
|
|
|
errString = inErr.Error()
|
2016-09-21 14:29:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
reqEntry := &AuditRequestEntry{
|
|
|
|
Type: "request",
|
|
|
|
Error: errString,
|
|
|
|
|
|
|
|
Auth: AuditAuth{
|
2017-06-05 22:04:31 +00:00
|
|
|
ClientToken: auth.ClientToken,
|
|
|
|
Accessor: auth.Accessor,
|
2017-03-08 22:36:50 +00:00
|
|
|
DisplayName: auth.DisplayName,
|
|
|
|
Policies: auth.Policies,
|
|
|
|
Metadata: auth.Metadata,
|
2017-10-11 17:21:20 +00:00
|
|
|
EntityID: auth.EntityID,
|
2017-03-08 22:36:50 +00:00
|
|
|
RemainingUses: req.ClientTokenRemainingUses,
|
2016-09-21 14:29:42 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
Request: AuditRequest{
|
2016-10-29 21:01:49 +00:00
|
|
|
ID: req.ID,
|
|
|
|
ClientToken: req.ClientToken,
|
|
|
|
ClientTokenAccessor: req.ClientTokenAccessor,
|
|
|
|
Operation: req.Operation,
|
|
|
|
Path: req.Path,
|
|
|
|
Data: req.Data,
|
2017-10-23 20:52:56 +00:00
|
|
|
PolicyOverride: req.PolicyOverride,
|
2016-10-29 21:01:49 +00:00
|
|
|
RemoteAddr: getRemoteAddr(req),
|
2017-02-16 18:09:53 +00:00
|
|
|
ReplicationCluster: req.ReplicationCluster,
|
2017-02-02 19:49:20 +00:00
|
|
|
Headers: req.Headers,
|
2016-09-21 14:29:42 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2017-01-05 04:50:24 +00:00
|
|
|
if req.WrapInfo != nil {
|
|
|
|
reqEntry.Request.WrapTTL = int(req.WrapInfo.TTL / time.Second)
|
|
|
|
}
|
|
|
|
|
2016-09-21 14:29:42 +00:00
|
|
|
if !config.OmitTime {
|
2017-11-07 23:09:54 +00:00
|
|
|
reqEntry.Time = time.Now().UTC().Format(time.RFC3339Nano)
|
2016-09-21 14:29:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return f.AuditFormatWriter.WriteRequest(w, reqEntry)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *AuditFormatter) FormatResponse(
|
|
|
|
w io.Writer,
|
|
|
|
config FormatterConfig,
|
|
|
|
auth *logical.Auth,
|
|
|
|
req *logical.Request,
|
|
|
|
resp *logical.Response,
|
2017-02-16 18:09:53 +00:00
|
|
|
inErr error) error {
|
|
|
|
|
|
|
|
if req == nil {
|
|
|
|
return fmt.Errorf("request to response-audit a nil request")
|
|
|
|
}
|
2016-09-21 14:29:42 +00:00
|
|
|
|
|
|
|
if w == nil {
|
|
|
|
return fmt.Errorf("writer for audit request is nil")
|
|
|
|
}
|
|
|
|
|
|
|
|
if f.AuditFormatWriter == nil {
|
|
|
|
return fmt.Errorf("no format writer specified")
|
|
|
|
}
|
|
|
|
|
2017-05-24 00:36:20 +00:00
|
|
|
salt, err := f.Salt()
|
|
|
|
if err != nil {
|
|
|
|
return errwrap.Wrapf("error fetching salt: {{err}}", err)
|
|
|
|
}
|
|
|
|
|
2016-09-21 14:29:42 +00:00
|
|
|
if !config.Raw {
|
|
|
|
// Before we copy the structure we must nil out some data
|
|
|
|
// otherwise we will cause reflection to panic and die
|
|
|
|
if req.Connection != nil && req.Connection.ConnState != nil {
|
|
|
|
origReq := req
|
|
|
|
origState := req.Connection.ConnState
|
|
|
|
req.Connection.ConnState = nil
|
|
|
|
defer func() {
|
|
|
|
origReq.Connection.ConnState = origState
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
2017-02-16 18:09:53 +00:00
|
|
|
// Copy the auth structure
|
|
|
|
if auth != nil {
|
|
|
|
cp, err := copystructure.Copy(auth)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
auth = cp.(*logical.Auth)
|
2016-09-21 14:29:42 +00:00
|
|
|
}
|
|
|
|
|
2017-02-16 18:09:53 +00:00
|
|
|
cp, err := copystructure.Copy(req)
|
2016-09-21 14:29:42 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
req = cp.(*logical.Request)
|
|
|
|
|
2017-02-16 18:09:53 +00:00
|
|
|
if resp != nil {
|
|
|
|
cp, err := copystructure.Copy(resp)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
resp = cp.(*logical.Response)
|
2016-09-21 14:29:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Hash any sensitive information
|
|
|
|
|
|
|
|
// Cache and restore accessor in the auth
|
2017-02-16 18:09:53 +00:00
|
|
|
if auth != nil {
|
|
|
|
var accessor string
|
|
|
|
if !config.HMACAccessor && auth.Accessor != "" {
|
|
|
|
accessor = auth.Accessor
|
|
|
|
}
|
2017-05-24 00:36:20 +00:00
|
|
|
if err := Hash(salt, auth); err != nil {
|
2017-02-16 18:09:53 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
if accessor != "" {
|
|
|
|
auth.Accessor = accessor
|
|
|
|
}
|
2016-09-21 14:29:42 +00:00
|
|
|
}
|
|
|
|
|
2016-10-29 21:01:49 +00:00
|
|
|
// Cache and restore accessor in the request
|
|
|
|
var clientTokenAccessor string
|
|
|
|
if !config.HMACAccessor && req != nil && req.ClientTokenAccessor != "" {
|
|
|
|
clientTokenAccessor = req.ClientTokenAccessor
|
|
|
|
}
|
2017-05-24 00:36:20 +00:00
|
|
|
if err := Hash(salt, req); err != nil {
|
2016-09-21 14:29:42 +00:00
|
|
|
return err
|
|
|
|
}
|
2016-10-29 21:01:49 +00:00
|
|
|
if clientTokenAccessor != "" {
|
|
|
|
req.ClientTokenAccessor = clientTokenAccessor
|
|
|
|
}
|
2016-09-21 14:29:42 +00:00
|
|
|
|
|
|
|
// Cache and restore accessor in the response
|
2017-02-16 18:09:53 +00:00
|
|
|
if resp != nil {
|
2017-11-13 20:31:32 +00:00
|
|
|
var accessor, wrappedAccessor, wrappingAccessor string
|
2017-02-16 18:09:53 +00:00
|
|
|
if !config.HMACAccessor && resp != nil && resp.Auth != nil && resp.Auth.Accessor != "" {
|
|
|
|
accessor = resp.Auth.Accessor
|
|
|
|
}
|
|
|
|
if !config.HMACAccessor && resp != nil && resp.WrapInfo != nil && resp.WrapInfo.WrappedAccessor != "" {
|
|
|
|
wrappedAccessor = resp.WrapInfo.WrappedAccessor
|
2017-11-13 20:31:32 +00:00
|
|
|
wrappingAccessor = resp.WrapInfo.Accessor
|
2017-02-16 18:09:53 +00:00
|
|
|
}
|
2017-05-24 00:36:20 +00:00
|
|
|
if err := Hash(salt, resp); err != nil {
|
2017-02-16 18:09:53 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
if accessor != "" {
|
|
|
|
resp.Auth.Accessor = accessor
|
|
|
|
}
|
|
|
|
if wrappedAccessor != "" {
|
|
|
|
resp.WrapInfo.WrappedAccessor = wrappedAccessor
|
|
|
|
}
|
2017-11-13 20:31:32 +00:00
|
|
|
if wrappingAccessor != "" {
|
|
|
|
resp.WrapInfo.Accessor = wrappingAccessor
|
|
|
|
}
|
2016-09-21 14:29:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If things are nil, make empty to avoid panics
|
|
|
|
if auth == nil {
|
|
|
|
auth = new(logical.Auth)
|
|
|
|
}
|
|
|
|
if resp == nil {
|
|
|
|
resp = new(logical.Response)
|
|
|
|
}
|
|
|
|
var errString string
|
2017-02-16 18:09:53 +00:00
|
|
|
if inErr != nil {
|
|
|
|
errString = inErr.Error()
|
2016-09-21 14:29:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var respAuth *AuditAuth
|
|
|
|
if resp.Auth != nil {
|
|
|
|
respAuth = &AuditAuth{
|
|
|
|
ClientToken: resp.Auth.ClientToken,
|
|
|
|
Accessor: resp.Auth.Accessor,
|
|
|
|
DisplayName: resp.Auth.DisplayName,
|
|
|
|
Policies: resp.Auth.Policies,
|
|
|
|
Metadata: resp.Auth.Metadata,
|
2017-03-08 22:36:50 +00:00
|
|
|
NumUses: resp.Auth.NumUses,
|
2016-09-21 14:29:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var respSecret *AuditSecret
|
|
|
|
if resp.Secret != nil {
|
|
|
|
respSecret = &AuditSecret{
|
|
|
|
LeaseID: resp.Secret.LeaseID,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-04 21:44:03 +00:00
|
|
|
var respWrapInfo *AuditResponseWrapInfo
|
2016-09-21 14:29:42 +00:00
|
|
|
if resp.WrapInfo != nil {
|
2017-01-05 04:50:24 +00:00
|
|
|
token := resp.WrapInfo.Token
|
|
|
|
if jwtToken := parseVaultTokenFromJWT(token); jwtToken != nil {
|
|
|
|
token = *jwtToken
|
|
|
|
}
|
2017-01-04 21:44:03 +00:00
|
|
|
respWrapInfo = &AuditResponseWrapInfo{
|
2016-09-21 14:29:42 +00:00
|
|
|
TTL: int(resp.WrapInfo.TTL / time.Second),
|
2017-01-05 04:50:24 +00:00
|
|
|
Token: token,
|
2017-11-13 20:31:32 +00:00
|
|
|
Accessor: resp.WrapInfo.Accessor,
|
2016-09-23 16:32:07 +00:00
|
|
|
CreationTime: resp.WrapInfo.CreationTime.Format(time.RFC3339Nano),
|
2017-08-02 22:28:58 +00:00
|
|
|
CreationPath: resp.WrapInfo.CreationPath,
|
2016-09-21 14:29:42 +00:00
|
|
|
WrappedAccessor: resp.WrapInfo.WrappedAccessor,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
respEntry := &AuditResponseEntry{
|
|
|
|
Type: "response",
|
|
|
|
Error: errString,
|
|
|
|
Auth: AuditAuth{
|
2017-06-05 22:04:31 +00:00
|
|
|
DisplayName: auth.DisplayName,
|
|
|
|
Policies: auth.Policies,
|
|
|
|
Metadata: auth.Metadata,
|
2017-10-23 20:52:56 +00:00
|
|
|
ClientToken: auth.ClientToken,
|
|
|
|
Accessor: auth.Accessor,
|
2017-06-05 22:04:31 +00:00
|
|
|
RemainingUses: req.ClientTokenRemainingUses,
|
2017-10-11 17:21:20 +00:00
|
|
|
EntityID: auth.EntityID,
|
2016-09-21 14:29:42 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
Request: AuditRequest{
|
2016-10-29 21:01:49 +00:00
|
|
|
ID: req.ID,
|
|
|
|
ClientToken: req.ClientToken,
|
|
|
|
ClientTokenAccessor: req.ClientTokenAccessor,
|
|
|
|
Operation: req.Operation,
|
|
|
|
Path: req.Path,
|
|
|
|
Data: req.Data,
|
2017-10-23 20:52:56 +00:00
|
|
|
PolicyOverride: req.PolicyOverride,
|
2016-10-29 21:01:49 +00:00
|
|
|
RemoteAddr: getRemoteAddr(req),
|
2017-02-16 18:09:53 +00:00
|
|
|
ReplicationCluster: req.ReplicationCluster,
|
2017-02-02 19:49:20 +00:00
|
|
|
Headers: req.Headers,
|
2016-09-21 14:29:42 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
Response: AuditResponse{
|
|
|
|
Auth: respAuth,
|
|
|
|
Secret: respSecret,
|
|
|
|
Data: resp.Data,
|
|
|
|
Redirect: resp.Redirect,
|
|
|
|
WrapInfo: respWrapInfo,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2017-01-05 04:50:24 +00:00
|
|
|
if req.WrapInfo != nil {
|
|
|
|
respEntry.Request.WrapTTL = int(req.WrapInfo.TTL / time.Second)
|
|
|
|
}
|
|
|
|
|
2016-09-21 14:29:42 +00:00
|
|
|
if !config.OmitTime {
|
2017-11-07 23:09:54 +00:00
|
|
|
respEntry.Time = time.Now().UTC().Format(time.RFC3339Nano)
|
2016-09-21 14:29:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return f.AuditFormatWriter.WriteResponse(w, respEntry)
|
|
|
|
}
|
|
|
|
|
|
|
|
// AuditRequest is the structure of a request audit log entry in Audit.
|
|
|
|
type AuditRequestEntry struct {
|
|
|
|
Time string `json:"time,omitempty"`
|
|
|
|
Type string `json:"type"`
|
|
|
|
Auth AuditAuth `json:"auth"`
|
|
|
|
Request AuditRequest `json:"request"`
|
|
|
|
Error string `json:"error"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// AuditResponseEntry is the structure of a response audit log entry in Audit.
|
|
|
|
type AuditResponseEntry struct {
|
|
|
|
Time string `json:"time,omitempty"`
|
|
|
|
Type string `json:"type"`
|
|
|
|
Auth AuditAuth `json:"auth"`
|
|
|
|
Request AuditRequest `json:"request"`
|
|
|
|
Response AuditResponse `json:"response"`
|
2017-02-16 18:09:53 +00:00
|
|
|
Error string `json:"error"`
|
2016-09-21 14:29:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type AuditRequest struct {
|
2016-10-29 21:01:49 +00:00
|
|
|
ID string `json:"id"`
|
2017-02-16 18:09:53 +00:00
|
|
|
ReplicationCluster string `json:"replication_cluster,omitempty"`
|
2016-10-29 21:01:49 +00:00
|
|
|
Operation logical.Operation `json:"operation"`
|
|
|
|
ClientToken string `json:"client_token"`
|
|
|
|
ClientTokenAccessor string `json:"client_token_accessor"`
|
|
|
|
Path string `json:"path"`
|
|
|
|
Data map[string]interface{} `json:"data"`
|
2017-10-23 20:52:56 +00:00
|
|
|
PolicyOverride bool `json:"policy_override"`
|
2016-10-29 21:01:49 +00:00
|
|
|
RemoteAddr string `json:"remote_address"`
|
2017-01-05 04:50:24 +00:00
|
|
|
WrapTTL int `json:"wrap_ttl"`
|
2017-02-02 19:49:20 +00:00
|
|
|
Headers map[string][]string `json:"headers"`
|
2016-09-21 14:29:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type AuditResponse struct {
|
|
|
|
Auth *AuditAuth `json:"auth,omitempty"`
|
2016-09-29 19:03:47 +00:00
|
|
|
Secret *AuditSecret `json:"secret,omitempty"`
|
|
|
|
Data map[string]interface{} `json:"data,omitempty"`
|
|
|
|
Redirect string `json:"redirect,omitempty"`
|
2017-01-04 21:44:03 +00:00
|
|
|
WrapInfo *AuditResponseWrapInfo `json:"wrap_info,omitempty"`
|
2016-09-21 14:29:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type AuditAuth struct {
|
2017-03-08 22:36:50 +00:00
|
|
|
ClientToken string `json:"client_token"`
|
|
|
|
Accessor string `json:"accessor"`
|
|
|
|
DisplayName string `json:"display_name"`
|
|
|
|
Policies []string `json:"policies"`
|
|
|
|
Metadata map[string]string `json:"metadata"`
|
|
|
|
NumUses int `json:"num_uses,omitempty"`
|
|
|
|
RemainingUses int `json:"remaining_uses,omitempty"`
|
2017-10-11 17:21:20 +00:00
|
|
|
EntityID string `json:"entity_id"`
|
2016-09-21 14:29:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type AuditSecret struct {
|
|
|
|
LeaseID string `json:"lease_id"`
|
|
|
|
}
|
|
|
|
|
2017-01-04 21:44:03 +00:00
|
|
|
type AuditResponseWrapInfo struct {
|
2016-09-23 16:32:07 +00:00
|
|
|
TTL int `json:"ttl"`
|
|
|
|
Token string `json:"token"`
|
2017-11-13 20:31:32 +00:00
|
|
|
Accessor string `json:"accessor"`
|
2016-09-23 16:32:07 +00:00
|
|
|
CreationTime string `json:"creation_time"`
|
2017-08-02 22:28:58 +00:00
|
|
|
CreationPath string `json:"creation_path"`
|
2016-09-23 16:32:07 +00:00
|
|
|
WrappedAccessor string `json:"wrapped_accessor,omitempty"`
|
2016-09-21 14:29:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// getRemoteAddr safely gets the remote address avoiding a nil pointer
|
|
|
|
func getRemoteAddr(req *logical.Request) string {
|
|
|
|
if req != nil && req.Connection != nil {
|
|
|
|
return req.Connection.RemoteAddr
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
2017-01-05 04:50:24 +00:00
|
|
|
|
|
|
|
// parseVaultTokenFromJWT returns a string iff the token was a JWT and we could
|
|
|
|
// extract the original token ID from inside
|
|
|
|
func parseVaultTokenFromJWT(token string) *string {
|
|
|
|
if strings.Count(token, ".") != 2 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
wt, err := jws.ParseJWT([]byte(token))
|
|
|
|
if err != nil || wt == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
result, _ := wt.Claims().JWTID()
|
|
|
|
|
|
|
|
return &result
|
|
|
|
}
|