212e948ead0c1cea2d77d47c76d7e16a607e5f44
[jalview.git] / getdown / src / getdown / core / src / main / java / com / threerings / getdown / data / Application.java
1 //
2 // Getdown - application installer, patcher and launcher
3 // Copyright (C) 2004-2018 Getdown authors
4 // https://github.com/threerings/getdown/blob/master/LICENSE
5
6 package com.threerings.getdown.data;
7
8 import java.io.*;
9 import java.lang.reflect.Method;
10 import java.net.MalformedURLException;
11 import java.net.Proxy;
12 import java.net.URL;
13 import java.net.URLClassLoader;
14 import java.net.URLConnection;
15 import java.net.URLEncoder;
16 import java.nio.channels.FileChannel;
17 import java.nio.channels.FileLock;
18 import java.nio.channels.OverlappingFileLockException;
19 import java.security.*;
20 import java.security.cert.Certificate;
21 import java.util.*;
22 import java.util.concurrent.*;
23 import java.util.regex.Matcher;
24 import java.util.regex.Pattern;
25 import java.util.zip.GZIPInputStream;
26 import com.sun.management.OperatingSystemMXBean;
27 import java.lang.management.ManagementFactory;
28
29
30 import com.threerings.getdown.util.*;
31 // avoid ambiguity with java.util.Base64 which we can't use as it's 1.8+
32 import com.threerings.getdown.util.Base64;
33
34 import static com.threerings.getdown.Log.log;
35 import static java.nio.charset.StandardCharsets.UTF_8;
36
37 /**
38  * Parses and provide access to the information contained in the <code>getdown.txt</code>
39  * configuration file.
40  */
41 public class Application
42 {
43     /** The name of our configuration file. */
44     public static final String CONFIG_FILE = "getdown.txt";
45
46     /** The name of our target version file. */
47     public static final String VERSION_FILE = "version.txt";
48
49     /** System properties that are prefixed with this string will be passed through to our
50      * application (minus this prefix). */
51     public static final String PROP_PASSTHROUGH_PREFIX = "app.";
52
53     /** Suffix used for control file signatures. */
54     public static final String SIGNATURE_SUFFIX = ".sig";
55
56     /** A special classname that means 'use -jar code.jar' instead of a classname. */
57     public static final String MANIFEST_CLASS = "manifest";
58
59     /** Used to communicate information about the UI displayed when updating the application. */
60     public static final class UpdateInterface
61     {
62         /**
63          * The major steps involved in updating, along with some arbitrary percentages
64          * assigned to them, to mark global progress.
65          */
66         public enum Step
67         {
68             UPDATE_JAVA(10),
69             VERIFY_METADATA(15, 65, 95),
70             DOWNLOAD(40),
71             PATCH(60),
72             VERIFY_RESOURCES(70, 97),
73             REDOWNLOAD_RESOURCES(90),
74             UNPACK(98),
75             LAUNCH(99);
76
77             /** What is the final percent value for this step? */
78             public final List<Integer> defaultPercents;
79
80             /** Enum constructor. */
81             Step (int... percents)
82             {
83                 this.defaultPercents = intsToList(percents);
84             }
85         }
86
87         /** The human readable name of this application. */
88         public final String name;
89
90         /** A background color, just in case. */
91         public final int background;
92
93         /** Background image specifiers for `RotatingBackgrounds`. */
94         public final List<String> rotatingBackgrounds;
95
96         /** The error background image for `RotatingBackgrounds`. */
97         public final String errorBackground;
98
99         /** The paths (relative to the appdir) of images for the window icon. */
100         public final List<String> iconImages;
101
102         /** The path (relative to the appdir) to a single background image. */
103         public final String backgroundImage;
104
105         /** The path (relative to the appdir) to the progress bar image. */
106         public final String progressImage;
107
108         /** The dimensions of the progress bar. */
109         public final Rectangle progress;
110
111         /** The color of the progress text. */
112         public final int progressText;
113
114         /** The color of the progress bar. */
115         public final int progressBar;
116
117         /** The dimensions of the status display. */
118         public final Rectangle status;
119
120         /** The color of the status text. */
121         public final int statusText;
122
123         /** The color of the text shadow. */
124         public final int textShadow;
125
126         /** Where to point the user for help with install errors. */
127         public final String installError;
128
129         /** The dimensions of the patch notes button. */
130         public final Rectangle patchNotes;
131
132         /** The patch notes URL. */
133         public final String patchNotesUrl;
134
135         /** Whether window decorations are hidden for the UI. */
136         public final boolean hideDecorations;
137
138         /** Whether progress text should be hidden or not. */
139         public final boolean hideProgressText;
140
141         /** The minimum number of seconds to display the GUI. This is to prevent the GUI from
142           * flashing up on the screen and immediately disappearing, which can be confusing to the
143           * user. */
144         public final int minShowSeconds;
145
146         /** The global percentages for each step. A step may have more than one, and
147          * the lowest reasonable one is used if a step is revisited. */
148         public final Map<Step, List<Integer>> stepPercentages;
149
150         /** Generates a string representation of this instance. */
151         @Override
152         public String toString ()
153         {
154             return "[name=" + name + ", bg=" + background + ", bg=" + backgroundImage +
155                 ", pi=" + progressImage + ", prect=" + progress + ", pt=" + progressText +
156                 ", pb=" + progressBar + ", srect=" + status + ", st=" + statusText +
157                 ", shadow=" + textShadow + ", err=" + installError + ", nrect=" + patchNotes +
158                 ", notes=" + patchNotesUrl + ", stepPercentages=" + stepPercentages +
159                 ", hideProgressText" + hideProgressText + ", minShow=" + minShowSeconds + "]";
160         }
161
162         public UpdateInterface (Config config)
163         {
164             this.name = config.getString("ui.name");
165             this.progress = config.getRect("ui.progress", new Rectangle(5, 5, 300, 15));
166             this.progressText = config.getColor("ui.progress_text", Color.BLACK);
167             this.hideProgressText =  config.getBoolean("ui.hide_progress_text");
168             this.minShowSeconds = config.getInt("ui.min_show_seconds", 5);
169             this.progressBar = config.getColor("ui.progress_bar", 0x6699CC);
170             this.status = config.getRect("ui.status", new Rectangle(5, 25, 500, 100));
171             this.statusText = config.getColor("ui.status_text", Color.BLACK);
172             this.textShadow = config.getColor("ui.text_shadow", Color.CLEAR);
173             this.hideDecorations = config.getBoolean("ui.hide_decorations");
174             this.backgroundImage = config.getString("ui.background_image");
175             // default to black or white bg color, depending on the brightness of the progressText
176             int defaultBackground = (0.5f < Color.brightness(this.progressText)) ?
177                 Color.BLACK : Color.WHITE;
178             this.background = config.getColor("ui.background", defaultBackground);
179             this.progressImage = config.getString("ui.progress_image");
180             this.rotatingBackgrounds = stringsToList(
181                 config.getMultiValue("ui.rotating_background"));
182             this.iconImages = stringsToList(config.getMultiValue("ui.icon"));
183             this.errorBackground = config.getString("ui.error_background");
184
185             // On an installation error, where do we point the user.
186             String installError = config.getUrl("ui.install_error", null);
187             this.installError = (installError == null) ?
188                 "m.default_install_error" : MessageUtil.taint(installError);
189
190             // the patch notes bits
191             this.patchNotes = config.getRect("ui.patch_notes", new Rectangle(5, 50, 112, 26));
192             this.patchNotesUrl = config.getUrl("ui.patch_notes_url", null);
193
194             // step progress percentage (defaults and then customized values)
195             EnumMap<Step, List<Integer>> stepPercentages = new EnumMap<>(Step.class);
196             for (Step step : Step.values()) {
197                 stepPercentages.put(step, step.defaultPercents);
198             }
199             for (UpdateInterface.Step step : UpdateInterface.Step.values()) {
200                 String spec = config.getString("ui.percents." + step.name());
201                 if (spec != null) {
202                     try {
203                         stepPercentages.put(step, intsToList(StringUtil.parseIntArray(spec)));
204                     } catch (Exception e) {
205                         log.warning("Failed to parse percentages for " + step + ": " + spec);
206                     }
207                 }
208             }
209             this.stepPercentages = Collections.unmodifiableMap(stepPercentages);
210         }
211     }
212
213     /**
214      * Used by {@link #verifyMetadata} to communicate status in circumstances where it needs to
215      * take network actions.
216      */
217     public static interface StatusDisplay
218     {
219         /** Requests that the specified status message be displayed. */
220         public void updateStatus (String message);
221     }
222
223     /**
224      * Contains metadata for an auxiliary resource group.
225      */
226     public static class AuxGroup {
227         public final String name;
228         public final List<Resource> codes;
229         public final List<Resource> rsrcs;
230
231         public AuxGroup (String name, List<Resource> codes, List<Resource> rsrcs) {
232             this.name = name;
233             this.codes = Collections.unmodifiableList(codes);
234             this.rsrcs = Collections.unmodifiableList(rsrcs);
235         }
236     }
237
238     /** The proxy that should be used to do HTTP downloads. This must be configured prior to using
239       * the application instance. Yes this is a public mutable field, no I'm not going to create a
240       * getter and setter just to pretend like that's not the case. */
241     public Proxy proxy = Proxy.NO_PROXY;
242
243     /**
244      * Creates an application instance which records the location of the <code>getdown.txt</code>
245      * configuration file from the supplied application directory.
246      *
247      */
248     public Application (EnvConfig envc) {
249         _envc = envc;
250         _config = getLocalPath(envc.appDir, CONFIG_FILE);
251     }
252
253     /**
254      * Returns the configured application directory.
255      */
256     public File getAppDir () {
257         return _envc.appDir;
258     }
259
260     /**
261      * Returns whether the application should cache code resources prior to launching the
262      * application.
263      */
264     public boolean useCodeCache ()
265     {
266         return _useCodeCache;
267     }
268
269     /**
270      * Returns the number of days a cached code resource is allowed to stay unused before it
271      * becomes eligible for deletion.
272      */
273     public int getCodeCacheRetentionDays ()
274     {
275         return _codeCacheRetentionDays;
276     }
277
278     /**
279      * Returns the configured maximum concurrent downloads. Used to cap simultaneous downloads of
280      * app files from its hosting server.
281      */
282     public int maxConcurrentDownloads () {
283         return _maxConcDownloads;
284     }
285
286     /**
287      * Returns a resource that refers to the application configuration file itself.
288      */
289     public Resource getConfigResource ()
290     {
291         try {
292             return createResource(CONFIG_FILE, Resource.NORMAL);
293         } catch (Exception e) {
294             throw new RuntimeException("Invalid appbase '" + _vappbase + "'.", e);
295         }
296     }
297
298     /**
299      * Returns a list of the code {@link Resource} objects used by this application.
300      */
301     public List<Resource> getCodeResources ()
302     {
303         return _codes;
304     }
305
306     /**
307      * Returns a list of the non-code {@link Resource} objects used by this application.
308      */
309     public List<Resource> getResources ()
310     {
311         return _resources;
312     }
313
314     /**
315      * Returns the digest of the given {@code resource}.
316      */
317     public String getDigest (Resource resource)
318     {
319         return _digest.getDigest(resource);
320     }
321
322     /**
323      * Returns a list of all the active {@link Resource} objects used by this application (code and
324      * non-code).
325      */
326     public List<Resource> getAllActiveResources ()
327     {
328         List<Resource> allResources = new ArrayList<>();
329         allResources.addAll(getActiveCodeResources());
330         allResources.addAll(getActiveResources());
331         return allResources;
332     }
333
334     /**
335      * Returns the auxiliary resource group with the specified name, or null.
336      */
337     public AuxGroup getAuxGroup (String name)
338     {
339         return _auxgroups.get(name);
340     }
341
342     /**
343      * Returns the set of all auxiliary resource groups defined by the application. An auxiliary
344      * resource group is a collection of resource files that are not downloaded unless a group
345      * token file is present in the application directory.
346      */
347     public Iterable<AuxGroup> getAuxGroups ()
348     {
349         return _auxgroups.values();
350     }
351
352     /**
353      * Returns true if the specified auxgroup has been "activated", false if not. Non-activated
354      * groups should be ignored, activated groups should be downloaded and patched along with the
355      * main resources.
356      */
357     public boolean isAuxGroupActive (String auxgroup)
358     {
359         Boolean active = _auxactive.get(auxgroup);
360         if (active == null) {
361             // TODO: compare the contents with the MD5 hash of the auxgroup name and the client's
362             // machine ident
363             active = getLocalPath(auxgroup + ".dat").exists();
364             _auxactive.put(auxgroup, active);
365         }
366         return active;
367     }
368
369     /**
370      * Returns all main code resources and all code resources from active auxiliary resource groups.
371      */
372     public List<Resource> getActiveCodeResources ()
373     {
374         ArrayList<Resource> codes = new ArrayList<>();
375         codes.addAll(getCodeResources());
376         for (AuxGroup aux : getAuxGroups()) {
377             if (isAuxGroupActive(aux.name)) {
378                 codes.addAll(aux.codes);
379             }
380         }
381         return codes;
382     }
383
384     /**
385      * Returns all resources indicated to contain native library files (.dll, .so, etc.).
386      */
387     public List<Resource> getNativeResources ()
388     {
389         List<Resource> natives = new ArrayList<>();
390         for (Resource resource: _resources) {
391             if (resource.isNative()) {
392                 natives.add(resource);
393             }
394         }
395         return natives;
396     }
397
398     /**
399      * Returns all non-code resources and all resources from active auxiliary resource groups.
400      */
401     public List<Resource> getActiveResources ()
402     {
403         ArrayList<Resource> rsrcs = new ArrayList<>();
404         rsrcs.addAll(getResources());
405         for (AuxGroup aux : getAuxGroups()) {
406             if (isAuxGroupActive(aux.name)) {
407                 rsrcs.addAll(aux.rsrcs);
408             }
409         }
410         return rsrcs;
411     }
412
413     /**
414      * Returns a resource that can be used to download a patch file that will bring this
415      * application from its current version to the target version.
416      *
417      * @param auxgroup the auxiliary resource group for which a patch resource is desired or null
418      * for the main application patch resource.
419      */
420     public Resource getPatchResource (String auxgroup)
421     {
422         if (_targetVersion <= _version) {
423             log.warning("Requested patch resource for up-to-date or non-versioned application",
424                 "cvers", _version, "tvers", _targetVersion);
425             return null;
426         }
427
428         String infix = (auxgroup == null) ? "" : ("-" + auxgroup);
429         String pfile = "patch" + infix + _version + ".dat";
430         try {
431             URL remote = new URL(createVAppBase(_targetVersion), encodePath(pfile));
432             return new Resource(pfile, remote, getLocalPath(pfile), Resource.NORMAL);
433         } catch (Exception e) {
434             log.warning("Failed to create patch resource path",
435                 "pfile", pfile, "appbase", _appbase, "tvers", _targetVersion, "error", e);
436             return null;
437         }
438     }
439
440     /**
441      * Returns a resource for a zip file containing a Java VM that can be downloaded to use in
442      * place of the installed VM (in the case where the VM that launched Getdown does not meet the
443      * application's version requirements) or null if no VM is available for this platform.
444      */
445     public Resource getJavaVMResource ()
446     {
447         if (StringUtil.isBlank(_javaLocation)) {
448             return null;
449         }
450
451         String extension = (_javaLocation.endsWith(".tgz"))?".tgz":".jar";
452         String vmfile = LaunchUtil.LOCAL_JAVA_DIR + extension;
453                 log.info("vmfile is '"+vmfile+"'");
454                 System.out.println("vmfile is '"+vmfile+"'");
455         try {
456             URL remote = new URL(createVAppBase(_targetVersion), encodePath(_javaLocation));
457             log.info("Attempting to fetch jvm at "+remote.toString());
458             System.out.println("Attempting to fetch jvm at "+remote.toString());
459             return new Resource(vmfile, remote, getLocalPath(vmfile),
460                                 EnumSet.of(Resource.Attr.UNPACK, Resource.Attr.CLEAN));
461         } catch (Exception e) {
462             log.warning("Failed to create VM resource", "vmfile", vmfile, "appbase", _appbase,
463                 "tvers", _targetVersion, "javaloc", _javaLocation, "error", e);
464             System.out.println("Failed to create VM resource: vmfile="+vmfile+", appbase="+_appbase+
465                 ", tvers="+_targetVersion+", javaloc="+_javaLocation+", error="+e);
466             return null;
467         }
468     }
469
470     /**
471      * Returns a resource that can be used to download an archive containing all files belonging to
472      * the application.
473      */
474     public Resource getFullResource ()
475     {
476         String file = "full";
477         try {
478             URL remote = new URL(createVAppBase(_targetVersion), encodePath(file));
479             return new Resource(file, remote, getLocalPath(file), Resource.NORMAL);
480         } catch (Exception e) {
481             log.warning("Failed to create full resource path",
482                 "file", file, "appbase", _appbase, "tvers", _targetVersion, "error", e);
483             return null;
484         }
485     }
486
487     /**
488      * Returns the URL to use to report an initial download event. Returns null if no tracking
489      * start URL was configured for this application.
490      *
491      * @param event the event to be reported: start, jvm_start, jvm_complete, complete.
492      */
493     public URL getTrackingURL (String event)
494     {
495         try {
496             String suffix = _trackingURLSuffix == null ? "" : _trackingURLSuffix;
497             String ga = getGATrackingCode();
498             return _trackingURL == null ? null :
499                 HostWhitelist.verify(new URL(_trackingURL + encodePath(event + suffix + ga)));
500         } catch (MalformedURLException mue) {
501             log.warning("Invalid tracking URL", "path", _trackingURL, "event", event, "error", mue);
502             return null;
503         }
504     }
505
506     /**
507      * Returns the URL to request to report that we have reached the specified percentage of our
508      * initial download. Returns null if no tracking request was configured for the specified
509      * percentage.
510      */
511     public URL getTrackingProgressURL (int percent)
512     {
513         if (_trackingPcts == null || !_trackingPcts.contains(percent)) {
514             return null;
515         }
516         return getTrackingURL("pct" + percent);
517     }
518
519     /**
520      * Returns the name of our tracking cookie or null if it was not set.
521      */
522     public String getTrackingCookieName ()
523     {
524         return _trackingCookieName;
525     }
526
527     /**
528      * Returns the name of our tracking cookie system property or null if it was not set.
529      */
530     public String getTrackingCookieProperty ()
531     {
532         return _trackingCookieProperty;
533     }
534
535     /**
536      * Instructs the application to parse its {@code getdown.txt} configuration and prepare itself
537      * for operation. The application base URL will be parsed first so that if there are errors
538      * discovered later, the caller can use the application base to download a new {@code
539      * getdown.txt} file and try again.
540      *
541      * @return a {@code Config} instance that contains information from the config file.
542      *
543      * @exception IOException thrown if there is an error reading the file or an error encountered
544      * during its parsing.
545      */
546     public Config init (boolean checkPlatform)
547         throws IOException
548     {
549         Config config = null;
550         File cfgfile = _config;
551         Config.ParseOpts opts = Config.createOpts(checkPlatform);
552         try {
553             // if we have a configuration file, read the data from it
554             if (cfgfile.exists()) {
555                 config = Config.parseConfig(_config, opts);
556             }
557             // otherwise, try reading data from our backup config file; thanks to funny windows
558             // bullshit, we have to do this backup file fiddling in case we got screwed while
559             // updating getdown.txt during normal operation
560             else if ((cfgfile = getLocalPath(CONFIG_FILE + "_old")).exists()) {
561                 config = Config.parseConfig(cfgfile, opts);
562             }
563             // otherwise, issue a warning that we found no getdown file
564             else {
565                 log.info("Found no getdown.txt file", "appdir", getAppDir());
566             }
567         } catch (Exception e) {
568             log.warning("Failure reading config file", "file", config, e);
569         }
570
571         // if we failed to read our config file, check for an appbase specified via a system
572         // property; we can use that to bootstrap ourselves back into operation
573         if (config == null) {
574             String appbase = _envc.appBase;
575             log.info("Using 'appbase' from bootstrap config", "appbase", appbase);
576             Map<String, Object> cdata = new HashMap<>();
577             cdata.put("appbase", appbase);
578             config = new Config(cdata);
579         }
580
581         // first determine our application base, this way if anything goes wrong later in the
582         // process, our caller can use the appbase to download a new configuration file
583         _appbase = config.getString("appbase");
584         if (_appbase == null) {
585             throw new RuntimeException("m.missing_appbase");
586         }
587
588         // check if we're overriding the domain in the appbase
589         _appbase = SysProps.overrideAppbase(_appbase);
590
591         // make sure there's a trailing slash
592         if (!_appbase.endsWith("/")) {
593             _appbase = _appbase + "/";
594         }
595
596         // extract our version information
597         _version = config.getLong("version", -1L);
598
599         // if we are a versioned deployment, create a versioned appbase
600         try {
601             _vappbase = createVAppBase(_version);
602         } catch (MalformedURLException mue) {
603             String err = MessageUtil.tcompose("m.invalid_appbase", _appbase);
604             throw (IOException) new IOException(err).initCause(mue);
605         }
606
607         // check for a latest config URL
608         String latest = config.getString("latest");
609         if (latest != null) {
610             if (latest.startsWith(_appbase)) {
611                 latest = _appbase + latest.substring(_appbase.length());
612             } else {
613                 latest = SysProps.replaceDomain(latest);
614             }
615             try {
616                 _latest = HostWhitelist.verify(new URL(latest));
617             } catch (MalformedURLException mue) {
618                 log.warning("Invalid URL for latest attribute.", mue);
619             }
620         }
621
622         String appPrefix = _envc.appId == null ? "" : (_envc.appId + ".");
623
624         // determine our application class name (use app-specific class _if_ one is provided)
625         _class = config.getString("class");
626         if (appPrefix.length() > 0) {
627             _class = config.getString(appPrefix + "class", _class);
628         }
629         if (_class == null) {
630             throw new IOException("m.missing_class");
631         }
632
633         // determine whether we want strict comments
634         _strictComments = config.getBoolean("strict_comments");
635
636         // check to see if we're using a custom java.version property and regex
637         _javaVersionProp = config.getString("java_version_prop", _javaVersionProp);
638         _javaVersionRegex = config.getString("java_version_regex", _javaVersionRegex);
639
640         // check to see if we require a particular JVM version and have a supplied JVM
641         _javaMinVersion = config.getLong("java_version", _javaMinVersion);
642         // we support java_min_version as an alias of java_version; it better expresses the check
643         // that's going on and better mirrors java_max_version
644         _javaMinVersion = config.getLong("java_min_version", _javaMinVersion);
645         // check to see if we require a particular max JVM version and have a supplied JVM
646         _javaMaxVersion = config.getLong("java_max_version", _javaMaxVersion);
647         // check to see if we require a particular JVM version and have a supplied JVM
648         _javaExactVersionRequired = config.getBoolean("java_exact_version_required");
649
650         // this is a little weird, but when we're run from the digester, we see a String[] which
651         // contains java locations for all platforms which we can't grok, but the digester doesn't
652         // need to know about that; when we're run in a real application there will be only one!
653         Object javaloc = config.getRaw("java_location");
654         if (javaloc instanceof String) {
655             _javaLocation = (String)javaloc;
656         }
657
658         // determine whether we have any tracking configuration
659         _trackingURL = config.getString("tracking_url");
660
661         // check for tracking progress percent configuration
662         String trackPcts = config.getString("tracking_percents");
663         if (!StringUtil.isBlank(trackPcts)) {
664             _trackingPcts = new HashSet<>();
665             for (int pct : StringUtil.parseIntArray(trackPcts)) {
666                 _trackingPcts.add(pct);
667             }
668         } else if (!StringUtil.isBlank(_trackingURL)) {
669             _trackingPcts = new HashSet<>();
670             _trackingPcts.add(50);
671         }
672
673         // Check for tracking cookie configuration
674         _trackingCookieName = config.getString("tracking_cookie_name");
675         _trackingCookieProperty = config.getString("tracking_cookie_property");
676
677         // Some app may need an extra suffix added to the tracking URL
678         _trackingURLSuffix = config.getString("tracking_url_suffix");
679
680         // Some app may need to generate google analytics code
681         _trackingGAHash = config.getString("tracking_ga_hash");
682
683         // clear our arrays as we may be reinitializing
684         _codes.clear();
685         _resources.clear();
686         _auxgroups.clear();
687         _jvmargs.clear();
688         _appargs.clear();
689         _txtJvmArgs.clear();
690
691         // parse our code resources
692         if (config.getMultiValue("code") == null &&
693             config.getMultiValue("ucode") == null) {
694             throw new IOException("m.missing_code");
695         }
696         parseResources(config, "code", Resource.NORMAL, _codes);
697         parseResources(config, "ucode", Resource.UNPACK, _codes);
698
699         // parse our non-code resources
700         parseResources(config, "resource", Resource.NORMAL, _resources);
701         parseResources(config, "uresource", Resource.UNPACK, _resources);
702         parseResources(config, "xresource", Resource.EXEC, _resources);
703         parseResources(config, "presource", Resource.PRELOAD, _resources);
704         parseResources(config, "nresource", Resource.NATIVE, _resources);
705
706         // parse our auxiliary resource groups
707         for (String auxgroup : config.getList("auxgroups")) {
708             ArrayList<Resource> codes = new ArrayList<>();
709             parseResources(config, auxgroup + ".code", Resource.NORMAL, codes);
710             parseResources(config, auxgroup + ".ucode", Resource.UNPACK, codes);
711             ArrayList<Resource> rsrcs = new ArrayList<>();
712             parseResources(config, auxgroup + ".resource", Resource.NORMAL, rsrcs);
713             parseResources(config, auxgroup + ".xresource", Resource.EXEC, rsrcs);
714             parseResources(config, auxgroup + ".uresource", Resource.UNPACK, rsrcs);
715             parseResources(config, auxgroup + ".presource", Resource.PRELOAD, rsrcs);
716             parseResources(config, auxgroup + ".nresource", Resource.NATIVE, rsrcs);
717             _auxgroups.put(auxgroup, new AuxGroup(auxgroup, codes, rsrcs));
718         }
719
720         // transfer our JVM arguments (we include both "global" args and app_id-prefixed args)
721         String[] jvmargs = config.getMultiValue("jvmarg");
722         addAll(jvmargs, _jvmargs);
723         if (appPrefix.length() > 0) {
724             jvmargs = config.getMultiValue(appPrefix + "jvmarg");
725             addAll(jvmargs, _jvmargs);
726         }
727
728         // see if a percentage of physical memory option exists
729         int jvmmempc = config.getInt("jvmmempc", -1);
730         // app_id prefixed setting overrides
731         if (appPrefix.length() > 0) {
732             jvmmempc = config.getInt(appPrefix + "jvmmempc", jvmmempc);
733         }
734         if (0 <= jvmmempc && jvmmempc <= 100) {
735             final Object o = ManagementFactory.getOperatingSystemMXBean();
736
737             try {
738                 if (o instanceof OperatingSystemMXBean) {
739                     final OperatingSystemMXBean osb = (OperatingSystemMXBean) o;
740                     long physicalMem = osb.getTotalPhysicalMemorySize();
741                     long requestedMem = physicalMem*jvmmempc/100;
742                     String[] maxMemHeapArg = new String[]{"-Xmx"+Long.toString(requestedMem)};
743                     // remove other max heap size arg
744                     ARG: for (int i = 0; i < _jvmargs.size(); i++) {
745                            if (_jvmargs.get(i) instanceof java.lang.String && _jvmargs.get(i).startsWith("-Xmx")) {
746                                 _jvmargs.remove(i);
747                            }
748                     }
749                     addAll(maxMemHeapArg, _jvmargs);
750
751                 }
752             }
753             catch (NoClassDefFoundError e) {
754                 // com.sun.management.OperatingSystemMXBean doesn't exist in this JVM
755                 System.out.println("No com.sun.management.OperatingSystemMXBean. Cannot use 'jvmmempc'.");
756             }
757         } else if (jvmmempc != -1) {
758           System.out.println("'jvmmempc' value must be in range 0 to 100 (read as '"+Integer.toString(jvmmempc)+"')");
759         }
760
761         // get the set of optimum JVM arguments
762         _optimumJvmArgs = config.getMultiValue("optimum_jvmarg");
763
764         // transfer our application arguments
765         String[] appargs = config.getMultiValue(appPrefix + "apparg");
766         addAll(appargs, _appargs);
767
768         // add the launch specific application arguments
769         _appargs.addAll(_envc.appArgs);
770         
771         // add startupFiles
772         for (File f : startupFiles) {
773           _appargs.add("-open");
774           _appargs.add(f.getAbsolutePath());
775         }
776
777         // look for custom arguments
778         fillAssignmentListFromPairs("extra.txt", _txtJvmArgs);
779
780         // determine whether we want to allow offline operation (defaults to false)
781         _allowOffline = config.getBoolean("allow_offline");
782
783         // look for a debug.txt file which causes us to run in java.exe on Windows so that we can
784         // obtain a thread dump of the running JVM
785         _windebug = getLocalPath("debug.txt").exists();
786
787         // whether to cache code resources and launch from cache
788         _useCodeCache = config.getBoolean("use_code_cache");
789         _codeCacheRetentionDays = config.getInt("code_cache_retention_days", 7);
790
791         // maximum simultaneous downloads
792         _maxConcDownloads = Math.max(1, config.getInt("max_concurrent_downloads",
793                                                       SysProps.threadPoolSize()));
794
795         // extract some info used to configure our child process on macOS
796         _dockName = config.getString("ui.name");
797         _dockIconPath = config.getString("ui.mac_dock_icon", "../desktop.icns");
798
799         return config;
800     }
801
802     /**
803      * Adds strings of the form pair0=pair1 to collector for each pair parsed out of pairLocation.
804      */
805     protected void fillAssignmentListFromPairs (String pairLocation, List<String> collector)
806     {
807         File pairFile = getLocalPath(pairLocation);
808         if (pairFile.exists()) {
809             try {
810                 List<String[]> args = Config.parsePairs(pairFile, Config.createOpts(false));
811                 for (String[] pair : args) {
812                     if (pair[1].length() == 0) {
813                         collector.add(pair[0]);
814                     } else {
815                         collector.add(pair[0] + "=" + pair[1]);
816                     }
817                 }
818             } catch (Throwable t) {
819                 log.warning("Failed to parse '" + pairFile + "': " + t);
820             }
821         }
822     }
823
824     /**
825      * Returns a URL from which the specified path can be fetched. Our application base URL is
826      * properly versioned and combined with the supplied path.
827      */
828     public URL getRemoteURL (String path)
829         throws MalformedURLException
830     {
831         return new URL(_vappbase, encodePath(path));
832     }
833
834     /**
835      * Returns the local path to the specified resource.
836      */
837     public File getLocalPath (String path)
838     {
839         return getLocalPath(getAppDir(), path);
840     }
841
842     /**
843      * Returns true if we either have no version requirement, are running in a JVM that meets our
844      * version requirements or have what appears to be a version of the JVM that meets our
845      * requirements.
846      */
847     public boolean haveValidJavaVersion ()
848     {
849         // if we're doing no version checking, then yay!
850         if (_javaMinVersion == 0 && _javaMaxVersion == 0) return true;
851
852         try {
853             // parse the version out of the java.version (or custom) system property
854             long version = SysProps.parseJavaVersion(_javaVersionProp, _javaVersionRegex);
855
856             log.info("Checking Java version", "current", version,
857                      "wantMin", _javaMinVersion, "wantMax", _javaMaxVersion);
858
859             // if we have an unpacked VM, check the 'release' file for its version
860             Resource vmjar = getJavaVMResource();
861             if (vmjar != null && vmjar.isMarkedValid()) {
862                 File vmdir = new File(getAppDir(), LaunchUtil.LOCAL_JAVA_DIR);
863                 File relfile = new File(vmdir, "release");
864                 if (!relfile.exists()) {
865                     log.warning("Unpacked JVM missing 'release' file. Assuming valid version.");
866                     return true;
867                 }
868
869                 long vmvers = VersionUtil.readReleaseVersion(relfile, _javaVersionRegex);
870                 if (vmvers == 0L) {
871                     log.warning("Unable to read version from 'release' file. Assuming valid.");
872                     return true;
873                 }
874
875                 version = vmvers;
876                 log.info("Checking version of unpacked JVM [vers=" + version + "].");
877             }
878
879             if (_javaExactVersionRequired) {
880                 if (version == _javaMinVersion) return true;
881                 else {
882                     log.warning("An exact Java VM version is required.", "current", version,
883                                 "required", _javaMinVersion);
884                     return false;
885                 }
886             }
887
888             boolean minVersionOK = (_javaMinVersion == 0) || (version >= _javaMinVersion);
889             boolean maxVersionOK = (_javaMaxVersion == 0) || (version <= _javaMaxVersion);
890             return minVersionOK && maxVersionOK;
891
892         } catch (RuntimeException re) {
893             // if we can't parse the java version we're in weird land and should probably just try
894             // our luck with what we've got rather than try to download a new jvm
895             log.warning("Unable to parse VM version, hoping for the best",
896                         "error", re, "needed", _javaMinVersion);
897             return true;
898         }
899     }
900
901     /**
902      * Checks whether the app has a set of "optimum" JVM args that we wish to try first, detecting
903      * whether the launch is successful and, if necessary, trying again without the optimum
904      * arguments.
905      */
906     public boolean hasOptimumJvmArgs ()
907     {
908         return _optimumJvmArgs != null;
909     }
910
911     /**
912      * Returns true if the app should attempt to run even if we have no Internet connection.
913      */
914     public boolean allowOffline ()
915     {
916         return _allowOffline;
917     }
918
919     /**
920      * Attempts to redownload the <code>getdown.txt</code> file based on information parsed from a
921      * previous call to {@link #init}.
922      */
923     public void attemptRecovery (StatusDisplay status)
924         throws IOException
925     {
926         status.updateStatus("m.updating_metadata");
927         downloadConfigFile();
928     }
929
930     /**
931      * Downloads and replaces the <code>getdown.txt</code> and <code>digest.txt</code> files with
932      * those for the target version of our application.
933      */
934     public void updateMetadata ()
935         throws IOException
936     {
937         try {
938             // update our versioned application base with the target version
939             _vappbase = createVAppBase(_targetVersion);
940         } catch (MalformedURLException mue) {
941             String err = MessageUtil.tcompose("m.invalid_appbase", _appbase);
942             throw (IOException) new IOException(err).initCause(mue);
943         }
944
945         try {
946             // now re-download our control files; we download the digest first so that if it fails,
947             // our config file will still reference the old version and re-running the updater will
948             // start the whole process over again
949             downloadDigestFiles();
950             downloadConfigFile();
951
952         } catch (IOException ex) {
953             // if we are allowing offline execution, we want to allow the application to run in its
954             // current form rather than aborting the entire process; to do this, we delete the
955             // version.txt file and "trick" Getdown into thinking that it just needs to validate
956             // the application as is; next time the app runs when connected to the internet, it
957             // will have to rediscover that it needs updating and reattempt to update itself
958             if (_allowOffline) {
959                 log.warning("Failed to update digest files.  Attempting offline operaton.", ex);
960                 if (!FileUtil.deleteHarder(getLocalPath(VERSION_FILE))) {
961                     log.warning("Deleting version.txt failed.  This probably isn't going to work.");
962                 }
963             } else {
964                 throw ex;
965             }
966         }
967     }
968
969     /**
970      * Invokes the process associated with this application definition.
971      *
972      * @param optimum whether or not to include the set of optimum arguments (as opposed to falling
973      * back).
974      */
975     public Process createProcess (boolean optimum)
976         throws IOException
977     {
978         ArrayList<String> args = new ArrayList<>();
979
980         // reconstruct the path to the JVM
981         args.add(LaunchUtil.getJVMPath(getAppDir(), _windebug || optimum));
982
983         // check whether we're using -jar mode or -classpath mode
984         boolean dashJarMode = MANIFEST_CLASS.equals(_class);
985
986         // add the -classpath arguments if we're not in -jar mode
987         ClassPath classPath = PathBuilder.buildClassPath(this);
988         if (!dashJarMode) {
989             args.add("-classpath");
990             args.add(classPath.asArgumentString());
991         }
992
993         // we love our Mac users, so we do nice things to preserve our application identity
994         if (LaunchUtil.isMacOS()) {
995             args.add("-Xdock:icon=" + getLocalPath(_dockIconPath).getAbsolutePath());
996             args.add("-Xdock:name=" + _dockName);
997         }
998
999         // pass along our proxy settings
1000         String proxyHost;
1001         if ((proxyHost = System.getProperty("http.proxyHost")) != null) {
1002             args.add("-Dhttp.proxyHost=" + proxyHost);
1003             args.add("-Dhttp.proxyPort=" + System.getProperty("http.proxyPort"));
1004             args.add("-Dhttps.proxyHost=" + proxyHost);
1005             args.add("-Dhttps.proxyPort=" + System.getProperty("http.proxyPort"));
1006         }
1007
1008         // add the marker indicating the app is running in getdown
1009         args.add("-D" + Properties.GETDOWN + "=true");
1010
1011         // set the native library path if we have native resources
1012         // @TODO optional getdown.txt parameter to set addCurrentLibraryPath to true or false?
1013         ClassPath javaLibPath = PathBuilder.buildLibsPath(this, true);
1014         if (javaLibPath != null) {
1015             args.add("-Djava.library.path=" + javaLibPath.asArgumentString());
1016         }
1017
1018         // pass along any pass-through arguments
1019         for (Map.Entry<Object, Object> entry : System.getProperties().entrySet()) {
1020             String key = (String)entry.getKey();
1021             if (key.startsWith(PROP_PASSTHROUGH_PREFIX)) {
1022                 key = key.substring(PROP_PASSTHROUGH_PREFIX.length());
1023                 args.add("-D" + key + "=" + entry.getValue());
1024             }
1025         }
1026
1027         // add the JVM arguments
1028         for (String string : _jvmargs) {
1029             args.add(processArg(string));
1030         }
1031
1032         // add the optimum arguments if requested and available
1033         if (optimum && _optimumJvmArgs != null) {
1034             for (String string : _optimumJvmArgs) {
1035                 args.add(processArg(string));
1036             }
1037         }
1038
1039         // add the arguments from extra.txt (after the optimum ones, in case they override them)
1040         for (String string : _txtJvmArgs) {
1041             args.add(processArg(string));
1042         }
1043
1044         // if we're in -jar mode add those arguments, otherwise add the app class name
1045         if (dashJarMode) {
1046             args.add("-jar");
1047             args.add(classPath.asArgumentString());
1048         } else {
1049             args.add(_class);
1050         }
1051
1052         // finally add the application arguments
1053         for (String string : _appargs) {
1054             args.add(processArg(string));
1055         }
1056
1057         String[] envp = createEnvironment();
1058         String[] sargs = args.toArray(new String[args.size()]);
1059         log.info("Running " + StringUtil.join(sargs, "\n  "));
1060
1061         return Runtime.getRuntime().exec(sargs, envp, getAppDir());
1062     }
1063
1064     /**
1065      * If the application provided environment variables, combine those with the current
1066      * environment and return that in a style usable for {@link Runtime#exec(String, String[])}.
1067      * If the application didn't provide any environment variables, null is returned to just use
1068      * the existing environment.
1069      */
1070     protected String[] createEnvironment ()
1071     {
1072         List<String> envvar = new ArrayList<>();
1073         fillAssignmentListFromPairs("env.txt", envvar);
1074         if (envvar.isEmpty()) {
1075             log.info("Didn't find any custom environment variables, not setting any.");
1076             return null;
1077         }
1078
1079         List<String> envAssignments = new ArrayList<>();
1080         for (String assignment : envvar) {
1081             envAssignments.add(processArg(assignment));
1082         }
1083         for (Map.Entry<String, String> environmentEntry : System.getenv().entrySet()) {
1084             envAssignments.add(environmentEntry.getKey() + "=" + environmentEntry.getValue());
1085         }
1086         String[] envp = envAssignments.toArray(new String[envAssignments.size()]);
1087         log.info("Environment " + StringUtil.join(envp, "\n "));
1088         return envp;
1089     }
1090
1091     /**
1092      * Runs this application directly in the current VM.
1093      */
1094     public void invokeDirect () throws IOException
1095     {
1096         ClassPath classPath = PathBuilder.buildClassPath(this);
1097         URL[] jarUrls = classPath.asUrls();
1098
1099         // create custom class loader
1100         URLClassLoader loader = new URLClassLoader(jarUrls, ClassLoader.getSystemClassLoader()) {
1101             @Override protected PermissionCollection getPermissions (CodeSource code) {
1102                 Permissions perms = new Permissions();
1103                 perms.add(new AllPermission());
1104                 return perms;
1105             }
1106         };
1107         Thread.currentThread().setContextClassLoader(loader);
1108
1109         log.info("Configured URL class loader:");
1110         for (URL url : jarUrls) log.info("  " + url);
1111
1112         // configure any system properties that we can
1113         for (String jvmarg : _jvmargs) {
1114             if (jvmarg.startsWith("-D")) {
1115                 jvmarg = processArg(jvmarg.substring(2));
1116                 int eqidx = jvmarg.indexOf("=");
1117                 if (eqidx == -1) {
1118                     log.warning("Bogus system property: '" + jvmarg + "'?");
1119                 } else {
1120                     System.setProperty(jvmarg.substring(0, eqidx), jvmarg.substring(eqidx+1));
1121                 }
1122             }
1123         }
1124
1125         // pass along any pass-through arguments
1126         Map<String, String> passProps = new HashMap<>();
1127         for (Map.Entry<Object, Object> entry : System.getProperties().entrySet()) {
1128             String key = (String)entry.getKey();
1129             if (key.startsWith(PROP_PASSTHROUGH_PREFIX)) {
1130                 key = key.substring(PROP_PASSTHROUGH_PREFIX.length());
1131                 passProps.put(key, (String)entry.getValue());
1132             }
1133         }
1134         // we can't set these in the above loop lest we get a ConcurrentModificationException
1135         for (Map.Entry<String, String> entry : passProps.entrySet()) {
1136             System.setProperty(entry.getKey(), entry.getValue());
1137         }
1138
1139         // prepare our app arguments
1140         String[] args = new String[_appargs.size()];
1141         for (int ii = 0; ii < args.length; ii++) args[ii] = processArg(_appargs.get(ii));
1142
1143         try {
1144             log.info("Loading " + _class);
1145             Class<?> appclass = loader.loadClass(_class);
1146             Method main = appclass.getMethod("main", EMPTY_STRING_ARRAY.getClass());
1147             log.info("Invoking main({" + StringUtil.join(args, ", ") + "})");
1148             main.invoke(null, new Object[] { args });
1149         } catch (Exception e) {
1150             log.warning("Failure invoking app main", e);
1151         }
1152     }
1153
1154     /** Replaces the application directory and version in any argument. */
1155     protected String processArg (String arg)
1156     {
1157         arg = arg.replace("%APPDIR%", getAppDir().getAbsolutePath());
1158         arg = arg.replace("%VERSION%", String.valueOf(_version));
1159
1160         // if this argument contains %ENV.FOO% replace those with the associated values looked up
1161         // from the environment
1162         if (arg.contains(ENV_VAR_PREFIX)) {
1163             StringBuffer sb = new StringBuffer();
1164             Matcher matcher = ENV_VAR_PATTERN.matcher(arg);
1165             while (matcher.find()) {
1166                 String varName = matcher.group(1), varValue = System.getenv(varName);
1167                 String repValue = varValue == null ? "MISSING:"+varName : varValue;
1168                 matcher.appendReplacement(sb, Matcher.quoteReplacement(repValue));
1169             }
1170             matcher.appendTail(sb);
1171             arg = sb.toString();
1172         }
1173
1174         return arg;
1175     }
1176
1177     /**
1178      * Loads the <code>digest.txt</code> file and verifies the contents of both that file and the
1179      * <code>getdown.text</code> file. Then it loads the <code>version.txt</code> and decides
1180      * whether or not the application needs to be updated or whether we can proceed to verification
1181      * and execution.
1182      *
1183      * @return true if the application needs to be updated, false if it is up to date and can be
1184      * verified and executed.
1185      *
1186      * @exception IOException thrown if we encounter an unrecoverable error while verifying the
1187      * metadata.
1188      */
1189     public boolean verifyMetadata (StatusDisplay status)
1190         throws IOException
1191     {
1192         log.info("Verifying application: " + _vappbase);
1193         log.info("Version: " + _version);
1194         log.info("Class: " + _class);
1195
1196         // this will read in the contents of the digest file and validate itself
1197         try {
1198             _digest = new Digest(getAppDir(), _strictComments);
1199         } catch (IOException ioe) {
1200             log.info("Failed to load digest: " + ioe.getMessage() + ". Attempting recovery...");
1201         }
1202
1203         // if we have no version, then we are running in unversioned mode so we need to download
1204         // our digest.txt file on every invocation
1205         if (_version == -1) {
1206             // make a note of the old meta-digest, if this changes we need to revalidate all of our
1207             // resources as one or more of them have also changed
1208             String olddig = (_digest == null) ? "" : _digest.getMetaDigest();
1209             try {
1210                 status.updateStatus("m.checking");
1211                 downloadDigestFiles();
1212                 _digest = new Digest(getAppDir(), _strictComments);
1213                 if (!olddig.equals(_digest.getMetaDigest())) {
1214                     log.info("Unversioned digest changed. Revalidating...");
1215                     status.updateStatus("m.validating");
1216                     clearValidationMarkers();
1217                 }
1218             } catch (IOException ioe) {
1219                 log.warning("Failed to refresh non-versioned digest: " +
1220                             ioe.getMessage() + ". Proceeding...");
1221             }
1222         }
1223
1224         // regardless of whether we're versioned, if we failed to read the digest from disk, try to
1225         // redownload the digest file and give it another good college try; this time we allow
1226         // exceptions to propagate up to the caller as there is nothing else we can do
1227         if (_digest == null) {
1228             status.updateStatus("m.updating_metadata");
1229             downloadDigestFiles();
1230             _digest = new Digest(getAppDir(), _strictComments);
1231         }
1232
1233         // now verify the contents of our main config file
1234         Resource crsrc = getConfigResource();
1235         if (!_digest.validateResource(crsrc, null)) {
1236             status.updateStatus("m.updating_metadata");
1237             // attempt to redownload both of our metadata files; again we pass errors up to our
1238             // caller because there's nothing we can do to automatically recover
1239             downloadConfigFile();
1240             downloadDigestFiles();
1241             _digest = new Digest(getAppDir(), _strictComments);
1242             // revalidate everything if we end up downloading new metadata
1243             clearValidationMarkers();
1244             // if the new copy validates, reinitialize ourselves; otherwise report baffling hoseage
1245             if (_digest.validateResource(crsrc, null)) {
1246                 init(true);
1247             } else {
1248                 log.warning(CONFIG_FILE + " failed to validate even after redownloading. " +
1249                             "Blindly forging onward.");
1250             }
1251         }
1252
1253         // start by assuming we are happy with our version
1254         _targetVersion = _version;
1255
1256         // if we are a versioned application, read in the contents of the version.txt file
1257         // and/or check the latest config URL for a newer version
1258         if (_version != -1) {
1259             File vfile = getLocalPath(VERSION_FILE);
1260             long fileVersion = VersionUtil.readVersion(vfile);
1261             if (fileVersion != -1) {
1262                 _targetVersion = fileVersion;
1263             }
1264
1265             if (_latest != null) {
1266                 try (InputStream in = ConnectionUtil.open(proxy, _latest, 0, 0).getInputStream();
1267                      InputStreamReader reader = new InputStreamReader(in, UTF_8);
1268                      BufferedReader bin = new BufferedReader(reader)) {
1269                     for (String[] pair : Config.parsePairs(bin, Config.createOpts(false))) {
1270                         if (pair[0].equals("version")) {
1271                             _targetVersion = Math.max(Long.parseLong(pair[1]), _targetVersion);
1272                             if (fileVersion != -1 && _targetVersion > fileVersion) {
1273                                 // replace the file with the newest version
1274                                 try (FileOutputStream fos = new FileOutputStream(vfile);
1275                                      PrintStream out = new PrintStream(fos)) {
1276                                     out.println(_targetVersion);
1277                                 }
1278                             }
1279                             break;
1280                         }
1281                     }
1282                 } catch (Exception e) {
1283                     log.warning("Unable to retrieve version from latest config file.", e);
1284                 }
1285             }
1286         }
1287
1288         // finally let the caller know if we need an update
1289         return _version != _targetVersion;
1290     }
1291
1292     /**
1293      * Verifies the code and media resources associated with this application. A list of resources
1294      * that do not exist or fail the verification process will be returned. If all resources are
1295      * ready to go, null will be returned and the application is considered ready to run.
1296      *
1297      * @param obs a progress observer that will be notified of verification progress. NOTE: this
1298      * observer may be called from arbitrary threads, so if you update a UI based on calls to it,
1299      * you have to take care to get back to your UI thread.
1300      * @param alreadyValid if non-null a 1 element array that will have the number of "already
1301      * validated" resources filled in.
1302      * @param unpacked a set to populate with unpacked resources.
1303      * @param toInstall a list into which to add resources that need to be installed.
1304      * @param toDownload a list into which to add resources that need to be downloaded.
1305      */
1306     public void verifyResources (
1307         ProgressObserver obs, int[] alreadyValid, Set<Resource> unpacked,
1308         Set<Resource> toInstall, Set<Resource> toDownload)
1309         throws InterruptedException
1310     {
1311         // resources are verified on background threads supplied by the thread pool, and progress
1312         // is reported by posting runnable actions to the actions queue which is processed by the
1313         // main (UI) thread
1314         ExecutorService exec = Executors.newFixedThreadPool(SysProps.threadPoolSize());
1315         final BlockingQueue<Runnable> actions = new LinkedBlockingQueue<Runnable>();
1316         final int[] completed = new int[1];
1317
1318         long start = System.currentTimeMillis();
1319
1320         // obtain the sizes of the resources to validate
1321         List<Resource> rsrcs = getAllActiveResources();
1322         long[] sizes = new long[rsrcs.size()];
1323         long totalSize = 0;
1324         for (int ii = 0; ii < sizes.length; ii++) {
1325             totalSize += sizes[ii] = rsrcs.get(ii).getLocal().length();
1326         }
1327         final ProgressObserver fobs = obs;
1328         // as long as we forward aggregated progress updates to the UI thread, having multiple
1329         // threads update a progress aggregator is "mostly" thread-safe
1330         final ProgressAggregator pagg = new ProgressAggregator(new ProgressObserver() {
1331             public void progress (final int percent) {
1332                 actions.add(new Runnable() {
1333                     public void run () {
1334                         fobs.progress(percent);
1335                     }
1336                 });
1337             }
1338         }, sizes);
1339
1340         final int[] fAlreadyValid = alreadyValid;
1341         final Set<Resource> toInstallAsync = new ConcurrentSkipListSet<>(toInstall);
1342         final Set<Resource> toDownloadAsync = new ConcurrentSkipListSet<>();
1343         final Set<Resource> unpackedAsync = new ConcurrentSkipListSet<>();
1344
1345         for (int ii = 0; ii < sizes.length; ii++) {
1346             final Resource rsrc = rsrcs.get(ii);
1347             final int index = ii;
1348             exec.execute(new Runnable() {
1349                 public void run () {
1350                     verifyResource(rsrc, pagg.startElement(index), fAlreadyValid,
1351                                    unpackedAsync, toInstallAsync, toDownloadAsync);
1352                     actions.add(new Runnable() {
1353                         public void run () {
1354                             completed[0] += 1;
1355                         }
1356                     });
1357                 }
1358             });
1359         }
1360
1361         while (completed[0] < rsrcs.size()) {
1362             // we should be getting progress completion updates WAY more often than one every
1363             // minute, so if things freeze up for 60 seconds, abandon ship
1364             Runnable action = actions.poll(60, TimeUnit.SECONDS);
1365             action.run();
1366         }
1367
1368         exec.shutdown();
1369
1370         toInstall.addAll(toInstallAsync);
1371         toDownload.addAll(toDownloadAsync);
1372         unpacked.addAll(unpackedAsync);
1373
1374         long complete = System.currentTimeMillis();
1375         log.info("Verified resources", "count", rsrcs.size(), "size", (totalSize/1024) + "k",
1376                  "duration", (complete-start) + "ms");
1377     }
1378
1379     private void verifyResource (Resource rsrc, ProgressObserver obs, int[] alreadyValid,
1380                                  Set<Resource> unpacked,
1381                                  Set<Resource> toInstall, Set<Resource> toDownload) {
1382         if (rsrc.isMarkedValid()) {
1383             if (alreadyValid != null) {
1384                 alreadyValid[0]++;
1385             }
1386             obs.progress(100);
1387             return;
1388         }
1389
1390         try {
1391             if (_digest.validateResource(rsrc, obs)) {
1392                 // if the resource has a _new file, add it to to-install list
1393                 if (rsrc.getLocalNew().exists()) {
1394                     toInstall.add(rsrc);
1395                     return;
1396                 }
1397                 rsrc.applyAttrs();
1398                 unpacked.add(rsrc);
1399                 rsrc.markAsValid();
1400                 return;
1401             }
1402
1403         } catch (Exception e) {
1404             log.info("Failure verifying resource. Requesting redownload...",
1405                      "rsrc", rsrc, "error", e);
1406
1407         } finally {
1408             obs.progress(100);
1409         }
1410         toDownload.add(rsrc);
1411     }
1412
1413     /**
1414      * Unpacks the resources that require it (we know that they're valid).
1415      *
1416      * @param unpacked a set of resources to skip because they're already unpacked.
1417      */
1418     public void unpackResources (ProgressObserver obs, Set<Resource> unpacked)
1419         throws InterruptedException
1420     {
1421         List<Resource> rsrcs = getActiveResources();
1422
1423         // remove resources that we don't want to unpack
1424         for (Iterator<Resource> it = rsrcs.iterator(); it.hasNext(); ) {
1425             Resource rsrc = it.next();
1426             if (!rsrc.shouldUnpack() || unpacked.contains(rsrc)) {
1427                 it.remove();
1428             }
1429         }
1430
1431         // obtain the sizes of the resources to unpack
1432         long[] sizes = new long[rsrcs.size()];
1433         for (int ii = 0; ii < sizes.length; ii++) {
1434             sizes[ii] = rsrcs.get(ii).getLocal().length();
1435         }
1436
1437         ProgressAggregator pagg = new ProgressAggregator(obs, sizes);
1438         for (int ii = 0; ii < sizes.length; ii++) {
1439             Resource rsrc = rsrcs.get(ii);
1440             ProgressObserver pobs = pagg.startElement(ii);
1441             try {
1442                 rsrc.unpack();
1443             } catch (IOException ioe) {
1444                 log.warning("Failure unpacking resource", "rsrc", rsrc, ioe);
1445             }
1446             pobs.progress(100);
1447         }
1448     }
1449
1450     /**
1451      * Clears all validation marker files.
1452      */
1453     public void clearValidationMarkers ()
1454     {
1455         clearValidationMarkers(getAllActiveResources().iterator());
1456     }
1457
1458     /**
1459      * Returns the version number for the application.  Should only be called after successful
1460      * return of verifyMetadata.
1461      */
1462     public long getVersion ()
1463     {
1464         return _version;
1465     }
1466
1467     /**
1468      * Creates a versioned application base URL for the specified version.
1469      */
1470     protected URL createVAppBase (long version)
1471         throws MalformedURLException
1472     {
1473         String url = version < 0 ? _appbase : _appbase.replace("%VERSION%", "" + version);
1474         return HostWhitelist.verify(new URL(url));
1475     }
1476
1477     /**
1478      * Clears all validation marker files for the resources in the supplied iterator.
1479      */
1480     protected void clearValidationMarkers (Iterator<Resource> iter)
1481     {
1482         while (iter.hasNext()) {
1483             iter.next().clearMarker();
1484         }
1485     }
1486
1487     /**
1488      * Downloads a new copy of CONFIG_FILE.
1489      */
1490     protected void downloadConfigFile ()
1491         throws IOException
1492     {
1493         downloadControlFile(CONFIG_FILE, 0);
1494     }
1495
1496     /**
1497      * @return true if gettingdown.lock was unlocked, already locked by this application or if
1498      * we're not locking at all.
1499      */
1500     public synchronized boolean lockForUpdates ()
1501     {
1502         if (_lock != null && _lock.isValid()) {
1503             return true;
1504         }
1505         try {
1506             _lockChannel = new RandomAccessFile(getLocalPath("gettingdown.lock"), "rw").getChannel();
1507         } catch (FileNotFoundException e) {
1508             log.warning("Unable to create lock file", "message", e.getMessage(), e);
1509             return false;
1510         }
1511         try {
1512             _lock = _lockChannel.tryLock();
1513         } catch (IOException e) {
1514             log.warning("Unable to create lock", "message", e.getMessage(), e);
1515             return false;
1516         } catch (OverlappingFileLockException e) {
1517             log.warning("The lock is held elsewhere in this JVM", e);
1518             return false;
1519         }
1520         log.info("Able to lock for updates: " + (_lock != null));
1521         return _lock != null;
1522     }
1523
1524     /**
1525      * Release gettingdown.lock
1526      */
1527     public synchronized void releaseLock ()
1528     {
1529         if (_lock != null) {
1530             log.info("Releasing lock");
1531             try {
1532                 _lock.release();
1533             } catch (IOException e) {
1534                 log.warning("Unable to release lock", "message", e.getMessage(), e);
1535             }
1536             try {
1537                 _lockChannel.close();
1538             } catch (IOException e) {
1539                 log.warning("Unable to close lock channel", "message", e.getMessage(), e);
1540             }
1541             _lockChannel = null;
1542             _lock = null;
1543         }
1544     }
1545
1546     /**
1547      * Downloads the digest files and validates their signature.
1548      * @throws IOException
1549      */
1550     protected void downloadDigestFiles ()
1551         throws IOException
1552     {
1553         for (int version = 1; version <= Digest.VERSION; version++) {
1554             downloadControlFile(Digest.digestFile(version), version);
1555         }
1556     }
1557
1558     /**
1559      * Downloads a new copy of the specified control file, optionally validating its signature.
1560      * If the download is successful, moves it over the old file on the filesystem.
1561      *
1562      * <p> TODO: Switch to PKCS #7 or CMS.
1563      *
1564      * @param sigVersion if {@code 0} no validation will be performed, if {@code > 0} then this
1565      * should indicate the version of the digest file being validated which indicates which
1566      * algorithm to use to verify the signature. See {@link Digest#VERSION}.
1567      */
1568     protected void downloadControlFile (String path, int sigVersion)
1569         throws IOException
1570     {
1571         File target = downloadFile(path);
1572
1573         if (sigVersion > 0) {
1574             if (_envc.certs.isEmpty()) {
1575                 log.info("No signing certs, not verifying digest.txt", "path", path);
1576
1577             } else {
1578                 File signatureFile = downloadFile(path + SIGNATURE_SUFFIX);
1579                 byte[] signature = null;
1580                 try (FileInputStream signatureStream = new FileInputStream(signatureFile)) {
1581                     signature = StreamUtil.toByteArray(signatureStream);
1582                 } finally {
1583                     FileUtil.deleteHarder(signatureFile); // delete the file regardless
1584                 }
1585
1586                 byte[] buffer = new byte[8192];
1587                 int length, validated = 0;
1588                 for (Certificate cert : _envc.certs) {
1589                     try (FileInputStream dataInput = new FileInputStream(target)) {
1590                         Signature sig = Signature.getInstance(Digest.sigAlgorithm(sigVersion));
1591                         sig.initVerify(cert);
1592                         while ((length = dataInput.read(buffer)) != -1) {
1593                             sig.update(buffer, 0, length);
1594                         }
1595
1596                         if (!sig.verify(Base64.decode(signature, Base64.DEFAULT))) {
1597                             log.info("Signature does not match", "cert", cert.getPublicKey());
1598                             continue;
1599                         } else {
1600                             log.info("Signature matches", "cert", cert.getPublicKey());
1601                             validated++;
1602                         }
1603
1604                     } catch (IOException ioe) {
1605                         log.warning("Failure validating signature of " + target + ": " + ioe);
1606
1607                     } catch (GeneralSecurityException gse) {
1608                         // no problem!
1609
1610                     }
1611                 }
1612
1613                 // if we couldn't find a key that validates our digest, we are the hosed!
1614                 if (validated == 0) {
1615                     // delete the temporary digest file as we know it is invalid
1616                     FileUtil.deleteHarder(target);
1617                     throw new IOException("m.corrupt_digest_signature_error");
1618                 }
1619             }
1620         }
1621
1622         // now move the temporary file over the original
1623         File original = getLocalPath(path);
1624         if (!FileUtil.renameTo(target, original)) {
1625             throw new IOException("Failed to rename(" + target + ", " + original + ")");
1626         }
1627     }
1628
1629     /**
1630      * Download a path to a temporary file, returning a {@link File} instance with the path
1631      * contents.
1632      */
1633     protected File downloadFile (String path)
1634         throws IOException
1635     {
1636         File target = getLocalPath(path + "_new");
1637
1638         URL targetURL = null;
1639         try {
1640             targetURL = getRemoteURL(path);
1641         } catch (Exception e) {
1642             log.warning("Requested to download invalid control file",
1643                 "appbase", _vappbase, "path", path, "error", e);
1644             throw (IOException) new IOException("Invalid path '" + path + "'.").initCause(e);
1645         }
1646
1647         log.info("Attempting to refetch '" + path + "' from '" + targetURL + "'.");
1648
1649         // stream the URL into our temporary file
1650         URLConnection uconn = ConnectionUtil.open(proxy, targetURL, 0, 0);
1651         // we have to tell Java not to use caches here, otherwise it will cache any request for
1652         // same URL for the lifetime of this JVM (based on the URL string, not the URL object);
1653         // if the getdown.txt file, for example, changes in the meanwhile, we would never hear
1654         // about it; turning off caches is not a performance concern, because when Getdown asks
1655         // to download a file, it expects it to come over the wire, not from a cache
1656         uconn.setUseCaches(false);
1657         uconn.setRequestProperty("Accept-Encoding", "gzip");
1658         try (InputStream fin = uconn.getInputStream()) {
1659             String encoding = uconn.getContentEncoding();
1660             boolean gzip = "gzip".equalsIgnoreCase(encoding);
1661             try (InputStream fin2 = (gzip ? new GZIPInputStream(fin) : fin)) {
1662                 try (FileOutputStream fout = new FileOutputStream(target)) {
1663                     StreamUtil.copy(fin2, fout);
1664                 }
1665             }
1666         }
1667
1668         return target;
1669     }
1670
1671     /** Helper function for creating {@link Resource} instances. */
1672     protected Resource createResource (String path, EnumSet<Resource.Attr> attrs)
1673         throws MalformedURLException
1674     {
1675         return new Resource(path, getRemoteURL(path), getLocalPath(path), attrs);
1676     }
1677
1678     /** Helper function to add all values in {@code values} (if non-null) to {@code target}. */
1679     protected static void addAll (String[] values, List<String> target) {
1680         if (values != null) {
1681             for (String value : values) {
1682                 target.add(value);
1683             }
1684         }
1685     }
1686
1687     /**
1688      * Make an immutable List from the specified int array.
1689      */
1690     public static List<Integer> intsToList (int[] values)
1691     {
1692         List<Integer> list = new ArrayList<>(values.length);
1693         for (int val : values) {
1694             list.add(val);
1695         }
1696         return Collections.unmodifiableList(list);
1697     }
1698
1699     /**
1700      * Make an immutable List from the specified String array.
1701      */
1702     public static List<String> stringsToList (String[] values)
1703     {
1704         return values == null ? null : Collections.unmodifiableList(Arrays.asList(values));
1705     }
1706
1707     /** Used to parse resources with the specified name. */
1708     protected void parseResources (Config config, String name, EnumSet<Resource.Attr> attrs,
1709                                    List<Resource> list)
1710     {
1711         String[] rsrcs = config.getMultiValue(name);
1712         if (rsrcs == null) {
1713             return;
1714         }
1715         for (String rsrc : rsrcs) {
1716             try {
1717                 list.add(createResource(rsrc, attrs));
1718             } catch (Exception e) {
1719                 log.warning("Invalid resource '" + rsrc + "'. " + e);
1720             }
1721         }
1722     }
1723
1724     /** Possibly generates and returns a google analytics tracking cookie. */
1725     protected String getGATrackingCode ()
1726     {
1727         if (_trackingGAHash == null) {
1728             return "";
1729         }
1730         long time = System.currentTimeMillis() / 1000;
1731         if (_trackingStart == 0) {
1732             _trackingStart = time;
1733         }
1734         if (_trackingId == 0) {
1735             int low = 100000000, high = 1000000000;
1736             _trackingId = low + _rando.nextInt(high-low);
1737         }
1738         StringBuilder cookie = new StringBuilder("&utmcc=__utma%3D").append(_trackingGAHash);
1739         cookie.append(".").append(_trackingId);
1740         cookie.append(".").append(_trackingStart).append(".").append(_trackingStart);
1741         cookie.append(".").append(time).append(".1%3B%2B");
1742         cookie.append("__utmz%3D").append(_trackingGAHash).append(".");
1743         cookie.append(_trackingStart).append(".1.1.");
1744         cookie.append("utmcsr%3D(direct)%7Cutmccn%3D(direct)%7Cutmcmd%3D(none)%3B");
1745         int low = 1000000000, high = 2000000000;
1746         cookie.append("&utmn=").append(_rando.nextInt(high-low));
1747         return cookie.toString();
1748     }
1749
1750     /**
1751      * Encodes a path for use in a URL.
1752      */
1753     protected static String encodePath (String path)
1754     {
1755         try {
1756             // we want to keep slashes because we're encoding an entire path; also we need to turn
1757             // + into %20 because web servers don't like + in paths or file names, blah
1758             return URLEncoder.encode(path, "UTF-8").replace("%2F", "/").replace("+", "%20");
1759         } catch (UnsupportedEncodingException ue) {
1760             log.warning("Failed to URL encode " + path + ": " + ue);
1761             return path;
1762         }
1763     }
1764
1765     protected File getLocalPath (File appdir, String path)
1766     {
1767         return new File(appdir, path);
1768     }
1769     
1770     public void addStartupFile (File f) {
1771       startupFiles.add(f);
1772     }
1773
1774     protected final EnvConfig _envc;
1775     protected File _config;
1776     protected Digest _digest;
1777
1778     protected long _version = -1;
1779     protected long _targetVersion = -1;
1780     protected String _appbase;
1781     protected URL _vappbase;
1782     protected URL _latest;
1783     protected String _class;
1784     protected String _dockName;
1785     protected String _dockIconPath;
1786     protected boolean _strictComments;
1787     protected boolean _windebug;
1788     protected boolean _allowOffline;
1789     protected int _maxConcDownloads;
1790
1791     protected String _trackingURL;
1792     protected Set<Integer> _trackingPcts;
1793     protected String _trackingCookieName;
1794     protected String _trackingCookieProperty;
1795     protected String _trackingURLSuffix;
1796     protected String _trackingGAHash;
1797     protected long _trackingStart;
1798     protected int _trackingId;
1799
1800     protected String _javaVersionProp = "java.version";
1801     protected String _javaVersionRegex = "(\\d+)(?:\\.(\\d+)(?:\\.(\\d+)(_\\d+)?)?)?";
1802     protected long _javaMinVersion, _javaMaxVersion;
1803     protected boolean _javaExactVersionRequired;
1804     protected String _javaLocation;
1805
1806     protected List<Resource> _codes = new ArrayList<>();
1807     protected List<Resource> _resources = new ArrayList<>();
1808
1809     protected boolean _useCodeCache;
1810     protected int _codeCacheRetentionDays;
1811
1812     protected Map<String,AuxGroup> _auxgroups = new HashMap<>();
1813     protected Map<String,Boolean> _auxactive = new HashMap<>();
1814
1815     protected List<String> _jvmargs = new ArrayList<>();
1816     protected List<String> _appargs = new ArrayList<>();
1817     protected List<File> startupFiles = new ArrayList<>();
1818
1819     protected String[] _optimumJvmArgs;
1820
1821     protected List<String> _txtJvmArgs = new ArrayList<>();
1822
1823     /** If a warning has been issued about not being able to set modtimes. */
1824     protected boolean _warnedAboutSetLastModified;
1825
1826     /** Locks gettingdown.lock in the app dir. Held the entire time updating is going on.*/
1827     protected FileLock _lock;
1828
1829     /** Channel to the file underlying _lock.  Kept around solely so the lock doesn't close. */
1830     protected FileChannel _lockChannel;
1831
1832     protected Random _rando = new Random();
1833
1834     protected static final String[] EMPTY_STRING_ARRAY = new String[0];
1835
1836     protected static final String ENV_VAR_PREFIX = "%ENV.";
1837     protected static final Pattern ENV_VAR_PATTERN = Pattern.compile("%ENV\\.(.*?)%");
1838 }