Separate privilege and key-manager dll
[platform/core/csapi/security.git] / Tizen.Security.SecureRepository / Tizen.Security.SecureRepository / SafeRawBufferHandle.cs
1 /*
2  *  Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *  Licensed under the Apache License, Version 2.0 (the "License");
5  *  you may not use this file except in compliance with the License.
6  *  You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License
15  */
16
17 using System;
18 using System.Runtime.InteropServices;
19 using static Interop;
20
21 namespace Tizen.Security.SecureRepository
22 {
23     internal class SafeRawBufferHandle : SafeHandle
24     {
25         public SafeRawBufferHandle(IntPtr ptrRawBuffer, bool ownsHandle = true) : base(IntPtr.Zero, true)
26         {
27             this.SetHandle(ptrRawBuffer);
28
29             if (ptrRawBuffer == IntPtr.Zero)
30                 return;
31
32             CkmcRawBuffer buff = (CkmcRawBuffer)Marshal.PtrToStructure(ptrRawBuffer, typeof(CkmcRawBuffer));
33             byte[] data = new byte[buff.size];
34             Marshal.Copy(buff.data, data, 0, data.Length);
35
36             this.Data = data;
37         }
38
39         public byte[] Data
40         {
41             get; set;
42         }
43
44         /// <summary>
45         /// Gets a value that indicates whether the handle is invalid.
46         /// </summary>
47         public override bool IsInvalid
48         {
49             get { return handle == IntPtr.Zero; }
50         }
51
52         /// <summary>
53         /// When overridden in a derived class, executes the code required to free the handle.
54         /// </summary>
55         /// <returns>true if the handle is released successfully</returns>
56         protected override bool ReleaseHandle()
57         {
58             if (IsInvalid) // do not release
59                 return true;
60
61             Interop.CkmcTypes.BufferFree(handle);
62             this.SetHandle(IntPtr.Zero);
63             return true;
64         }
65     }
66 }