1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
|
/*
Copyright (C) 2008 Red Hat
This file is part of IcedTea.
IcedTea is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
IcedTea is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with IcedTea; see the file COPYING. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.
As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module. An independent module is a module which is not derived from
or based on this library. If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
package sun.applet;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.net.MalformedURLException;
import java.nio.charset.Charset;
import javax.swing.SwingUtilities;
import net.sourceforge.jnlp.runtime.JNLPRuntime;
import net.sourceforge.jnlp.util.logging.OutputController;
public class PluginStreamHandler {
private BufferedReader pluginInputReader;
private BufferedWriter pluginOutputWriter;
private RequestQueue queue = new RequestQueue();
private JavaConsole console = new JavaConsole();
private PluginMessageConsumer consumer;
private volatile boolean shuttingDown = false;
public PluginStreamHandler(InputStream inputstream, OutputStream outputstream) {
PluginDebug.debug("Current context CL=", Thread.currentThread().getContextClassLoader());
PluginDebug.debug("Creating consumer...");
consumer = new PluginMessageConsumer(this);
// Set up input and output pipes. Use UTF-8 encoding.
pluginInputReader =
new BufferedReader(new InputStreamReader(inputstream,
Charset.forName("UTF-8")));
pluginOutputWriter =
new BufferedWriter(new OutputStreamWriter
(outputstream, Charset.forName("UTF-8")));
}
public void startProcessing() {
Thread listenerThread = new Thread("PluginStreamHandlerListenerThread") {
public void run() {
while (true) {
PluginDebug.debug("Waiting for data...");
String s = read();
if (s != null) {
consumer.queue(s);
} else {
try {
// Close input/output channels to plugin.
pluginInputReader.close();
pluginOutputWriter.close();
} catch (IOException exception) {
// Deliberately ignore IOException caused by broken
// pipe since plugin may have already detached.
}
AppletSecurityContextManager.dumpStore(0);
PluginDebug.debug("APPLETVIEWER: exiting appletviewer");
JNLPRuntime.exit(0);
}
}
}
};
listenerThread.start();
}
/**
* Given a string, reads the first two (space separated) tokens.
*
* @param message The string to read
* @param start The position to start reading at
* @param array The array into which the first two tokens are placed
* @return Position where the next token starts
*/
private int readPair(String message, int start, String[] array) {
int end = start;
array[0] = null;
array[1] = null;
if (message.length() > start) {
int firstSpace = message.indexOf(' ', start);
if (firstSpace == -1) {
array[0] = message.substring(start);
end = message.length();
} else {
array[0] = message.substring(start, firstSpace);
if (message.length() > firstSpace + 1) {
int secondSpace = message.indexOf(' ', firstSpace + 1);
if (secondSpace == -1) {
array[1] = message.substring(firstSpace + 1);
end = message.length();
} else {
array[1] = message.substring(firstSpace + 1, secondSpace);
end = secondSpace + 1;
}
}
}
}
PluginDebug.debug("readPair: '", array[0], "' - '", array[1], "' ", end);
return end;
}
public void handleMessage(String message) throws PluginException {
int reference = -1;
String src = null;
String[] privileges = null;
String rest = "";
String[] msgComponents = new String[2];
int pos = 0;
int oldPos = 0;
pos = readPair(message, oldPos, msgComponents);
if (msgComponents[0] == null || msgComponents[1] == null) {
return;
}
if (msgComponents[0].startsWith("plugin")) {
handlePluginMessage(message);
return;
}
// type and identifier are guaranteed to be there
String type = msgComponents[0];
final int identifier = Integer.parseInt(msgComponents[1]);
// reference, src and privileges are optional components,
// and are guaranteed to be in that order, if they occur
oldPos = pos;
pos = readPair(message, oldPos, msgComponents);
// is there a reference ?
if ("reference".equals(msgComponents[0])) {
reference = Integer.parseInt(msgComponents[1]);
oldPos = pos;
pos = readPair(message, oldPos, msgComponents);
}
// is there a src?
if ("src".equals(msgComponents[0])) {
src = msgComponents[1];
oldPos = pos;
pos = readPair(message, oldPos, msgComponents);
}
// is there a privileges?
if ("privileges".equals(msgComponents[0])) {
String privs = msgComponents[1];
privileges = privs.split(",");
oldPos = pos;
}
// rest
if (message.length() > oldPos) {
rest = message.substring(oldPos);
}
try {
PluginDebug.debug("Breakdown -- type: ", type, " identifier: ", identifier, " reference: ", reference, " src: ", src, " privileges: ", privileges, " rest: \"", rest, "\"");
if (rest.contains("JavaScriptGetWindow")
|| rest.contains("JavaScriptGetMember")
|| rest.contains("JavaScriptSetMember")
|| rest.contains("JavaScriptGetSlot")
|| rest.contains("JavaScriptSetSlot")
|| rest.contains("JavaScriptEval")
|| rest.contains("JavaScriptRemoveMember")
|| rest.contains("JavaScriptCall")
|| rest.contains("JavaScriptFinalize")
|| rest.contains("JavaScriptToString")) {
finishCallRequest("reference " + reference + " " + rest);
return;
}
final int freference = reference;
final String frest = rest;
if (type.equals("instance")) {
PluginAppletViewer.handleMessage(identifier, freference, frest);
} else if (type.equals("context")) {
PluginDebug.debug("Sending to PASC: ", identifier, "/", reference, " and ", rest);
AppletSecurityContextManager.handleMessage(identifier, reference, src, privileges, rest);
}
} catch (Exception e) {
throw new PluginException(this, identifier, reference, e);
}
}
private void handlePluginMessage(String message) {
if (message.equals("plugin showconsole")) {
showConsole();
} else if (message.equals("plugin hideconsole")) {
hideConsole();
} else {
// else this is something that was specifically requested
finishCallRequest(message);
}
}
public void postCallRequest(PluginCallRequest request) {
synchronized (queue) {
queue.post(request);
}
}
private void finishCallRequest(String message) {
PluginDebug.debug("DISPATCHCALLREQUESTS 1");
synchronized (queue) {
PluginDebug.debug("DISPATCHCALLREQUESTS 2");
PluginCallRequest request = queue.pop();
// make sure we give the message to the right request
// in the queue.. for the love of God, MAKE SURE!
// first let's be efficient.. if there was only one
// request in queue, we're already set
if (queue.size() != 0) {
int size = queue.size();
int count = 0;
while (!request.serviceable(message)) {
PluginDebug.debug(request, " cannot service ", message);
// something is very wrong.. we have a message to
// process, but no one to service it
if (count >= size) {
throw new RuntimeException("Unable to find processor for message " + message);
}
// post request at the end of the queue
queue.post(request);
// Look at the next request
request = queue.pop();
count++;
}
}
PluginDebug.debug("DISPATCHCALLREQUESTS 3");
if (request != null) {
PluginDebug.debug("DISPATCHCALLREQUESTS 5");
synchronized (request) {
request.parseReturn(message);
request.notifyAll();
}
PluginDebug.debug("DISPATCHCALLREQUESTS 6");
PluginDebug.debug("DISPATCHCALLREQUESTS 7");
}
}
PluginDebug.debug("DISPATCHCALLREQUESTS 8");
}
/**
* Read string from plugin.
*
* @return the read string
*
* @exception IOException if an error occurs
*/
private String read() {
String message = null;
try {
message = pluginInputReader.readLine();
PluginDebug.debug(" PIPE: appletviewer read: ", message);
if (message == null || message.equals("shutdown")) {
shuttingDown = true;
try {
// Close input/output channels to plugin.
pluginInputReader.close();
pluginOutputWriter.close();
} catch (IOException exception) {
// Deliberately ignore IOException caused by broken
// pipe since plugin may have already detached.
}
AppletSecurityContextManager.dumpStore(0);
PluginDebug.debug("APPLETVIEWER: exiting appletviewer");
JNLPRuntime.exit(0);
}
} catch (IOException e) {
OutputController.getLogger().log(OutputController.Level.ERROR_ALL,e);
}
return message;
}
/**
* Write string to plugin.
*
* @param message the message to write
*
* @exception IOException if an error occurs
*/
public void write(String message) {
PluginDebug.debug(" PIPE: appletviewer wrote: ", message);
synchronized (pluginOutputWriter) {
try {
pluginOutputWriter.write(message + "\n", 0, message.length());
pluginOutputWriter.write(0);
pluginOutputWriter.flush();
} catch (IOException e) {
// if we are shutting down, ignore write failures as
// pipe may have closed
if (!shuttingDown) {
OutputController.getLogger().log(OutputController.Level.ERROR_ALL,e);
}
// either ways, if the pipe is broken, there is nothing
// we can do anymore. Don't hang around.
PluginDebug.debug("Unable to write to PIPE. APPLETVIEWER exiting");
JNLPRuntime.exit(1);
}
}
return;
}
private void showConsole() {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
console.showConsole();
}
});
}
private void hideConsole() {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
console.hideConsole();
}
});
}
}
|