5367N/A/*
5367N/A * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
5367N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5367N/A *
5367N/A * This code is free software; you can redistribute it and/or modify it
5367N/A * under the terms of the GNU General Public License version 2 only, as
5367N/A * published by the Free Software Foundation.
5367N/A *
5367N/A * This code is distributed in the hope that it will be useful, but WITHOUT
5367N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
5367N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
5367N/A * version 2 for more details (a copy is included in the LICENSE file that
5367N/A * accompanied this code).
5367N/A *
5367N/A * You should have received a copy of the GNU General Public License version
5367N/A * 2 along with this work; if not, write to the Free Software Foundation,
5367N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
5367N/A *
5367N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
5367N/A * or visit www.oracle.com if you need additional information or have any
5367N/A * questions.
5367N/A */
5367N/A
5367N/A/*
5367N/A * @test
5367N/A * @bug 7201053
5367N/A * @summary Krb5LoginModule shows NPE when both useTicketCache and storeKey
5367N/A * are set to true
5367N/A * @compile -XDignore.symbol.file UseCacheAndStoreKey.java
5367N/A * @run main/othervm UseCacheAndStoreKey
5367N/A */
5367N/A
5367N/Aimport java.io.FileOutputStream;
5367N/Aimport javax.security.auth.login.LoginException;
5367N/A
5367N/A// The basic krb5 test skeleton you can copy from
5367N/Apublic class UseCacheAndStoreKey {
5367N/A
5367N/A public static void main(String[] args) throws Exception {
5367N/A
5367N/A new OneKDC(null).writeJAASConf();
5367N/A
5367N/A // KDC would save ccache for client
5367N/A System.setProperty("test.kdc.save.ccache", "cache.here");
5367N/A try (FileOutputStream fos = new FileOutputStream(OneKDC.JAAS_CONF)) {
5367N/A fos.write((
5367N/A "me {\n" +
5367N/A " com.sun.security.auth.module.Krb5LoginModule required\n" +
5367N/A " principal=\"" + OneKDC.USER + "\"\n" +
5367N/A " useTicketCache=true\n" +
5367N/A " ticketCache=cache.here\n" +
5367N/A " isInitiator=true\n" +
5367N/A " storeKey=true;\n};\n"
5367N/A ).getBytes());
5367N/A }
5367N/A
5367N/A // The first login will use default callback and succeed
5367N/A Context.fromJAAS("me");
5367N/A
5367N/A // The second login uses ccache and won't be able to store the keys
5367N/A try {
5367N/A Context.fromJAAS("me");
5367N/A throw new Exception("Should fail");
5367N/A } catch (LoginException le) {
5367N/A if (le.getMessage().indexOf("NullPointerException") >= 0
5367N/A || le.getCause() instanceof NullPointerException) {
5367N/A throw new Exception("NPE");
5367N/A }
5367N/A }
5367N/A }
5367N/A}