2018-11-05 16:56:59 +00:00
|
|
|
import Ember from 'ember';
|
2019-06-20 13:37:27 +00:00
|
|
|
import { resolve, reject } from 'rsvp';
|
2018-09-25 16:28:26 +00:00
|
|
|
import { assign } from '@ember/polyfills';
|
|
|
|
import { isArray } from '@ember/array';
|
|
|
|
import { computed, get } from '@ember/object';
|
2019-06-20 13:37:27 +00:00
|
|
|
|
|
|
|
import fetch from 'fetch';
|
2018-09-25 16:28:26 +00:00
|
|
|
import { getOwner } from '@ember/application';
|
|
|
|
import Service, { inject as service } from '@ember/service';
|
2018-04-03 14:16:57 +00:00
|
|
|
import getStorage from '../lib/token-storage';
|
|
|
|
import ENV from 'vault/config/environment';
|
|
|
|
import { supportedAuthBackends } from 'vault/helpers/supported-auth-backends';
|
2018-11-05 16:56:59 +00:00
|
|
|
import { task, timeout } from 'ember-concurrency';
|
2018-04-03 14:16:57 +00:00
|
|
|
const TOKEN_SEPARATOR = '☃';
|
|
|
|
const TOKEN_PREFIX = 'vault-';
|
2019-05-03 22:20:14 +00:00
|
|
|
const ROOT_PREFIX = '_root_';
|
2018-04-03 14:16:57 +00:00
|
|
|
const BACKENDS = supportedAuthBackends();
|
|
|
|
|
|
|
|
export { TOKEN_SEPARATOR, TOKEN_PREFIX, ROOT_PREFIX };
|
|
|
|
|
2018-08-16 17:48:24 +00:00
|
|
|
export default Service.extend({
|
2019-01-18 22:04:40 +00:00
|
|
|
permissions: service(),
|
2019-10-08 01:41:04 +00:00
|
|
|
namespaceService: service('namespace'),
|
2018-11-05 16:56:59 +00:00
|
|
|
IDLE_TIMEOUT: 3 * 60e3,
|
2018-04-03 14:16:57 +00:00
|
|
|
expirationCalcTS: null,
|
|
|
|
init() {
|
|
|
|
this._super(...arguments);
|
|
|
|
this.checkForRootToken();
|
|
|
|
},
|
|
|
|
|
|
|
|
clusterAdapter() {
|
|
|
|
return getOwner(this).lookup('adapter:cluster');
|
|
|
|
},
|
|
|
|
|
|
|
|
tokens: computed(function() {
|
|
|
|
return this.getTokensFromStorage() || [];
|
|
|
|
}),
|
|
|
|
|
|
|
|
generateTokenName({ backend, clusterId }, policies) {
|
|
|
|
return (policies || []).includes('root')
|
|
|
|
? `${TOKEN_PREFIX}${ROOT_PREFIX}${TOKEN_SEPARATOR}${clusterId}`
|
|
|
|
: `${TOKEN_PREFIX}${backend}${TOKEN_SEPARATOR}${clusterId}`;
|
|
|
|
},
|
|
|
|
|
|
|
|
backendFromTokenName(tokenName) {
|
|
|
|
return tokenName.includes(`${TOKEN_PREFIX}${ROOT_PREFIX}`)
|
|
|
|
? 'token'
|
|
|
|
: tokenName.slice(TOKEN_PREFIX.length).split(TOKEN_SEPARATOR)[0];
|
|
|
|
},
|
|
|
|
|
|
|
|
storage(tokenName) {
|
|
|
|
if (
|
|
|
|
tokenName &&
|
|
|
|
tokenName.indexOf(`${TOKEN_PREFIX}${ROOT_PREFIX}`) === 0 &&
|
|
|
|
this.environment() !== 'development'
|
|
|
|
) {
|
|
|
|
return getStorage('memory');
|
|
|
|
} else {
|
|
|
|
return getStorage();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
environment() {
|
|
|
|
return ENV.environment;
|
|
|
|
},
|
|
|
|
|
2018-10-02 13:53:39 +00:00
|
|
|
now() {
|
|
|
|
return Date.now();
|
|
|
|
},
|
|
|
|
|
2018-04-03 14:16:57 +00:00
|
|
|
setCluster(clusterId) {
|
|
|
|
this.set('activeCluster', clusterId);
|
|
|
|
},
|
|
|
|
|
|
|
|
ajax(url, method, options) {
|
|
|
|
const defaults = {
|
|
|
|
url,
|
|
|
|
method,
|
|
|
|
dataType: 'json',
|
|
|
|
headers: {
|
|
|
|
'X-Vault-Token': this.get('currentToken'),
|
|
|
|
},
|
|
|
|
};
|
2018-08-16 17:48:24 +00:00
|
|
|
|
|
|
|
let namespace =
|
|
|
|
typeof options.namespace === 'undefined' ? this.get('namespaceService.path') : options.namespace;
|
|
|
|
if (namespace) {
|
|
|
|
defaults.headers['X-Vault-Namespace'] = namespace;
|
|
|
|
}
|
2019-06-20 13:37:27 +00:00
|
|
|
let opts = assign(defaults, options);
|
|
|
|
|
|
|
|
return fetch(url, {
|
|
|
|
method: opts.method || 'GET',
|
|
|
|
headers: opts.headers || {},
|
|
|
|
}).then(response => {
|
2019-08-19 21:36:22 +00:00
|
|
|
if (response.status === 204) {
|
|
|
|
return resolve();
|
|
|
|
} else if (response.status >= 200 && response.status < 300) {
|
2019-06-20 13:37:27 +00:00
|
|
|
return resolve(response.json());
|
|
|
|
} else {
|
|
|
|
return reject();
|
|
|
|
}
|
|
|
|
});
|
2018-04-03 14:16:57 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
renewCurrentToken() {
|
2018-08-16 17:48:24 +00:00
|
|
|
let namespace = this.get('authData.userRootNamespace');
|
2018-04-03 14:16:57 +00:00
|
|
|
const url = '/v1/auth/token/renew-self';
|
2018-08-16 17:48:24 +00:00
|
|
|
return this.ajax(url, 'POST', { namespace });
|
2018-04-03 14:16:57 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
revokeCurrentToken() {
|
2018-08-16 17:48:24 +00:00
|
|
|
let namespace = this.get('authData.userRootNamespace');
|
2018-04-03 14:16:57 +00:00
|
|
|
const url = '/v1/auth/token/revoke-self';
|
2018-08-16 17:48:24 +00:00
|
|
|
return this.ajax(url, 'POST', { namespace });
|
2018-04-03 14:16:57 +00:00
|
|
|
},
|
|
|
|
|
2018-10-02 13:53:39 +00:00
|
|
|
calculateExpiration(resp) {
|
|
|
|
let now = this.now();
|
|
|
|
const ttl = resp.ttl || resp.lease_duration;
|
|
|
|
const tokenExpirationEpoch = now + ttl * 1e3;
|
|
|
|
this.set('expirationCalcTS', now);
|
|
|
|
return {
|
|
|
|
ttl,
|
2018-04-03 14:16:57 +00:00
|
|
|
tokenExpirationEpoch,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
persistAuthData() {
|
2018-08-16 17:48:24 +00:00
|
|
|
let [firstArg, resp] = arguments;
|
2018-04-03 14:16:57 +00:00
|
|
|
let tokens = this.get('tokens');
|
2019-10-08 01:41:04 +00:00
|
|
|
let currentNamespace = this.get('namespaceService.path') || '';
|
2018-04-03 14:16:57 +00:00
|
|
|
let tokenName;
|
|
|
|
let options;
|
|
|
|
let backend;
|
|
|
|
if (typeof firstArg === 'string') {
|
|
|
|
tokenName = firstArg;
|
|
|
|
backend = this.backendFromTokenName(tokenName);
|
|
|
|
} else {
|
|
|
|
options = firstArg;
|
|
|
|
backend = options.backend;
|
|
|
|
}
|
|
|
|
|
2018-08-16 17:48:24 +00:00
|
|
|
let currentBackend = BACKENDS.findBy('type', backend);
|
2018-04-03 14:16:57 +00:00
|
|
|
let displayName;
|
|
|
|
if (isArray(currentBackend.displayNamePath)) {
|
|
|
|
displayName = currentBackend.displayNamePath.map(name => get(resp, name)).join('/');
|
|
|
|
} else {
|
|
|
|
displayName = get(resp, currentBackend.displayNamePath);
|
|
|
|
}
|
|
|
|
|
2018-08-16 17:48:24 +00:00
|
|
|
let { entity_id, policies, renewable, namespace_path } = resp;
|
|
|
|
// here we prefer namespace_path if its defined,
|
|
|
|
// else we look and see if there's already a namespace saved
|
|
|
|
// and then finally we'll use the current query param if the others
|
|
|
|
// haven't set a value yet
|
|
|
|
// all of the typeof checks are necessary because the root namespace is ''
|
|
|
|
let userRootNamespace = namespace_path && namespace_path.replace(/\/$/, '');
|
|
|
|
// if we're logging in with token and there's no namespace_path, we can assume
|
|
|
|
// that the token belongs to the root namespace
|
|
|
|
if (backend === 'token' && !userRootNamespace) {
|
|
|
|
userRootNamespace = '';
|
|
|
|
}
|
|
|
|
if (typeof userRootNamespace === 'undefined') {
|
|
|
|
userRootNamespace = this.get('authData.userRootNamespace');
|
|
|
|
}
|
|
|
|
if (typeof userRootNamespace === 'undefined') {
|
|
|
|
userRootNamespace = currentNamespace;
|
|
|
|
}
|
2018-04-03 14:16:57 +00:00
|
|
|
let data = {
|
2018-08-16 17:48:24 +00:00
|
|
|
userRootNamespace,
|
2018-04-03 14:16:57 +00:00
|
|
|
displayName,
|
|
|
|
backend: currentBackend,
|
|
|
|
token: resp.client_token || get(resp, currentBackend.tokenPath),
|
|
|
|
policies,
|
|
|
|
renewable,
|
2018-07-19 01:59:04 +00:00
|
|
|
entity_id,
|
2018-04-03 14:16:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
tokenName = this.generateTokenName(
|
|
|
|
{
|
|
|
|
backend,
|
|
|
|
clusterId: (options && options.clusterId) || this.get('activeCluster'),
|
|
|
|
},
|
|
|
|
resp.policies
|
|
|
|
);
|
|
|
|
|
|
|
|
if (resp.renewable) {
|
2018-09-25 16:28:26 +00:00
|
|
|
assign(data, this.calculateExpiration(resp));
|
2018-04-03 14:16:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!data.displayName) {
|
|
|
|
data.displayName = get(this.getTokenData(tokenName) || {}, 'displayName');
|
|
|
|
}
|
|
|
|
tokens.addObject(tokenName);
|
|
|
|
this.set('tokens', tokens);
|
|
|
|
this.set('allowExpiration', false);
|
|
|
|
this.setTokenData(tokenName, data);
|
2018-09-25 16:28:26 +00:00
|
|
|
return resolve({
|
2018-08-16 17:48:24 +00:00
|
|
|
namespace: currentNamespace || data.userRootNamespace,
|
2018-04-03 14:16:57 +00:00
|
|
|
token: tokenName,
|
|
|
|
isRoot: policies.includes('root'),
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
setTokenData(token, data) {
|
|
|
|
this.storage(token).setItem(token, data);
|
|
|
|
},
|
|
|
|
|
|
|
|
getTokenData(token) {
|
|
|
|
return this.storage(token).getItem(token);
|
|
|
|
},
|
|
|
|
|
|
|
|
removeTokenData(token) {
|
|
|
|
return this.storage(token).removeItem(token);
|
|
|
|
},
|
|
|
|
|
|
|
|
tokenExpirationDate: computed('currentTokenName', 'expirationCalcTS', function() {
|
|
|
|
const tokenName = this.get('currentTokenName');
|
|
|
|
if (!tokenName) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const { tokenExpirationEpoch } = this.getTokenData(tokenName);
|
|
|
|
const expirationDate = new Date(0);
|
|
|
|
return tokenExpirationEpoch ? expirationDate.setUTCMilliseconds(tokenExpirationEpoch) : null;
|
|
|
|
}),
|
|
|
|
|
|
|
|
tokenExpired: computed(function() {
|
|
|
|
const expiration = this.get('tokenExpirationDate');
|
2018-10-02 13:53:39 +00:00
|
|
|
return expiration ? this.now() >= expiration : null;
|
2018-04-03 14:16:57 +00:00
|
|
|
}).volatile(),
|
|
|
|
|
|
|
|
renewAfterEpoch: computed('currentTokenName', 'expirationCalcTS', function() {
|
|
|
|
const tokenName = this.get('currentTokenName');
|
2018-10-02 13:53:39 +00:00
|
|
|
let { expirationCalcTS } = this;
|
2018-04-03 14:16:57 +00:00
|
|
|
const data = this.getTokenData(tokenName);
|
2018-11-05 16:56:59 +00:00
|
|
|
if (!tokenName || !data || !expirationCalcTS) {
|
2018-04-03 14:16:57 +00:00
|
|
|
return null;
|
|
|
|
}
|
2018-10-02 13:53:39 +00:00
|
|
|
const { ttl, renewable } = data;
|
|
|
|
// renew after last expirationCalc time + half of the ttl (in ms)
|
|
|
|
return renewable ? Math.floor((ttl * 1e3) / 2) + expirationCalcTS : null;
|
2018-04-03 14:16:57 +00:00
|
|
|
}),
|
|
|
|
|
|
|
|
renew() {
|
|
|
|
const tokenName = this.get('currentTokenName');
|
|
|
|
const currentlyRenewing = this.get('isRenewing');
|
|
|
|
if (currentlyRenewing) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.set('isRenewing', true);
|
|
|
|
return this.renewCurrentToken().then(
|
|
|
|
resp => {
|
|
|
|
this.set('isRenewing', false);
|
|
|
|
return this.persistAuthData(tokenName, resp.data || resp.auth);
|
|
|
|
},
|
|
|
|
e => {
|
|
|
|
this.set('isRenewing', false);
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
2018-11-05 16:56:59 +00:00
|
|
|
checkShouldRenew: task(function*() {
|
|
|
|
while (true) {
|
|
|
|
if (Ember.testing) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
yield timeout(5000);
|
|
|
|
if (this.shouldRenew()) {
|
|
|
|
yield this.renew();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}).on('init'),
|
|
|
|
shouldRenew() {
|
2018-10-02 13:53:39 +00:00
|
|
|
const now = this.now();
|
2018-04-03 14:16:57 +00:00
|
|
|
const lastFetch = this.get('lastFetch');
|
|
|
|
const renewTime = this.get('renewAfterEpoch');
|
2018-11-05 16:56:59 +00:00
|
|
|
if (!this.currentTokenName || this.get('tokenExpired') || this.get('allowExpiration') || !renewTime) {
|
2018-04-03 14:16:57 +00:00
|
|
|
return false;
|
|
|
|
}
|
2018-11-05 16:56:59 +00:00
|
|
|
if (lastFetch && now - lastFetch >= this.IDLE_TIMEOUT) {
|
2018-04-03 14:16:57 +00:00
|
|
|
this.set('allowExpiration', true);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (now >= renewTime) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2018-11-05 16:56:59 +00:00
|
|
|
},
|
2018-04-03 14:16:57 +00:00
|
|
|
|
|
|
|
setLastFetch(timestamp) {
|
|
|
|
this.set('lastFetch', timestamp);
|
2018-11-05 16:56:59 +00:00
|
|
|
// if expiration was allowed we want to go ahead and renew here
|
|
|
|
if (this.allowExpiration) {
|
|
|
|
this.renew();
|
|
|
|
}
|
|
|
|
this.set('allowExpiration', false);
|
2018-04-03 14:16:57 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
getTokensFromStorage(filterFn) {
|
2018-10-02 13:53:39 +00:00
|
|
|
return this.storage()
|
|
|
|
.keys()
|
|
|
|
.reject(key => {
|
|
|
|
return key.indexOf(TOKEN_PREFIX) !== 0 || (filterFn && filterFn(key));
|
|
|
|
});
|
2018-04-03 14:16:57 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
checkForRootToken() {
|
|
|
|
if (this.environment() === 'development') {
|
|
|
|
return;
|
|
|
|
}
|
2019-05-03 22:20:14 +00:00
|
|
|
|
2018-04-03 14:16:57 +00:00
|
|
|
this.getTokensFromStorage().forEach(key => {
|
|
|
|
const data = this.getTokenData(key);
|
2019-05-03 22:20:14 +00:00
|
|
|
if (data && data.policies.includes('root')) {
|
2018-04-03 14:16:57 +00:00
|
|
|
this.removeTokenData(key);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2019-05-03 03:20:28 +00:00
|
|
|
async authenticate(/*{clusterId, backend, data}*/) {
|
2018-04-03 14:16:57 +00:00
|
|
|
const [options] = arguments;
|
|
|
|
const adapter = this.clusterAdapter();
|
|
|
|
|
2019-05-03 03:20:28 +00:00
|
|
|
let resp = await adapter.authenticate(options);
|
2019-10-08 01:41:04 +00:00
|
|
|
let authData = await this.persistAuthData(
|
|
|
|
options,
|
|
|
|
resp.auth || resp.data,
|
|
|
|
this.get('namespaceService.path')
|
|
|
|
);
|
2019-05-03 03:20:28 +00:00
|
|
|
await this.get('permissions').getPaths.perform();
|
|
|
|
return authData;
|
2018-04-03 14:16:57 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
deleteCurrentToken() {
|
|
|
|
const tokenName = this.get('currentTokenName');
|
|
|
|
this.deleteToken(tokenName);
|
|
|
|
this.removeTokenData(tokenName);
|
|
|
|
},
|
|
|
|
|
|
|
|
deleteToken(tokenName) {
|
|
|
|
const tokenNames = this.get('tokens').without(tokenName);
|
|
|
|
this.removeTokenData(tokenName);
|
|
|
|
this.set('tokens', tokenNames);
|
|
|
|
},
|
|
|
|
|
2018-08-16 17:48:24 +00:00
|
|
|
// returns the key for the token to use
|
2018-07-19 01:59:04 +00:00
|
|
|
currentTokenName: computed('activeCluster', 'tokens', 'tokens.[]', function() {
|
2018-04-03 14:16:57 +00:00
|
|
|
const regex = new RegExp(this.get('activeCluster'));
|
|
|
|
return this.get('tokens').find(key => regex.test(key));
|
|
|
|
}),
|
|
|
|
|
|
|
|
currentToken: computed('currentTokenName', function() {
|
|
|
|
const name = this.get('currentTokenName');
|
|
|
|
const data = name && this.getTokenData(name);
|
|
|
|
return name && data ? data.token : null;
|
|
|
|
}),
|
|
|
|
|
|
|
|
authData: computed('currentTokenName', function() {
|
|
|
|
const token = this.get('currentTokenName');
|
|
|
|
if (!token) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const backend = this.backendFromTokenName(token);
|
|
|
|
const stored = this.getTokenData(token);
|
|
|
|
|
2018-09-25 16:28:26 +00:00
|
|
|
return assign(stored, {
|
2018-04-03 14:16:57 +00:00
|
|
|
backend: BACKENDS.findBy('type', backend),
|
|
|
|
});
|
|
|
|
}),
|
|
|
|
});
|