blob: 1e9290a09d369228bb7154237628c6330d1b98f0 [file] [log] [blame]
/**
* 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 org.apache.storm.hdfs.security;
import static org.apache.storm.hdfs.security.HdfsSecurityUtil.STORM_KEYTAB_FILE_KEY;
import static org.apache.storm.hdfs.security.HdfsSecurityUtil.STORM_USER_NAME_KEY;
import java.util.HashMap;
import java.util.Map;
import javax.security.auth.Subject;
import org.apache.storm.Config;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Command tool of HDFS credential renewer.
*/
@SuppressWarnings("checkstyle:AbbreviationAsWordInName")
public final class AutoHDFSCommand {
private static final Logger LOG = LoggerFactory.getLogger(AutoHDFSCommand.class);
private AutoHDFSCommand() {
}
@SuppressWarnings("unchecked")
public static void main(String[] args) throws Exception {
Map<String, Object> conf = new HashMap<>();
conf.put(STORM_USER_NAME_KEY, args[1]); //with realm e.g. hdfs@WITZEND.COM
conf.put(STORM_KEYTAB_FILE_KEY, args[2]);// /etc/security/keytabs/storm.keytab
AutoHDFS autoHdfs = new AutoHDFS();
autoHdfs.prepare(conf);
AutoHDFSNimbus autoHdfsNimbus = new AutoHDFSNimbus();
autoHdfsNimbus.prepare(conf);
Map<String,String> creds = new HashMap<>();
autoHdfsNimbus.populateCredentials(creds, conf, args[0]);
LOG.info("Got HDFS credentials", autoHdfs.getCredentials(creds));
Subject s = new Subject();
autoHdfs.populateSubject(s, creds);
LOG.info("Got a Subject " + s);
autoHdfsNimbus.renew(creds, conf, args[0]);
LOG.info("renewed credentials", autoHdfs.getCredentials(creds));
}
}