~ubuntu-branches/ubuntu/raring/qtwebkit-source/raring-proposed

« back to all changes in this revision

Viewing changes to Source/WebKit2/WebProcess/mac/SecItemShimMethods.mm

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-02-18 14:24:18 UTC
  • Revision ID: package-import@ubuntu.com-20130218142418-eon0jmjg3nj438uy
Tags: upstream-2.3
ImportĀ upstreamĀ versionĀ 2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2011 Apple Inc. All rights reserved.
 
3
 *
 
4
 * Redistribution and use in source and binary forms, with or without
 
5
 * modification, are permitted provided that the following conditions
 
6
 * are met:
 
7
 * 1. Redistributions of source code must retain the above copyright
 
8
 *    notice, this list of conditions and the following disclaimer.
 
9
 * 2. Redistributions in binary form must reproduce the above copyright
 
10
 *    notice, this list of conditions and the following disclaimer in the
 
11
 *    documentation and/or other materials provided with the distribution.
 
12
 *
 
13
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
 
14
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 
15
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 
16
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
 
17
 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 
18
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 
19
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 
20
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 
21
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 
22
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
 
23
 * THE POSSIBILITY OF SUCH DAMAGE.
 
24
 */
 
25
 
 
26
#import "config.h"
 
27
#import "SecItemShimMethods.h"
 
28
 
 
29
#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1070
 
30
 
 
31
#import "BlockingResponseMap.h"
 
32
#import "SecItemRequestData.h"
 
33
#import "SecItemResponseData.h"
 
34
#import "WebProcess.h"
 
35
#import "WebProcessProxyMessages.h"
 
36
#import "WebProcessShim.h"
 
37
#import <Security/SecItem.h>
 
38
#import <dlfcn.h>
 
39
 
 
40
namespace WebKit {
 
41
 
 
42
static BlockingResponseMap<SecItemResponseData>& responseMap()
 
43
{
 
44
    AtomicallyInitializedStatic(BlockingResponseMap<SecItemResponseData>&, responseMap = *new BlockingResponseMap<SecItemResponseData>);
 
45
    return responseMap;
 
46
}
 
47
 
 
48
static uint64_t generateSecItemRequestID()
 
49
{
 
50
    static int64_t uniqueSecItemRequestID;
 
51
    return atomicIncrement(&uniqueSecItemRequestID);
 
52
}
 
53
 
 
54
void didReceiveSecItemResponse(uint64_t requestID, const SecItemResponseData& response)
 
55
{
 
56
    responseMap().didReceiveResponse(requestID, adoptPtr(new SecItemResponseData(response)));
 
57
}
 
58
 
 
59
static PassOwnPtr<SecItemResponseData> sendSeqItemRequest(SecItemRequestData::Type requestType, CFDictionaryRef query, CFDictionaryRef attributesToMatch = 0)
 
60
{
 
61
    uint64_t requestID = generateSecItemRequestID();
 
62
    if (!WebProcess::shared().connection()->send(Messages::WebProcessProxy::SecItemRequest(requestID, SecItemRequestData(requestType, query, attributesToMatch)), 0))
 
63
        return nullptr;
 
64
 
 
65
    return responseMap().waitForResponse(requestID);
 
66
}
 
67
 
 
68
static OSStatus webSecItemCopyMatching(CFDictionaryRef query, CFTypeRef* result)
 
69
{
 
70
    OwnPtr<SecItemResponseData> response = sendSeqItemRequest(SecItemRequestData::CopyMatching, query);
 
71
    if (!response)
 
72
        return errSecInteractionNotAllowed;
 
73
 
 
74
    *result = response->resultObject().leakRef();
 
75
    return response->resultCode();
 
76
}
 
77
 
 
78
static OSStatus webSecItemAdd(CFDictionaryRef query, CFTypeRef* result)
 
79
{
 
80
    OwnPtr<SecItemResponseData> response = sendSeqItemRequest(SecItemRequestData::Add, query);
 
81
    if (!response)
 
82
        return errSecInteractionNotAllowed;
 
83
 
 
84
    if (result)
 
85
        *result = response->resultObject().leakRef();
 
86
    return response->resultCode();
 
87
}
 
88
 
 
89
static OSStatus webSecItemUpdate(CFDictionaryRef query, CFDictionaryRef attributesToUpdate)
 
90
{
 
91
    OwnPtr<SecItemResponseData> response = sendSeqItemRequest(SecItemRequestData::Update, query, attributesToUpdate);
 
92
    if (!response)
 
93
        return errSecInteractionNotAllowed;
 
94
    
 
95
    return response->resultCode();
 
96
}
 
97
 
 
98
static OSStatus webSecItemDelete(CFDictionaryRef query)
 
99
{
 
100
    OwnPtr<SecItemResponseData> response = sendSeqItemRequest(SecItemRequestData::Delete, query);
 
101
    if (!response)
 
102
        return errSecInteractionNotAllowed;
 
103
    
 
104
    return response->resultCode();
 
105
}
 
106
 
 
107
void initializeSecItemShim()
 
108
{
 
109
    const WebProcessSecItemShimCallbacks callbacks = {
 
110
        webSecItemCopyMatching,
 
111
        webSecItemAdd,
 
112
        webSecItemUpdate,
 
113
        webSecItemDelete
 
114
    };
 
115
    
 
116
    WebProcessSecItemShimInitializeFunc func = reinterpret_cast<WebProcessSecItemShimInitializeFunc>(dlsym(RTLD_DEFAULT, "WebKitWebProcessSecItemShimInitialize"));
 
117
    func(callbacks);
 
118
}
 
119
 
 
120
} // namespace WebKit
 
121
 
 
122
#endif // __MAC_OS_X_VERSION_MIN_REQUIRED >= 1070