Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5a1cdf150078969ac13da678ad7aaf1e86f7d39e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
/*******************************************************************************
 * Copyright (c) 2011, 2017 SAP AG
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 * 
 * Contributors:
 *     Lazar Kirchev, SAP AG - initial API and implementation
 *******************************************************************************/

package org.eclipse.equinox.console.storage;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.HashSet;
import java.util.Properties;
import java.util.Set;

/**
 * This class implements a storage for users, passwords and roles. The data is stored in a
 * properties-like file in the format /ssh/<username>/password=<password> and 
 * /ssh/<username>/roles=<comma_separated_list_of_roles>
 * 
 *
 */
public class SecureUserStore {

	private static final String USER_STORE_FILE_NAME = "org.eclipse.equinox.console.jaas.file";
	private static final String PASSWORD_KEY = "password";
	private static final String ROLES_KEY = "roles";
	private static final String SSH_PREFIX = "/ssh";
	private static final String DELIMITER = "/";
	private static final int USERNAME_INDEX = 2;
	private static final int KEY_ELEMENTS_COUNT = 4;
	
	/**
	 * Gets the usernames of all users.
	 * 
	 * @return String array containing the usernames
	 */
	public static String[] getUserNames() {
		String userFileLoc = getFileLocation();
		InputStream in = null;
		
		try {
			in = new FileInputStream(userFileLoc);
			Properties users = null;
			try {
				users = populateUserStore(in);
			} catch (IOException e) {
				throw new IllegalArgumentException("Cannot load properties from file " + userFileLoc);
			}
			Set<String> userNames = new HashSet<>();
			for (Object key : users.keySet()) {
				if (!(key instanceof String)) {
					continue;
				}
				String[] parts = ((String) key).split(DELIMITER);
				// since the key starts with DELIMITER, the first element of key.split(DELIMITER) is an empty string
				// that is why the result is {"", "ssh", "<username>", "password"} or {"", "ssh", "<username>", "roles"}
				if (parts.length < KEY_ELEMENTS_COUNT) {
					continue;
				}
				userNames.add(parts[USERNAME_INDEX]);
			}

			return userNames.toArray(new String[0]);
		
		} catch (FileNotFoundException e) {
			throw new IllegalArgumentException("File " + userFileLoc + " does not exist");
		} finally {
			if (in != null) {
				try {
					in.close();
				} catch (IOException e) {
					//do nothing
				}
			}
		}
	}
	
	public static String getPassword(String username) {
		return getProperty(username, PASSWORD_KEY);
	}
	
	public static String getRoles(String username) {
		return getProperty(username, ROLES_KEY);
	}
	
	/**
	 * Stores a user entry to the store.
	 * 
	 * @param username the name of the user
	 * @param password the password of the user
	 * @param roles comma-separated list of the roles of the user
	 */
	public static void putUser(String username, String password, String roles) {
		String userFileLoc = getFileLocation();
		InputStream in = null;
		OutputStream out = null;
		
		try {
			in = new FileInputStream(userFileLoc);
			Properties users = null; 
			
			try {
				users = populateUserStore(in);
			} catch (IOException e) {
				throw new IllegalArgumentException("Cannot load properties from file " + userFileLoc);
			}
			
			if (existsUser(username, users)){
				throw new IllegalArgumentException("The user already exists!");
			}
			
			if (roles == null) {
				roles = "";
			}
			
			String userPassKey = constructPropertyName(username, PASSWORD_KEY);
			String userRolesKey = constructPropertyName(username, ROLES_KEY);
			users.put(userPassKey, password);
			users.put(userRolesKey, roles);
			
			out = new FileOutputStream(userFileLoc);
			try {
				users.store(out, null);
			} catch (IOException e) {
				throw new IllegalArgumentException("Cannot store properties in file " + userFileLoc);
			}
		} catch (FileNotFoundException e) {
			throw new IllegalArgumentException("File " + userFileLoc + " does not exist");
		} finally {
			if (in != null) {
				try {
					in.close();
				} catch (IOException e) {
					//do nothing
				}
			}
			
			if (out != null) {
				try {
					out.close();
				} catch (IOException e) {
					// do nothing
				}
			}
		}
	}
	
