source: osm/applications/editors/josm/plugins/native-password-manager/src/org/netbeans/modules/keyring/mac/MacProvider.java@ 26335

Last change on this file since 26335 was 26335, checked in by bastik, 13 years ago

new plugin: native password manager

File size: 5.2 KB
Line 
1/*
2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
3 *
4 * Copyright 2010 Oracle and/or its affiliates. All rights reserved.
5 *
6 * Oracle and Java are registered trademarks of Oracle and/or its affiliates.
7 * Other names may be trademarks of their respective owners.
8 *
9 * The contents of this file are subject to the terms of either the GNU
10 * General Public License Version 2 only ("GPL") or the Common
11 * Development and Distribution License("CDDL") (collectively, the
12 * "License"). You may not use this file except in compliance with the
13 * License. You can obtain a copy of the License at
14 * http://www.netbeans.org/cddl-gplv2.html
15 * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
16 * specific language governing permissions and limitations under the
17 * License. When distributing the software, include this License Header
18 * Notice in each file and include the License file at
19 * nbbuild/licenses/CDDL-GPL-2-CP. Oracle designates this
20 * particular file as subject to the "Classpath" exception as provided
21 * by Oracle in the GPL Version 2 section of the License file that
22 * accompanied this code. If applicable, add the following below the
23 * License Header, with the fields enclosed by brackets [] replaced by
24 * your own identifying information:
25 * "Portions Copyrighted [year] [name of copyright owner]"
26 *
27 * If you wish your version of this file to be governed by only the CDDL
28 * or only the GPL Version 2, indicate your decision by adding
29 * "[Contributor] elects to include this software in this distribution
30 * under the [CDDL or GPL Version 2] license." If you do not indicate a
31 * single choice of license, a recipient has the option to distribute
32 * your version of this file under either the CDDL, the GPL Version 2 or
33 * to extend the choice of license to its licensees as provided above.
34 * However, if you add GPL Version 2 code and therefore, elected the GPL
35 * Version 2 license, then the option applies only if the new code is
36 * made subject to such option by the copyright holder.
37 *
38 * Contributor(s):
39 *
40 * Portions Copyrighted 2009 Sun Microsystems, Inc.
41 */
42
43package org.netbeans.modules.keyring.mac;
44
45import com.sun.jna.Pointer;
46import java.io.UnsupportedEncodingException;
47import java.util.logging.Level;
48import java.util.logging.Logger;
49import org.netbeans.spi.keyring.KeyringProvider;
50
51public class MacProvider implements KeyringProvider {
52
53 private static final Logger LOG = Logger.getLogger(MacProvider.class.getName());
54
55 public boolean enabled() {
56 return true; // test elsewhere if we are on a mac
57 }
58
59 public char[] read(String key) {
60 try {
61 byte[] serviceName = key.getBytes("UTF-8");
62 byte[] accountName = "JOSM".getBytes("UTF-8");
63 int[] dataLength = new int[1];
64 Pointer[] data = new Pointer[1];
65 error("find", SecurityLibrary.LIBRARY.SecKeychainFindGenericPassword(null, serviceName.length, serviceName,
66 accountName.length, accountName, dataLength, data, null));
67 if (data[0] == null) {
68 return null;
69 }
70 byte[] value = data[0].getByteArray(0, dataLength[0]); // XXX ought to call SecKeychainItemFreeContent
71 return new String(value, "UTF-8").toCharArray();
72 } catch (UnsupportedEncodingException x) {
73 LOG.log(Level.WARNING, null, x);
74 return null;
75 }
76 }
77
78 public void save(String key, char[] password, String description) {
79 delete(key); // XXX supposed to use SecKeychainItemModifyContent instead, but this seems like too much work
80 try {
81 byte[] serviceName = key.getBytes("UTF-8");
82 byte[] accountName = "JOSM".getBytes("UTF-8");
83 // Keychain Access seems to expect UTF-8, so do not use Utils.chars2Bytes:
84 byte[] data = new String(password).getBytes("UTF-8");
85 error("save", SecurityLibrary.LIBRARY.SecKeychainAddGenericPassword(null, serviceName.length, serviceName,
86 accountName.length, accountName, data.length, data, null));
87 } catch (UnsupportedEncodingException x) {
88 LOG.log(Level.WARNING, null, x);
89 }
90 // XXX use description somehow... better to use SecItemAdd with kSecAttrDescription
91 }
92
93 public void delete(String key) {
94 try {
95 byte[] serviceName = key.getBytes("UTF-8");
96 byte[] accountName = "JOSM".getBytes("UTF-8");
97 Pointer[] itemRef = new Pointer[1];
98 error("find (for delete)", SecurityLibrary.LIBRARY.SecKeychainFindGenericPassword(null, serviceName.length, serviceName,
99 accountName.length, accountName, null, null, itemRef));
100 if (itemRef[0] != null) {
101 error("delete", SecurityLibrary.LIBRARY.SecKeychainItemDelete(itemRef[0]));
102 }
103 } catch (UnsupportedEncodingException x) {
104 LOG.log(Level.WARNING, null, x);
105 }
106 }
107
108 private static void error(String msg, int code) {
109 if (code != 0 && code != /* errSecItemNotFound, always returned from find it seems */-25300) {
110 // XXX translate, but SecCopyErrorMessageString returns weird CFStringRef
111 LOG.warning(msg + ": " + code);
112 }
113 }
114
115}
Note: See TracBrowser for help on using the repository browser.