Home | History | Annotate | Download | only in common
      1 // Copyright 2013 The Chromium Authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 // Multiply-included file, no traditional include guard.
      6 
      7 #include <string>
      8 
      9 #include "base/basictypes.h"
     10 #include "base/process/process.h"
     11 #include "build/build_config.h"
     12 #include "components/nacl/common/nacl_types.h"
     13 #include "components/nacl/common/pnacl_types.h"
     14 #include "content/public/common/common_param_traits.h"
     15 #include "ipc/ipc_channel_handle.h"
     16 #include "ipc/ipc_message_macros.h"
     17 #include "ipc/ipc_platform_file.h"
     18 #include "url/gurl.h"
     19 
     20 #define IPC_MESSAGE_START NaClHostMsgStart
     21 
     22 IPC_STRUCT_TRAITS_BEGIN(nacl::NaClLaunchParams)
     23   IPC_STRUCT_TRAITS_MEMBER(manifest_url)
     24   IPC_STRUCT_TRAITS_MEMBER(render_view_id)
     25   IPC_STRUCT_TRAITS_MEMBER(permission_bits)
     26   IPC_STRUCT_TRAITS_MEMBER(uses_irt)
     27   IPC_STRUCT_TRAITS_MEMBER(uses_nonsfi_mode)
     28   IPC_STRUCT_TRAITS_MEMBER(enable_dyncode_syscalls)
     29   IPC_STRUCT_TRAITS_MEMBER(enable_exception_handling)
     30   IPC_STRUCT_TRAITS_MEMBER(enable_crash_throttling)
     31 IPC_STRUCT_TRAITS_END()
     32 
     33 IPC_STRUCT_TRAITS_BEGIN(nacl::NaClLaunchResult)
     34   IPC_STRUCT_TRAITS_MEMBER(imc_channel_handle)
     35   IPC_STRUCT_TRAITS_MEMBER(ppapi_ipc_channel_handle)
     36   IPC_STRUCT_TRAITS_MEMBER(trusted_ipc_channel_handle)
     37   IPC_STRUCT_TRAITS_MEMBER(manifest_service_ipc_channel_handle)
     38   IPC_STRUCT_TRAITS_MEMBER(plugin_pid)
     39   IPC_STRUCT_TRAITS_MEMBER(plugin_child_id)
     40 IPC_STRUCT_TRAITS_END()
     41 
     42 IPC_STRUCT_TRAITS_BEGIN(nacl::PnaclCacheInfo)
     43   IPC_STRUCT_TRAITS_MEMBER(pexe_url)
     44   IPC_STRUCT_TRAITS_MEMBER(abi_version)
     45   IPC_STRUCT_TRAITS_MEMBER(opt_level)
     46   IPC_STRUCT_TRAITS_MEMBER(last_modified)
     47   IPC_STRUCT_TRAITS_MEMBER(etag)
     48   IPC_STRUCT_TRAITS_MEMBER(has_no_store_header)
     49   IPC_STRUCT_TRAITS_MEMBER(sandbox_isa)
     50   IPC_STRUCT_TRAITS_MEMBER(extra_flags)
     51 IPC_STRUCT_TRAITS_END()
     52 
     53 // A renderer sends this to the browser process when it wants to start
     54 // a new instance of the Native Client process. The browser will launch
     55 // the process and return an IPC channel handle. This handle will only
     56 // be valid if the NaCl IPC proxy is enabled.
     57 IPC_SYNC_MESSAGE_CONTROL1_2(NaClHostMsg_LaunchNaCl,
     58                             nacl::NaClLaunchParams /* launch_params */,
     59                             nacl::NaClLaunchResult /* launch_result */,
     60                             std::string /* error_message */)
     61 
     62 // A renderer sends this to the browser process when it wants to
     63 // open a file for from the Pnacl component directory.
     64 IPC_SYNC_MESSAGE_CONTROL1_1(NaClHostMsg_GetReadonlyPnaclFD,
     65                             std::string /* name of requested PNaCl file */,
     66                             IPC::PlatformFileForTransit /* output file */)
     67 
     68 // A renderer sends this to the browser process when it wants to
     69 // create a temporary file.
     70 IPC_SYNC_MESSAGE_CONTROL0_1(NaClHostMsg_NaClCreateTemporaryFile,
     71                             IPC::PlatformFileForTransit /* out file */)
     72 
     73 // A renderer sends this to the browser to request a file descriptor for
     74 // a translated nexe.
     75 IPC_MESSAGE_CONTROL3(NaClHostMsg_NexeTempFileRequest,
     76                      int /* render_view_id */,
     77                      int /* instance */,
     78                      nacl::PnaclCacheInfo /* cache info */)
     79 
     80 // The browser replies to a renderer's temp file request with output_file,
     81 // which is either a writeable temp file to use for translation, or a
     82 // read-only file containing the translated nexe from the cache.
     83 IPC_MESSAGE_CONTROL3(NaClViewMsg_NexeTempFileReply,
     84                      int /* instance */,
     85                      bool /* is_cache_hit */,
     86                      IPC::PlatformFileForTransit /* output file */)
     87 
     88 // A renderer sends this to the browser to report that its translation has
     89 // finished and its temp file contains the translated nexe.
     90 IPC_MESSAGE_CONTROL2(NaClHostMsg_ReportTranslationFinished,
     91                      int /* instance */,
     92                      bool /* success */)
     93 
     94 // A renderer sends this to the browser process to report when the client
     95 // architecture is not listed in the manifest.
     96 IPC_MESSAGE_CONTROL1(NaClHostMsg_MissingArchError,
     97                      int /* render_view_id */)
     98 
     99 // A renderer sends this to the browser process when it wants to
    100 // open a NaCl executable file from an installed application directory.
    101 IPC_SYNC_MESSAGE_CONTROL2_3(NaClHostMsg_OpenNaClExecutable,
    102                             int /* render_view_id */,
    103                             GURL /* URL of NaCl executable file */,
    104                             IPC::PlatformFileForTransit /* output file */,
    105                             uint64 /* file_token_lo */,
    106                             uint64 /* file_token_hi */)
    107 
    108 // A renderer sends this to the browser process to determine how many
    109 // processors are online.
    110 IPC_SYNC_MESSAGE_CONTROL0_1(NaClHostMsg_NaClGetNumProcessors,
    111                             int /* Number of processors */)
    112 
    113 // A renderer sends this to the browser process to determine if the
    114 // NaCl application started from the given NMF URL will be debugged.
    115 // If not (filtered out by commandline flags), it sets should_debug to false.
    116 IPC_SYNC_MESSAGE_CONTROL1_1(NaClHostMsg_NaClDebugEnabledForURL,
    117                             GURL /* alleged URL of NMF file */,
    118                             bool /* should debug */)
    119