	/**
	 * Adds roles for a particular user
	 * 
	 * @param username user to add roles to 
	 * @param roles comma-separated list of new roles for the user 
	 */
	public static void addRoles(String username, String roles) {
		if (roles == null || roles.length() == 0) {
			return;
		}
		
		String userFileLoc = getFileLocation();
		InputStream in = null;
		OutputStream out = null;
		
		try {
			in = new FileInputStream(userFileLoc);
			Properties users = null; 
			
			try {
				users = populateUserStore(in);
			} catch (IOException e) {
				throw new IllegalArgumentException("Cannot load properties from file " + userFileLoc);
			}
			
			String userRolesKey = constructPropertyName(username, ROLES_KEY);
			String currentRoles = (String)users.remove(userRolesKey);
			Set<String> rolesSet = new HashSet<>();
			
			if (currentRoles.length() > 0) {
				for (String role : currentRoles.split(",")) {
					rolesSet.add(role);
				}
			}
			
			for (String role : roles.split(",")) {
				rolesSet.add(role);
			}
			
			StringBuilder builder = new StringBuilder();
			for (String role : rolesSet) {
				builder.append(role);
				builder.append(",");
			}
			builder.deleteCharAt(builder.lastIndexOf(","));
			
			users.put(userRolesKey, builder.toString());
			
			out = new FileOutputStream(userFileLoc);
			try {
				users.store(out, null);
			} catch (IOException e) {
				throw new IllegalArgumentException("Cannot store properties in file " + userFileLoc);
			}
		} catch (FileNotFoundException e) {
			throw new IllegalArgumentException("File " + userFileLoc + " does not exist");
		} finally {
			if (in != null) {
				try {
					in.close();
				} catch (IOException e) {
					//do nothing
				}
			}
			
			if (out != null) {
				try {
					out.close();
				} catch (IOException e) {
					// do nothing
				}
			}
		}
	}
	
	/**
	 * Removes roles from a user
	 * 
	 * @param username user to remove roles from 
	 * @param rolesToRemove comma-separated list of roles to be removed
	 */
	public static void removeRoles(String username, String rolesToRemove) {
		if(rolesToRemove == null || rolesToRemove.length() == 0) {
			return;
		}
		String userFileLoc = getFileLocation();
		InputStream in = null;
		OutputStream out = null;
		
		try {
			in = new FileInputStream(userFileLoc);
			Properties users = null; 
			
			try {
				users = populateUserStore(in);
			} catch (IOException e) {
				throw new IllegalArgumentException("Cannot load properties from file " + userFileLoc);
			}
			
			String userRolesKey = constructPropertyName(username, ROLES_KEY);
			String currentRoles = (String)users.remove(userRolesKey);
			Set<String> rolesSet = new HashSet<>();
			
			for (String role : currentRoles.split(",")) {
				rolesSet.add(role);
			}
			
			for (String role : rolesToRemove.split(",")) {
				rolesSet.remove(role);
			}
			
			StringBuilder builder = new StringBuilder();
			for (String role : rolesSet) {
				builder.append(role);
				builder.append(",");
			}
			builder.deleteCharAt(builder.lastIndexOf(","));
			
			users.put(userRolesKey, builder.toString());
			
			out = new FileOutputStream(userFileLoc);
			try {
				users.store(out, null);
			} catch (IOException e) {
				throw new IllegalArgumentException("Cannot store properties in file " + userFileLoc);
			}
		} catch (FileNotFoundException e) {
			throw new IllegalArgumentException("File " + userFileLoc + " does not exist");
		} finally {
			if (in != null) {
				try {
					in.close();
				} catch (IOException e) {
					//do nothing
				}
			}
			
			if (out != null) {
				try {
					out.close();
				} catch (IOException e) {
					// do nothing
				}
			}
		}
	}
	
