Changeset 368


Ignore:
Timestamp:
May 24, 2012, 12:13:31 AM (13 years ago)
Author:
dmik
Message:

icedtea-web: Pass file descriptors to JVM process rather than pipe names.

Pipes on OS/2 don't have real FS entries so the Unix approach wouldn't work.

Location:
trunk/icedtea-web/plugin/icedteanp
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/icedtea-web/plugin/icedteanp/IcedTeaNPPlugin.cc

    r365 r368  
    4444#include <os2.h>
    4545#include <emx/startup.h>
     46#include <sys/socket.h>
    4647#endif
    4748
     
    160161static GIOChannel* in_from_appletviewer = NULL;
    161162
     163#ifdef __OS2__
     164#define CLOSE_FD(fd) do { if (fd != -1) { close (fd); fd = -1; } } while (0)
     165#endif
     166
     167#ifdef __OS2__
     168int in_pipe[2] = { -1 };
     169#else
    162170// Applet viewer input pipe name.
    163171gchar* in_pipe_name;
     172#endif
    164173
    165174// Applet viewer input watch source.
    166175gint in_watch_source;
    167176
     177#ifdef __OS2__
     178int out_pipe[2] = { -1 };
     179#else
    168180// Applet viewer output pipe name.
    169181gchar* out_pipe_name;
     182#endif
    170183
    171184// Applet viewer output watch source.
     
    453466  // pipe.
    454467
     468#ifdef __OS2__
     469  if (socketpair (AF_LOCAL, SOCK_STREAM, 0, in_pipe) == -1)
     470    {
     471      PLUGIN_ERROR_TWO ("Failed to create input pipe", strerror (errno));
     472      np_error = NPERR_GENERIC_ERROR;
     473      goto cleanup_in_pipe;
     474    }
     475  PLUGIN_DEBUG ("ITNP_New: created input fifo: %d/%d\n", in_pipe[0], in_pipe[1]);
     476#else
    455477  // in_pipe_name
    456478  in_pipe_name = g_strdup_printf ("%s/%d-icedteanp-appletviewer-to-plugin",
     
    476498    }
    477499  PLUGIN_DEBUG ("ITNP_New: created input fifo: %s\n", in_pipe_name);
     500#endif
    478501
    479502  // Create plugin-to-appletviewer pipe which we refer to as the
    480503  // output pipe.
    481504
     505#ifdef __OS2__
     506  if (socketpair (AF_LOCAL, SOCK_STREAM, 0, out_pipe) == -1)
     507    {
     508      PLUGIN_ERROR_TWO ("Failed to create input pipe", strerror (errno));
     509      np_error = NPERR_GENERIC_ERROR;
     510      goto cleanup_out_pipe;
     511    }
     512  PLUGIN_DEBUG ("ITNP_New: created output fifo: %d/%d\n", out_pipe[0], out_pipe[1]);
     513#else
    482514  // out_pipe_name
    483515  out_pipe_name = g_strdup_printf ("%s/%d-icedteanp-plugin-to-appletviewer",
     
    502534    }
    503535  PLUGIN_DEBUG ("ITNP_New: created output fifo: %s\n", out_pipe_name);
     536#endif
    504537
    505538  // Start a separate appletviewer process for each applet, even if
     
    510543  np_error = plugin_start_appletviewer (data);
    511544
     545#ifdef __OS2__
     546  // close child ends of the pipes (not needed)
     547  CLOSE_FD (in_pipe[1]);
     548  CLOSE_FD (out_pipe[1]);
     549#endif
     550
    512551  // Create plugin-to-appletviewer channel.  The default encoding for
    513552  // the file is UTF-8.
    514553  // out_to_appletviewer
     554#ifdef __OS2__
     555  out_to_appletviewer = g_io_channel_unix_new (out_pipe[0]);
     556#else
    515557  out_to_appletviewer = g_io_channel_new_file (out_pipe_name,
    516558                                               "w", &channel_error);
     559#endif
    517560  if (!out_to_appletviewer)
    518561    {
     
    540583  // the file is UTF-8.
    541584  // in_from_appletviewer
     585#ifdef __OS2__
     586  in_from_appletviewer = g_io_channel_unix_new (in_pipe [0]);
     587#else
    542588  in_from_appletviewer = g_io_channel_new_file (in_pipe_name,
    543589                                                      "r", &channel_error);
     590#endif
    544591  if (!in_from_appletviewer)
    545592    {
     
    591638
    592639  // cleanup_out_pipe:
     640#ifdef __OS2__
     641 cleanup_out_pipe:
     642  CLOSE_FD (out_pipe [0]);
     643  CLOSE_FD (out_pipe[1]);
     644#else
    593645  // Delete output pipe.
    594   PLUGIN_DEBUG ("ITNP_New: deleting input fifo: %s\n", in_pipe_name);
     646  PLUGIN_DEBUG ("ITNP_New: deleting output fifo: %s\n", out_pipe_name);
    595647  unlink (out_pipe_name);
    596   PLUGIN_DEBUG ("ITNP_New: deleted input fifo: %s\n", in_pipe_name);
     648  PLUGIN_DEBUG ("ITNP_New: deleted output fifo: %s\n", out_pipe_name);
    597649
    598650 cleanup_out_pipe_name:
    599651  g_free (out_pipe_name);
    600652  out_pipe_name = NULL;
     653#endif
    601654
    602655  // cleanup_in_pipe:
     656#ifdef __OS2__
     657 cleanup_in_pipe:
     658  CLOSE_FD (in_pipe[0]);
     659  CLOSE_FD (out_pipe[1]);
     660#else
    603661  // Delete input pipe.
    604   PLUGIN_DEBUG ("ITNP_New: deleting output fifo: %s\n", out_pipe_name);
     662  PLUGIN_DEBUG ("ITNP_New: deleting input fifo: %s\n", in_pipe_name);
    605663  unlink (in_pipe_name);
    606   PLUGIN_DEBUG ("ITNP_New: deleted output fifo: %s\n", out_pipe_name);
     664  PLUGIN_DEBUG ("ITNP_New: deleted input fifo: %s\n", in_pipe_name);
    607665
    608666 cleanup_in_pipe_name:
    609667  g_free (in_pipe_name);
    610668  in_pipe_name = NULL;
     669#endif
    611670
    612671 done:
     
    15701629      }
    15711630      command_line[cmd_num++] = g_strdup("sun.applet.PluginMain");
     1631#ifdef __OS2__
     1632      command_line[cmd_num++] = g_strdup_printf("%d", out_pipe [1]);
     1633      command_line[cmd_num++] = g_strdup_printf("%d", in_pipe [1]);
     1634#else
    15721635      command_line[cmd_num++] = g_strdup(out_pipe_name);
    15731636      command_line[cmd_num++] = g_strdup(in_pipe_name);
     1637#endif
    15741638      command_line[cmd_num] = NULL;
    15751639  } else
     
    15811645      command_line[cmd_num++] = g_strdup_printf("%s/lib/rt.jar", ICEDTEA_WEB_JRE);
    15821646      command_line[cmd_num++] = g_strdup("sun.applet.PluginMain");
     1647#ifdef __OS2__
     1648      command_line[cmd_num++] = g_strdup_printf("%d", out_pipe [1]);
     1649      command_line[cmd_num++] = g_strdup_printf("%d", in_pipe [1]);
     1650#else
    15831651      command_line[cmd_num++] = g_strdup(out_pipe_name);
    15841652      command_line[cmd_num++] = g_strdup(in_pipe_name);
     1653#endif
    15851654      command_line[cmd_num] = NULL;
    15861655  }
     
    16031672      error = NPERR_GENERIC_ERROR;
    16041673    }
     1674
     1675  // make sure we get an error rather than crash the browser when talking to the
     1676  // jvm process if it dies unexpectedly (we do it here since g_spawn() is known
     1677  // to reset SIGPIPE handler to SIG_DFL)
     1678  signal (SIGPIPE, SIG_IGN);
    16051679
    16061680  g_strfreev (environment);
     
    24232497
    24242498  // cleanup_out_pipe:
     2499#ifdef __OS2__
     2500  CLOSE_FD (out_pipe [0]);
     2501  CLOSE_FD (out_pipe [1]);
     2502#else
    24252503  // Delete output pipe.
    24262504  PLUGIN_DEBUG ("NP_Shutdown: deleting output fifo: %s\n", out_pipe_name);
     
    24312509  g_free (out_pipe_name);
    24322510  out_pipe_name = NULL;
     2511#endif
    24332512
    24342513  // cleanup_in_pipe:
     2514#ifdef __OS2__
     2515  CLOSE_FD (in_pipe [0]);
     2516  CLOSE_FD (in_pipe [1]);
     2517#else
    24352518  // Delete input pipe.
    24362519  PLUGIN_DEBUG ("NP_Shutdown: deleting input fifo: %s\n", in_pipe_name);
     
    24412524  g_free (in_pipe_name);
    24422525  in_pipe_name = NULL;
     2526#endif
    24432527
    24442528  // Destroy the call queue mutex
  • TabularUnified trunk/icedtea-web/plugin/icedteanp/java/sun/applet/PluginMain.java

    r348 r368  
    6363package sun.applet;
    6464
    65 import java.io.File;
    66 import java.io.FileInputStream;
    67 import java.io.FileOutputStream;
    6865import java.io.IOException;
    6966import java.net.Authenticator;
     
    8178 * The main entry point into PluginAppletViewer.
    8279 */
    83 public class PluginMain {
     80public class PluginMain extends PluginMainBase {
    8481    // the files where stdout/stderr are sent to
    8582    public static final String PLUGIN_STDERR_FILE = "java.stderr";
     
    9592    public static void main(String args[])
    9693            throws IOException {
    97         if (args.length != 2 || !(new File(args[0]).exists()) || !(new File(args[1]).exists())) {
    98             System.err.println("Invalid pipe names provided. Refusing to proceed.");
     94        if (!checkArgs(args)) {
    9995            System.exit(1);
    10096        }
    10197
    10298        try {
    103             PluginStreamHandler streamHandler = connect(args[0], args[1]);
     99            PluginStreamHandler streamHandler = connect(args);
    104100            boolean redirectStreams = System.getenv().containsKey("ICEDTEAPLUGIN_DEBUG");
    105101
     
    128124    private PluginMain() {
    129125        // The PluginMain constructor should never, EVER, be called
    130     }
    131 
    132     private static PluginStreamHandler connect(String inPipe, String outPipe) {
    133         PluginStreamHandler streamHandler = null;
    134         try {
    135             streamHandler = new PluginStreamHandler(new FileInputStream(inPipe), new FileOutputStream(outPipe));
    136             PluginDebug.debug("Streams initialized");
    137         } catch (IOException ioe) {
    138             ioe.printStackTrace();
    139         }
    140         return streamHandler;
    141126    }
    142127
Note: See TracChangeset for help on using the changeset viewer.