OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ppapi/nacl_irt/manifest_service.h" | 5 #include "ppapi/nacl_irt/manifest_service.h" |
6 | 6 |
7 #include "base/message_loop/message_loop_proxy.h" | 7 #include "base/message_loop/message_loop_proxy.h" |
8 #include "ipc/ipc_channel_handle.h" | 8 #include "ipc/ipc_channel_handle.h" |
9 #include "ipc/ipc_channel_proxy.h" | 9 #include "ipc/ipc_channel_proxy.h" |
10 #include "ipc/ipc_sync_message_filter.h" | 10 #include "ipc/ipc_sync_message_filter.h" |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 if (!filter_->Send(new PpapiHostMsg_OpenResource( | 97 if (!filter_->Send(new PpapiHostMsg_OpenResource( |
98 std::string(kFilePrefix) + file, | 98 std::string(kFilePrefix) + file, |
99 &ipc_fd, | 99 &ipc_fd, |
100 &file_token_lo, | 100 &file_token_lo, |
101 &file_token_hi))) { | 101 &file_token_hi))) { |
102 LOG(ERROR) << "ManifestService::OpenResource failed:" << file; | 102 LOG(ERROR) << "ManifestService::OpenResource failed:" << file; |
103 *fd = -1; | 103 *fd = -1; |
104 return false; | 104 return false; |
105 } | 105 } |
106 | 106 |
| 107 #if defined(OS_NACL) |
107 // File tokens are used internally by NaClIPCAdapter and should have | 108 // File tokens are used internally by NaClIPCAdapter and should have |
108 // been cleared from the message when it is received here. | 109 // been cleared from the message when it is received here. |
| 110 // Note that, on Non-SFI NaCl, the IPC channel is directly connected to the |
| 111 // renderer process, so NaClIPCAdapter does not work. It means, |
| 112 // file_token_{lo,hi} fields may be properly filled, although it is just |
| 113 // ignored here. |
109 CHECK(file_token_lo == 0); | 114 CHECK(file_token_lo == 0); |
110 CHECK(file_token_hi == 0); | 115 CHECK(file_token_hi == 0); |
| 116 #endif |
111 | 117 |
112 // Copy the file if we received a valid file descriptor. Otherwise, if we got | 118 // Copy the file if we received a valid file descriptor. Otherwise, if we got |
113 // a reply, the file doesn't exist, so provide an fd of -1. | 119 // a reply, the file doesn't exist, so provide an fd of -1. |
114 // See IrtOpenResource() for how this function's result is interpreted. | 120 // See IrtOpenResource() for how this function's result is interpreted. |
115 if (ipc_fd.is_file()) | 121 if (ipc_fd.is_file()) |
116 *fd = ipc_fd.descriptor().fd; | 122 *fd = ipc_fd.descriptor().fd; |
117 else | 123 else |
118 *fd = -1; | 124 *fd = -1; |
119 return true; | 125 return true; |
120 } | 126 } |
121 | 127 |
122 int IrtOpenResource(const char* file, int* fd) { | 128 int IrtOpenResource(const char* file, int* fd) { |
123 // Remove leading '/' character. | 129 // Remove leading '/' character. |
124 if (file[0] == '/') | 130 if (file[0] == '/') |
125 ++file; | 131 ++file; |
126 | 132 |
127 ManifestService* manifest_service = GetManifestService(); | 133 ManifestService* manifest_service = GetManifestService(); |
128 if (manifest_service == NULL || | 134 if (manifest_service == NULL || |
129 !manifest_service->OpenResource(file, fd)) { | 135 !manifest_service->OpenResource(file, fd)) { |
130 return NACL_ABI_EIO; | 136 return NACL_ABI_EIO; |
131 } | 137 } |
132 return (*fd == -1) ? NACL_ABI_ENOENT : 0; | 138 return (*fd == -1) ? NACL_ABI_ENOENT : 0; |
133 } | 139 } |
134 | 140 |
135 } // namespace ppapi | 141 } // namespace ppapi |
OLD | NEW |