	/**
	 * Removes an entry for the user from the store.
	 * 
	 * @param username user to be removed
	 */
	public static void deleteUser(String username) {
		String userFileLoc = getFileLocation();
		InputStream in = null;
		OutputStream out = null;
		
		try {
			in = new FileInputStream(userFileLoc);
			Properties users = null; 
			
			try {
				users = populateUserStore(in);
			} catch (IOException e) {
				throw new IllegalArgumentException("Cannot load properties from file " + userFileLoc);
			}
			
			if (!existsUser(username, users)){
				throw new IllegalArgumentException("The user does not exist!");
			}
			
//			Set<Object> keys = users.keySet();
//			for (Object key : keys) {
//				if ((key instanceof String) && ((String) key).contains(DELIMITER + username + DELIMITER)) {
//						users.remove(key);
//				}
//			}
			String rolesProperty = constructPropertyName(username, ROLES_KEY);
			String passwordProperty = constructPropertyName(username, PASSWORD_KEY);
			
			users.remove(rolesProperty);
			users.remove(passwordProperty);
			
			out = new FileOutputStream(userFileLoc);
			try {
				users.store(out, null);
			} catch (IOException e) {
				throw new IllegalArgumentException("Cannot store properties in file " + userFileLoc);
			}
		} catch (FileNotFoundException e) {
			throw new IllegalArgumentException("File " + userFileLoc + " does not exist");
		} finally {
			if (in != null) {
				try {
					in.close();
				} catch (IOException e) {
					//do nothing
				}
			}
			
			if (out != null) {
				try {
					out.close();
				} catch (IOException e) {
					// do nothing
				}
			}
		}
	}
	
	/**
	 * Removes the password for a user
	 * 
	 * @param username user to reset the password
	 */
	public static void resetPassword(String username) {
		String userFileLoc = getFileLocation();
		InputStream in = null;
		OutputStream out = null;
		
		try {
			in = new FileInputStream(userFileLoc);
			Properties users = null; 
			
			try {
				users = populateUserStore(in);
			} catch (IOException e) {
				throw new IllegalArgumentException("Cannot load properties from file " + userFileLoc);
			}
			
			if (!existsUser(username, users)){
				throw new IllegalArgumentException("The user does not exist!");
			}
			
			for (Object key : users.keySet()) {
				if (key instanceof String && ((String) key).contains(DELIMITER + username + DELIMITER + PASSWORD_KEY)) {
					users.remove(key);
					break;
				}
			}
			
			out = new FileOutputStream(userFileLoc);
			try {
				users.store(out, null);
			} catch (IOException e) {
				throw new IllegalArgumentException("Cannot store properties in file " + userFileLoc);
			}
		} catch (FileNotFoundException e) {
			throw new IllegalArgumentException("File " + userFileLoc + " does not exist");
		} finally {
			if (in != null) {
				try {
					in.close();
				} catch (IOException e) {
					//do nothing
				}
			}
			
			if (out != null) {
				try {
					out.close();
				} catch (IOException e) {
					// do nothing
				}
			}
		}
	}
	
