66
66
*/
67
67
68
68
public class FileCredentialsCache extends CredentialsCache
69
- implements FileCCacheConstants {
69
+ implements FileCCacheConstants {
70
70
public int version ;
71
71
public Tag tag ; // optional
72
72
public PrincipalName primaryPrincipal ;
73
73
private Vector <Credentials > credentialsList ;
74
74
75
+ private final String localCacheName ;
76
+
75
77
public static synchronized FileCredentialsCache acquireInstance (
76
78
PrincipalName principal , String cache ) {
77
79
try {
78
- FileCredentialsCache fcc = new FileCredentialsCache () ;
80
+ String cacheName ;
79
81
if (cache == null ) {
80
82
cacheName = FileCredentialsCache .getDefaultCacheName ();
81
83
} else {
@@ -85,10 +87,11 @@ public static synchronized FileCredentialsCache acquireInstance(
85
87
// invalid cache name or the file doesn't exist
86
88
return null ;
87
89
}
90
+ FileCredentialsCache fcc = new FileCredentialsCache (cacheName );
88
91
if (principal != null ) {
89
92
fcc .primaryPrincipal = principal ;
90
93
}
91
- fcc .load (cacheName );
94
+ fcc .load ();
92
95
return fcc ;
93
96
} catch (IOException | KrbException e ) {
94
97
// we don't handle it now, instead we return a null at the end.
@@ -106,13 +109,13 @@ public static FileCredentialsCache acquireInstance() {
106
109
static synchronized FileCredentialsCache New (PrincipalName principal ,
107
110
String name ) {
108
111
try {
109
- FileCredentialsCache fcc = new FileCredentialsCache ();
110
- cacheName = FileCredentialsCache .checkValidation (name );
112
+ String cacheName = FileCredentialsCache .checkValidation (name );
111
113
if (cacheName == null ) {
112
- // invalid cache name or the file doesn't exist
114
+ // invalid cache name
113
115
return null ;
114
116
}
115
- fcc .init (principal , cacheName );
117
+ FileCredentialsCache fcc = new FileCredentialsCache (cacheName );
118
+ fcc .init (principal );
116
119
return fcc ;
117
120
}
118
121
catch (IOException | KrbException e ) {
@@ -122,9 +125,9 @@ static synchronized FileCredentialsCache New(PrincipalName principal,
122
125
123
126
static synchronized FileCredentialsCache New (PrincipalName principal ) {
124
127
try {
125
- FileCredentialsCache fcc = new FileCredentialsCache ();
126
- cacheName = FileCredentialsCache . getDefaultCacheName ( );
127
- fcc .init (principal , cacheName );
128
+ String cacheName = FileCredentialsCache . getDefaultCacheName ();
129
+ FileCredentialsCache fcc = new FileCredentialsCache ( cacheName );
130
+ fcc .init (principal );
128
131
return fcc ;
129
132
}
130
133
catch (IOException | KrbException e ) {
@@ -135,29 +138,29 @@ static synchronized FileCredentialsCache New(PrincipalName principal) {
135
138
return null ;
136
139
}
137
140
138
- private FileCredentialsCache () {
141
+ private FileCredentialsCache (String cacheName ) {
142
+ localCacheName = cacheName ;
139
143
}
140
144
141
- boolean exists ( String cache ) {
142
- File file = new File ( cache );
143
- return file . exists () ;
145
+ @ Override
146
+ public String cacheName () {
147
+ return localCacheName ;
144
148
}
145
149
146
- synchronized void init (PrincipalName principal , String name )
147
- throws IOException , KrbException {
150
+ synchronized void init (PrincipalName principal )
151
+ throws IOException , KrbException {
148
152
primaryPrincipal = principal ;
149
- try (FileOutputStream fos = new FileOutputStream (name );
153
+ try (FileOutputStream fos = new FileOutputStream (localCacheName );
150
154
CCacheOutputStream cos = new CCacheOutputStream (fos )) {
151
155
version = KRB5_FCC_FVNO_3 ;
152
156
cos .writeHeader (primaryPrincipal , version );
153
157
}
154
- load (name );
158
+ load ();
155
159
}
156
160
157
- synchronized void load (String name ) throws IOException , KrbException {
158
- PrincipalName p ;
159
- try (FileInputStream fis = new FileInputStream (name );
160
- CCacheInputStream cis = new CCacheInputStream (fis )) {
161
+ synchronized void load () throws IOException , KrbException {
162
+ try (FileInputStream fis = new FileInputStream (localCacheName );
163
+ CCacheInputStream cis = new CCacheInputStream (fis )) {
161
164
version = cis .readVersion ();
162
165
if (version == KRB5_FCC_FVNO_4 ) {
163
166
tag = cis .readTag ();
@@ -167,14 +170,15 @@ synchronized void load(String name) throws IOException, KrbException {
167
170
cis .setNativeByteOrder ();
168
171
}
169
172
}
170
- p = cis .readPrincipal (version );
173
+ PrincipalName p = cis .readPrincipal (version );
171
174
172
175
if (primaryPrincipal != null ) {
173
176
if (!(primaryPrincipal .match (p ))) {
174
177
throw new IOException ("Primary principals don't match." );
175
178
}
176
- } else
179
+ } else {
177
180
primaryPrincipal = p ;
181
+ }
178
182
credentialsList = new Vector <>();
179
183
while (cis .available () > 0 ) {
180
184
Object cred = cis .readCred (version );
@@ -245,8 +249,8 @@ public synchronized PrincipalName getPrimaryPrincipal() {
245
249
* Saves the credentials cache file to the disk.
246
250
*/
247
251
public synchronized void save () throws IOException , Asn1Exception {
248
- try (FileOutputStream fos = new FileOutputStream (cacheName );
249
- CCacheOutputStream cos = new CCacheOutputStream (fos )) {
252
+ try (FileOutputStream fos = new FileOutputStream (localCacheName );
253
+ CCacheOutputStream cos = new CCacheOutputStream (fos )) {
250
254
cos .writeHeader (primaryPrincipal , version );
251
255
Credentials [] tmp ;
252
256
if ((tmp = getCredsList ()) != null ) {
@@ -533,12 +537,10 @@ public static String checkValidation(String name) {
533
537
// get absolute directory
534
538
File temp = new File (fCheck .getParent ());
535
539
// test if the directory exists
536
- if (!(temp .isDirectory ()))
540
+ if (!(temp .isDirectory ())) {
537
541
fullname = null ;
538
- temp = null ;
542
+ }
539
543
}
540
- fCheck = null ;
541
-
542
544
} catch (IOException e ) {
543
545
fullname = null ; // invalid name
544
546
}
@@ -554,7 +556,6 @@ private static String exec(String c) {
554
556
}
555
557
final String [] command = v .toArray (new String [0 ]);
556
558
try {
557
-
558
559
@ SuppressWarnings ("removal" )
559
560
Process p =
560
561
java .security .AccessController .doPrivileged
@@ -582,13 +583,15 @@ private static String exec(String c) {
582
583
while ((s1 = commandResult .readLine ()) != null ) {
583
584
if (s1 .length () >= 11 ) {
584
585
if ((s1 .substring (0 , 11 )).equalsIgnoreCase
585
- ("KRB5CCNAME=" )) {
586
+ ("KRB5CCNAME=" )) {
586
587
s1 = s1 .substring (11 );
587
588
break ;
588
589
}
589
590
}
590
591
}
591
- } else s1 = commandResult .readLine ();
592
+ } else {
593
+ s1 = commandResult .readLine ();
594
+ }
592
595
commandResult .close ();
593
596
return s1 ;
594
597
} catch (Exception e ) {
0 commit comments