	/**
	 * Sets or changes the password for a user 
	 * 
	 * @param username user to set tha password for
	 * @param password the new password
	 */
	public static void setPassword(String username, String password) {
		String userFileLoc = getFileLocation();
		InputStream in = null;
		OutputStream out = null;
		
		try {
			in = new FileInputStream(userFileLoc);
			Properties users = null; 
			
			try {
				users = populateUserStore(in);
			} catch (IOException e) {
				throw new IllegalArgumentException("Cannot load properties from file " + userFileLoc);
			}
			
			if (!existsUser(username, users)){
				throw new IllegalArgumentException("The user does not exist!");
			}
			
			String passwordPropertyName = constructPropertyName(username, PASSWORD_KEY);
			for (Object key : users.keySet()) {
				if ((key instanceof String) && ((String) key).contains(passwordPropertyName)) {
					users.remove(key);
					break;
				}
			}
			
			users.put(passwordPropertyName, password);
			
			out = new FileOutputStream(userFileLoc);
			try {
				users.store(out, null);
			} catch (IOException e) {
				throw new IllegalArgumentException("Cannot store properties in file " + userFileLoc);
			}
		} catch (FileNotFoundException e) {
			throw new IllegalArgumentException("File " + userFileLoc + " does not exist");
		} finally {
			if (in != null) {
				try {
					in.close();
				} catch (IOException e) {
					//do nothing
				}
			}
			
			if (out != null) {
				try {
					out.close();
				} catch (IOException e) {
					// do nothing
				}
			}
		}
	}
	
	/**
	 * CHecks if an entry for a user exists in the store
	 *  
	 * @param username user to check
	 * @return true if there is an entry for this user in the store, false otherwise
	 */
	public static boolean existsUser(String username) {
		String userFileLoc = getFileLocation();
		InputStream in = null;
		try {
			in = new FileInputStream(userFileLoc);
			Properties users = null; 
			
			try {
				users = populateUserStore(in);
			} catch (IOException e) {
				throw new IllegalArgumentException("Cannot load properties from file " + userFileLoc);
			}
			
			return existsUser(username, users);
		} catch (FileNotFoundException e) {
			throw new IllegalArgumentException("File " + userFileLoc + " does not exist");
		} finally {
			if (in != null) {
				try {
					in.close();
				} catch (IOException e) {
					//do nothing
				}
			}
		}
	}
	
	/**
	 * Creates the store file if it does not exist
	 * 
	 * @throws IOException
	 */
	public static void initStorage() throws IOException {
		String userFileLoc = getFileLocation();
		File file = new File(userFileLoc);
		if (!file.exists()) {
			Properties props = new Properties();
			try (OutputStream out = new FileOutputStream(file);) {
				props.store(out, null);
			}
		}
	}
	
	private static String getProperty(String username, String propertyName) {
		String userFileLoc = getFileLocation();
		InputStream in = null;
		try {
			in = new FileInputStream(userFileLoc);
			Properties users = null; 
			
			try {
				users = populateUserStore(in);
			} catch (IOException e) {
				throw new IllegalArgumentException("Cannot load properties from file " + userFileLoc);
			}
			
			return users.getProperty(constructPropertyName(username, propertyName));
		} catch (FileNotFoundException e) {
			throw new IllegalArgumentException("File " + userFileLoc + " does not exist");
		} finally {
			if (in != null) {
				try {
					in.close();
				} catch (IOException e) {
					//do nothing
				}
			}
		}
	}
	
	private static Properties populateUserStore(InputStream in) throws IOException {
		Properties userProperties = new Properties();
		userProperties.load(in);
		return userProperties;
	}
	
	private static String getFileLocation(){
		String userFileLoc = System.getProperty(USER_STORE_FILE_NAME);
		if (userFileLoc == null) {
			throw new IllegalArgumentException("Property " + USER_STORE_FILE_NAME + " is not set; cannot use JAAS authentication");
		}
		
		return userFileLoc;
	}
	
	private static String constructPropertyName(String user, String propertyName) {
		StringBuilder builder = new StringBuilder();
		builder.append(SSH_PREFIX);
		builder.append(DELIMITER);
		builder.append(user);
		builder.append(DELIMITER);
		builder.append(propertyName);
		return builder.toString();
	}
	
	private static boolean existsUser(String username, Properties users) {
		for (Object user : users.keySet()) {
			if (user instanceof String && ((String) user).contains(DELIMITER + username + DELIMITER)) {
				 return true;
			}
		}
		return false;
	}
	
}

Back to the top