SlaveComputer.java 33.7 KB
Newer Older
K
kohsuke 已提交
1 2
/*
 * The MIT License
3
 *
K
kohsuke 已提交
4
 * Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Stephen Connolly
5
 *
K
kohsuke 已提交
6 7 8 9 10 11
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
12
 *
K
kohsuke 已提交
13 14
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
15
 *
K
kohsuke 已提交
16 17 18 19 20 21 22 23
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
24 25
package hudson.slaves;

K
Kohsuke Kawaguchi 已提交
26
import hudson.AbortException;
27
import hudson.FilePath;
28
import hudson.Functions;
K
kohsuke 已提交
29
import hudson.Util;
30
import hudson.console.ConsoleLogFilter;
K
Kohsuke Kawaguchi 已提交
31 32 33 34 35 36 37 38 39
import hudson.model.Computer;
import hudson.model.Executor;
import hudson.model.ExecutorListener;
import hudson.model.Node;
import hudson.model.Queue;
import hudson.model.Slave;
import hudson.model.TaskListener;
import hudson.model.User;
import hudson.remoting.Channel;
40
import hudson.remoting.ChannelBuilder;
41
import hudson.remoting.Launcher;
K
Kohsuke Kawaguchi 已提交
42
import hudson.remoting.VirtualChannel;
43
import hudson.security.ACL;
44
import hudson.slaves.OfflineCause.ChannelTermination;
K
Kohsuke Kawaguchi 已提交
45
import hudson.util.Futures;
46
import hudson.util.IOUtils;
K
Kohsuke Kawaguchi 已提交
47 48 49
import hudson.util.NullStream;
import hudson.util.RingBufferLogHandler;
import hudson.util.StreamTaskListener;
50 51
import hudson.util.io.RewindableFileOutputStream;
import hudson.util.io.RewindableRotatingFileOutputStream;
52 53 54
import jenkins.model.Jenkins;
import jenkins.security.ChannelConfigurator;
import jenkins.security.MasterToSlaveCallable;
55
import jenkins.slaves.EncryptedSlaveAgentJnlpFile;
56
import jenkins.slaves.JnlpSlaveAgentProtocol;
57
import jenkins.slaves.systemInfo.SlaveSystemInfo;
58
import jenkins.util.SystemProperties;
59 60
import org.acegisecurity.context.SecurityContext;
import org.acegisecurity.context.SecurityContextHolder;
61 62 63 64 65
import org.kohsuke.stapler.HttpRedirect;
import org.kohsuke.stapler.HttpResponse;
import org.kohsuke.stapler.QueryParameter;
import org.kohsuke.stapler.StaplerRequest;
import org.kohsuke.stapler.StaplerResponse;
K
Kohsuke Kawaguchi 已提交
66
import org.kohsuke.stapler.WebMethod;
K
Kohsuke Kawaguchi 已提交
67
import org.kohsuke.stapler.interceptor.RequirePOST;
68

69
import javax.annotation.CheckForNull;
70
import javax.annotation.OverridingMethodsMustInvokeSuper;
K
Kohsuke Kawaguchi 已提交
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
import javax.servlet.ServletException;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.PrintStream;
import java.nio.charset.Charset;
import java.security.Security;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.concurrent.Future;
import java.util.logging.Handler;
import java.util.logging.Level;
import java.util.logging.LogRecord;
import java.util.logging.Logger;

88
import static hudson.slaves.SlaveComputer.LogHolder.SLAVE_LOG_HANDLER;
K
Kohsuke Kawaguchi 已提交
89

90

91 92 93 94 95
/**
 * {@link Computer} for {@link Slave}s.
 *
 * @author Kohsuke Kawaguchi
 */
K
kohsuke 已提交
96
public class SlaveComputer extends Computer {
97 98 99 100
    private volatile Channel channel;
    private volatile transient boolean acceptingTasks = true;
    private Charset defaultCharset;
    private Boolean isUnix;
K
kohsuke 已提交
101 102
    /**
     * Effective {@link ComputerLauncher} that hides the details of
103
     * how we launch a agent agent on this computer.
K
kohsuke 已提交
104 105 106
     *
     * <p>
     * This is normally the same as {@link Slave#getLauncher()} but
107
     * can be different. See {@link #grabLauncher(Node)}.
K
kohsuke 已提交
108
     */
109 110
    private ComputerLauncher launcher;

111 112 113
    /**
     * Perpetually writable log file.
     */
114
    private final RewindableFileOutputStream log;
115 116 117 118 119 120 121

    /**
     * {@link StreamTaskListener} that wraps {@link #log}, hence perpetually writable.
     */
    private final TaskListener taskListener;


122 123 124 125 126 127 128
    /**
     * Number of failed attempts to reconnect to this node
     * (so that if we keep failing to reconnect, we can stop
     * trying.)
     */
    private transient int numRetryAttempt;

K
kohsuke 已提交
129 130 131 132 133 134 135 136
    /**
     * Tracks the status of the last launch operation, which is always asynchronous.
     * This can be used to wait for the completion, or cancel the launch activity.
     */
    private volatile Future<?> lastConnectActivity = null;

    private Object constructed = new Object();

137 138
    private transient volatile String absoluteRemoteFs;

K
kohsuke 已提交
139 140
    public SlaveComputer(Slave slave) {
        super(slave);
141
        this.log = new RewindableRotatingFileOutputStream(getLogFile(), 10);
142
        this.taskListener = new StreamTaskListener(decorate(this.log));
143
        assert slave.getNumExecutors()!=0 : "Computer created with 0 executors";
K
kohsuke 已提交
144
    }
145

146 147 148 149 150 151 152 153 154 155 156 157 158 159
    /**
     * Uses {@link ConsoleLogFilter} to decorate logger.
     */
    private OutputStream decorate(OutputStream os) {
        for (ConsoleLogFilter f : ConsoleLogFilter.all()) {
            try {
                os = f.decorateLogger(this,os);
            } catch (IOException|InterruptedException e) {
                LOGGER.log(Level.WARNING, "Failed to filter log with "+f, e);
            }
        }
        return os;
    }

160 161 162 163
    /**
     * {@inheritDoc}
     */
    @Override
164
    @OverridingMethodsMustInvokeSuper
165
    public boolean isAcceptingTasks() {
166
        // our boolean flag is an override on any additional programmatic reasons why this agent might not be
167 168
        // accepting tasks.
        return acceptingTasks && super.isAcceptingTasks();
169 170
    }

K
Kohsuke Kawaguchi 已提交
171 172 173
    /**
     * @since 1.498
     */
174 175 176 177
    public String getJnlpMac() {
        return JnlpSlaveAgentProtocol.SLAVE_SECRET.mac(getName());
    }

178
    /**
179
     * Allows suspension of tasks being accepted by the agent computer. While this could be called by a
180 181 182 183
     * {@linkplain hudson.slaves.ComputerLauncher} or a {@linkplain hudson.slaves.RetentionStrategy}, such usage
     * can result in fights between multiple actors calling setting differential values. A better approach
     * is to override {@link hudson.slaves.RetentionStrategy#isAcceptingTasks(hudson.model.Computer)} if the
     * {@link hudson.slaves.RetentionStrategy} needs to control availability.
184
     *
185
     * @param acceptingTasks {@code true} if the agent can accept tasks.
186 187 188 189 190
     */
    public void setAcceptingTasks(boolean acceptingTasks) {
        this.acceptingTasks = acceptingTasks;
    }

191
    @Override
192 193 194 195
    public Boolean isUnix() {
        return isUnix;
    }

196
    @CheckForNull
197
    @Override
198
    public Slave getNode() {
J
Jesse Glick 已提交
199 200 201 202 203 204 205
        Node node = super.getNode();
        if (node == null || node instanceof Slave) {
            return (Slave)node;
        } else {
            logger.log(Level.WARNING, "found an unexpected kind of node {0} from {1} with nodeName={2}", new Object[] {node, this, nodeName});
            return null;
        }
206 207
    }

208 209 210 211
    /**
     * Return the {@code TaskListener} for this SlaveComputer. Never null
     * @since 2.9
     */
N
Nicolas De Loof 已提交
212 213 214 215
    public TaskListener getListener() {
        return taskListener;
    }

K
kohsuke 已提交
216 217 218 219 220 221 222 223
    @Override
    public String getIcon() {
        Future<?> l = lastConnectActivity;
        if(l!=null && !l.isDone())
            return "computer-flash.gif";
        return super.getIcon();
    }

M
mindless 已提交
224 225 226 227
    /**
     * @deprecated since 2008-05-20.
     */
    @Deprecated @Override
228 229 230 231 232 233 234 235 236
    public boolean isJnlpAgent() {
        return launcher instanceof JNLPLauncher;
    }

    @Override
    public boolean isLaunchSupported() {
        return launcher.isLaunchSupported();
    }

237 238 239 240
    /**
     * Return the {@code ComputerLauncher} for this SlaveComputer.
     * @since 1.312
     */
241 242 243 244
    public ComputerLauncher getLauncher() {
        return launcher;
    }

245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
    /**
     * Return the {@code ComputerLauncher} for this SlaveComputer, strips off
     * any {@code DelegatingComputerLauncher}s or {@code ComputerLauncherFilter}s.
     * @since 2.83
     */
    public ComputerLauncher getDelegatedLauncher() {
        ComputerLauncher l = launcher;
        while (true) {
            if (l instanceof DelegatingComputerLauncher) {
                l = ((DelegatingComputerLauncher) l).getLauncher();
            } else if (l instanceof ComputerLauncherFilter) {
                l = ((ComputerLauncherFilter) l).getCore();
            } else {
                break;
            }
        }
        return l;
    }

264
    protected Future<?> _connect(boolean forceReconnect) {
K
kohsuke 已提交
265
        if(channel!=null)   return Futures.precomputed(null);
266
        if(!forceReconnect && isConnecting())
K
kohsuke 已提交
267
            return lastConnectActivity;
268
        if(forceReconnect && isConnecting())
K
kohsuke 已提交
269
            logger.fine("Forcing a reconnect on "+getName());
270 271

        closeChannel();
K
kohsuke 已提交
272 273
        return lastConnectActivity = Computer.threadPoolForRemoting.submit(new java.util.concurrent.Callable<Object>() {
            public Object call() throws Exception {
274 275
                // do this on another thread so that the lengthy launch operation
                // (which is typical) won't block UI thread.
K
Kohsuke Kawaguchi 已提交
276 277 278

                ACL.impersonate(ACL.SYSTEM);    // background activity should run like a super user

K
kohsuke 已提交
279
                try {
280
                    log.rewind();
281
                    try {
T
Tom Rini 已提交
282
                        for (ComputerListener cl : ComputerListener.all())
283
                            cl.preLaunch(SlaveComputer.this, taskListener);
284
                        offlineCause = null;
285
                        launcher.launch(SlaveComputer.this, taskListener);
286
                    } catch (AbortException e) {
287
                        taskListener.error(e.getMessage());
288 289
                        throw e;
                    } catch (IOException e) {
290
                        Util.displayIOException(e,taskListener);
291
                        Functions.printStackTrace(e, taskListener.error(Messages.ComputerLauncher_unexpectedError()));
292 293
                        throw e;
                    } catch (InterruptedException e) {
294
                        Functions.printStackTrace(e, taskListener.error(Messages.ComputerLauncher_abortedLaunch()));
295
                        throw e;
296
                    } catch (Exception e) {
297
                        Functions.printStackTrace(e, taskListener.error(Messages.ComputerLauncher_unexpectedError()));
298
                        throw e;
299
                    }
300
                } finally {
301
                    if (channel==null && offlineCause == null) {
302
                        offlineCause = new OfflineCause.LaunchFailed();
303 304 305
                        for (ComputerListener cl : ComputerListener.all())
                            cl.onLaunchFailure(SlaveComputer.this, taskListener);
                    }
K
kohsuke 已提交
306
                }
307 308

                if (channel==null)
309
                    throw new IOException("Agent failed to connect, even though the launcher didn't report it. See the log output for details.");
310
                return null;
311 312 313 314 315 316 317 318 319 320 321 322 323
            }
        });
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public void taskAccepted(Executor executor, Queue.Task task) {
        super.taskAccepted(executor, task);
        if (launcher instanceof ExecutorListener) {
            ((ExecutorListener)launcher).taskAccepted(executor, task);
        }
324

325 326 327 328
        //getNode() can return null at indeterminate times when nodes go offline
        Slave node = getNode();
        if (node != null && node.getRetentionStrategy() instanceof ExecutorListener) {
            ((ExecutorListener)node.getRetentionStrategy()).taskAccepted(executor, task);
329 330 331 332 333 334 335 336 337 338 339 340
        }
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public void taskCompleted(Executor executor, Queue.Task task, long durationMS) {
        super.taskCompleted(executor, task, durationMS);
        if (launcher instanceof ExecutorListener) {
            ((ExecutorListener)launcher).taskCompleted(executor, task, durationMS);
        }
341
        RetentionStrategy r = getRetentionStrategy();
K
kohsuke 已提交
342 343
        if (r instanceof ExecutorListener) {
            ((ExecutorListener) r).taskCompleted(executor, task, durationMS);
344 345 346 347 348 349 350 351 352 353 354 355
        }
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public void taskCompletedWithProblems(Executor executor, Queue.Task task, long durationMS, Throwable problems) {
        super.taskCompletedWithProblems(executor, task, durationMS, problems);
        if (launcher instanceof ExecutorListener) {
            ((ExecutorListener)launcher).taskCompletedWithProblems(executor, task, durationMS, problems);
        }
356 357 358
        RetentionStrategy r = getRetentionStrategy();
        if (r instanceof ExecutorListener) {
            ((ExecutorListener) r).taskCompletedWithProblems(executor, task, durationMS, problems);
359 360 361
        }
    }

K
kohsuke 已提交
362 363 364 365 366 367
    @Override
    public boolean isConnecting() {
        Future<?> l = lastConnectActivity;
        return isOffline() && l!=null && !l.isDone();
    }

368 369
    public OutputStream openLogFile() {
        try {
370 371 372
            log.rewind();
            return log;
        } catch (IOException e) {
373
            logger.log(Level.SEVERE, "Failed to create log file "+getLogFile(),e);
374
            return new NullStream();
375 376 377 378 379
        }
    }

    private final Object channelLock = new Object();

K
kohsuke 已提交
380 381 382 383
    public void setChannel(InputStream in, OutputStream out, TaskListener taskListener, Channel.Listener listener) throws IOException, InterruptedException {
        setChannel(in,out,taskListener.getLogger(),listener);
    }

384
    /**
385
     * Creates a {@link Channel} from the given stream and sets that to this agent.
K
kohsuke 已提交
386 387 388 389 390 391 392 393 394 395 396 397 398
     *
     * @param in
     *      Stream connected to the remote "slave.jar". It's the caller's responsibility to do
     *      buffering on this stream, if that's necessary.
     * @param out
     *      Stream connected to the remote peer. It's the caller's responsibility to do
     *      buffering on this stream, if that's necessary.
     * @param launchLog
     *      If non-null, receive the portion of data in <tt>is</tt> before
     *      the data goes into the "binary mode". This is useful
     *      when the established communication channel might include some data that might
     *      be useful for debugging/trouble-shooting.
     * @param listener
399
     *      Gets a notification when the channel closes, to perform clean up. Can be null.
400 401
     *      By the time this method is called, the cause of the termination is reported to the user,
     *      so the implementation of the listener doesn't need to do that again.
402 403
     */
    public void setChannel(InputStream in, OutputStream out, OutputStream launchLog, Channel.Listener listener) throws IOException, InterruptedException {
K
Kohsuke Kawaguchi 已提交
404 405 406 407
        ChannelBuilder cb = new ChannelBuilder(nodeName,threadPoolForRemoting)
            .withMode(Channel.Mode.NEGOTIATE)
            .withHeaderStream(launchLog);

408 409
        for (ChannelConfigurator cc : ChannelConfigurator.all()) {
            cc.onChannelBuilding(cb,this);
K
Kohsuke Kawaguchi 已提交
410 411 412
        }

        Channel channel = cb.build(in,out);
413 414 415
        setChannel(channel,launchLog,listener);
    }

J
Jesse Glick 已提交
416 417 418 419 420 421 422 423
    /**
     * Shows {@link Channel#classLoadingCount}.
     * @since 1.495
     */
    public int getClassLoadingCount() throws IOException, InterruptedException {
        return channel.call(new LoadingCount(false));
    }

424 425 426
    /**
     * Shows {@link Channel#classLoadingPrefetchCacheCount}.
     * @return -1 in case that capability is not supported
J
Jesse Glick 已提交
427
     * @since 1.519
428 429 430 431 432 433 434 435
     */
    public int getClassLoadingPrefetchCacheCount() throws IOException, InterruptedException {
        if (!channel.remoteCapability.supportsPrefetch()) {
            return -1;
        }
        return channel.call(new LoadingPrefetchCacheCount());
    }

J
Jesse Glick 已提交
436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459
    /**
     * Shows {@link Channel#resourceLoadingCount}.
     * @since 1.495
     */
    public int getResourceLoadingCount() throws IOException, InterruptedException {
        return channel.call(new LoadingCount(true));
    }

    /**
     * Shows {@link Channel#classLoadingTime}.
     * @since 1.495
     */
    public long getClassLoadingTime() throws IOException, InterruptedException {
        return channel.call(new LoadingTime(false));
    }

    /**
     * Shows {@link Channel#resourceLoadingTime}.
     * @since 1.495
     */
    public long getResourceLoadingTime() throws IOException, InterruptedException {
        return channel.call(new LoadingTime(true));
    }

460
    /**
461
     * Returns the remote FS root absolute path or {@code null} if the agent is off-line. The absolute path may change
462 463 464
     * between connections if the connection method does not provide a consistent working directory and the node's
     * remote FS is specified as a relative path.
     *
465
     * @return the remote FS root absolute path or {@code null} if the agent is off-line.
466
     * @since 1.606
467
     */
468 469 470 471 472
    @CheckForNull
    public String getAbsoluteRemoteFs() {
        return channel == null ? null : absoluteRemoteFs;
    }

473
    static class LoadingCount extends MasterToSlaveCallable<Integer,RuntimeException> {
J
Jesse Glick 已提交
474 475 476 477 478 479 480 481 482 483
        private final boolean resource;
        LoadingCount(boolean resource) {
            this.resource = resource;
        }
        @Override public Integer call() {
            Channel c = Channel.current();
            return resource ? c.resourceLoadingCount.get() : c.classLoadingCount.get();
        }
    }

484
    static class LoadingPrefetchCacheCount extends MasterToSlaveCallable<Integer,RuntimeException> {
485 486 487 488 489
        @Override public Integer call() {
            return Channel.current().classLoadingPrefetchCacheCount.get();
        }
    }

490
    static class LoadingTime extends MasterToSlaveCallable<Long,RuntimeException> {
J
Jesse Glick 已提交
491 492 493 494 495 496 497 498 499 500
        private final boolean resource;
        LoadingTime(boolean resource) {
            this.resource = resource;
        }
        @Override public Long call() {
            Channel c = Channel.current();
            return resource ? c.resourceLoadingTime.get() : c.classLoadingTime.get();
        }
    }

501
    /**
502
     * Sets up the connection through an existing channel.
J
Jesse Glick 已提交
503
     * @param channel the channel to use; <strong>warning:</strong> callers are expected to have called {@link ChannelConfigurator} already
504 505 506
     * @since 1.444
     */
    public void setChannel(Channel channel, OutputStream launchLog, Channel.Listener listener) throws IOException, InterruptedException {
507 508 509
        if(this.channel!=null)
            throw new IllegalStateException("Already connected");

510 511
        final TaskListener taskListener = new StreamTaskListener(launchLog);
        PrintStream log = taskListener.getLogger();
512

513 514
        channel.setProperty(SlaveComputer.class, this);

515
        channel.addListener(new Channel.Listener() {
516
            @Override
517 518
            public void onClosed(Channel c, IOException cause) {
                // Orderly shutdown will have null exception
519 520
                if (cause!=null) {
                    offlineCause = new ChannelTermination(cause);
521
                    Functions.printStackTrace(cause, taskListener.error("Connection terminated"));
522 523 524
                } else {
                    taskListener.getLogger().println("Connection terminated");
                }
525
                closeChannel();
526 527 528 529 530 531
                try {
                    launcher.afterDisconnect(SlaveComputer.this, taskListener);
                } catch (Throwable t) {
                    LogRecord lr = new LogRecord(Level.SEVERE,
                            "Launcher {0}'s afterDisconnect method propagated an exception when {1}'s connection was closed: {2}");
                    lr.setThrown(t);
532
                    lr.setParameters(new Object[]{launcher, SlaveComputer.this.getName(), t.getMessage()});
533 534
                    logger.log(lr);
                }
535 536
            }
        });
537 538
        if(listener!=null)
            channel.addListener(listener);
539

540 541 542
        String slaveVersion = channel.call(new SlaveVersion());
        log.println("Slave.jar version: " + slaveVersion);

543 544 545 546 547
        boolean _isUnix = channel.call(new DetectOS());
        log.println(_isUnix? hudson.model.Messages.Slave_UnixSlave():hudson.model.Messages.Slave_WindowsSlave());

        String defaultCharsetName = channel.call(new DetectDefaultCharset());

548 549 550 551
        Slave node = getNode();
        if (node == null) { // Node has been disabled/removed during the connection
            throw new IOException("Node "+nodeName+" has been deleted during the channel setup");
        }
552

553 554 555 556
        String remoteFS = node.getRemoteFS();
        if (Util.isRelativePath(remoteFS)) {
            remoteFS = channel.call(new AbsolutePath(remoteFS));
            log.println("NOTE: Relative remote path resolved to: "+remoteFS);
557
        }
558 559 560 561
        if(_isUnix && !remoteFS.contains("/") && remoteFS.contains("\\"))
            log.println("WARNING: "+remoteFS
                    +" looks suspiciously like Windows path. Maybe you meant "+remoteFS.replace('\\','/')+"?");
        FilePath root = new FilePath(channel,remoteFS);
562

K
Kohsuke Kawaguchi 已提交
563 564 565 566 567
        // reference counting problem is known to happen, such as JENKINS-9017, and so as a preventive measure
        // we pin the base classloader so that it'll never get GCed. When this classloader gets released,
        // it'll have a catastrophic impact on the communication.
        channel.pinClassLoader(getClass().getClassLoader());

568
        channel.call(new SlaveInitializer(DEFAULT_RING_BUFFER_SIZE));
569 570 571 572 573 574 575 576
        SecurityContext old = ACL.impersonate(ACL.SYSTEM);
        try {
            for (ComputerListener cl : ComputerListener.all()) {
                cl.preOnline(this,channel,root,taskListener);
            }
        } finally {
            SecurityContextHolder.setContext(old);
        }
577

578 579
        offlineCause = null;

580 581 582
        // update the data structure atomically to prevent others from seeing a channel that's not properly initialized yet
        synchronized(channelLock) {
            if(this.channel!=null) {
583
                // check again. we used to have this entire method in a big synchronization block,
584 585 586 587 588 589 590 591 592 593 594
                // but Channel constructor blocks for an external process to do the connection
                // if CommandLauncher is used, and that cannot be interrupted because it blocks at InputStream.
                // so if the process hangs, it hangs the thread in a lock, and since Hudson will try to relaunch,
                // we'll end up queuing the lot of threads in a pseudo deadlock.
                // This implementation prevents that by avoiding a lock. HUDSON-1705 is likely a manifestation of this.
                channel.close();
                throw new IllegalStateException("Already connected");
            }
            isUnix = _isUnix;
            numRetryAttempt = 0;
            this.channel = channel;
595
            this.absoluteRemoteFs = remoteFS;
596
            defaultCharset = Charset.forName(defaultCharsetName);
597 598 599 600

            synchronized (statusChangeLock) {
                statusChangeLock.notifyAll();
            }
601
        }
602 603 604 605 606 607 608 609
        old = ACL.impersonate(ACL.SYSTEM);
        try {
            for (ComputerListener cl : ComputerListener.all()) {
                cl.onOnline(this,taskListener);
            }
        } finally {
            SecurityContextHolder.setContext(old);
        }
610
        log.println("Agent successfully connected and online");
611
        Jenkins.getInstance().getQueue().scheduleMaintenance();
612 613 614
    }

    @Override
615
    public Channel getChannel() {
616 617 618 619 620 621 622 623 624 625 626
        return channel;
    }

    public Charset getDefaultCharset() {
        return defaultCharset;
    }

    public List<LogRecord> getLogRecords() throws IOException, InterruptedException {
        if(channel==null)
            return Collections.emptyList();
        else
627
            return channel.call(new SlaveLogFetcher());
628 629
    }

630
    @RequirePOST
631 632 633
    public HttpResponse doDoDisconnect(@QueryParameter String offlineMessage) throws IOException, ServletException {
        if (channel!=null) {
            //does nothing in case computer is already disconnected
634
            checkPermission(DISCONNECT);
635
            offlineMessage = Util.fixEmptyAndTrim(offlineMessage);
636
            disconnect(new OfflineCause.UserCause(User.current(), offlineMessage));
637 638
        }
        return new HttpRedirect(".");
639 640 641
    }

    @Override
642 643
    public Future<?> disconnect(OfflineCause cause) {
        super.disconnect(cause);
K
kohsuke 已提交
644
        return Computer.threadPoolForRemoting.submit(new Runnable() {
645 646 647
            public void run() {
                // do this on another thread so that any lengthy disconnect operation
                // (which could be typical) won't block UI thread.
648 649 650
                launcher.beforeDisconnect(SlaveComputer.this, taskListener);
                closeChannel();
                launcher.afterDisconnect(SlaveComputer.this, taskListener);
651 652 653 654
            }
        });
    }

655
    @RequirePOST
656 657
    public void doLaunchSlaveAgent(StaplerRequest req, StaplerResponse rsp) throws IOException, ServletException {
        if(channel!=null) {
658
            req.getView(this,"already-launched.jelly").forward(req, rsp);
659 660 661
            return;
        }

K
kohsuke 已提交
662
        connect(true);
663 664 665 666 667 668 669 670 671 672 673

        // TODO: would be nice to redirect the user to "launching..." wait page,
        // then spend a few seconds there and poll for the completion periodically.
        rsp.sendRedirect("log");
    }

    public void tryReconnect() {
        numRetryAttempt++;
        if(numRetryAttempt<6 || (numRetryAttempt%12)==0) {
            // initially retry several times quickly, and after that, do it infrequently.
            logger.info("Attempting to reconnect "+nodeName);
K
kohsuke 已提交
674
            connect(true);
675 676 677 678
        }
    }

    /**
679
     * Serves jar files for JNLP agents.
680
     *
M
mindless 已提交
681
     * @deprecated since 2008-08-18.
682
     *      This URL binding is no longer used and moved up directly under to {@link jenkins.model.Jenkins},
683
     *      but it's left here for now just in case some old JNLP agents request it.
684
     */
685
    @Deprecated
686 687 688 689
    public Slave.JnlpJar getJnlpJars(String fileName) {
        return new Slave.JnlpJar(fileName);
    }

K
Kohsuke Kawaguchi 已提交
690
    @WebMethod(name="slave-agent.jnlp")
691 692
    public HttpResponse doSlaveAgentJnlp(StaplerRequest req, StaplerResponse res) throws IOException, ServletException {
        return new EncryptedSlaveAgentJnlpFile(this, "slave-agent.jnlp.jelly", getName(), CONNECT);
K
Kohsuke Kawaguchi 已提交
693 694
    }

695 696 697 698
    @Override
    protected void kill() {
        super.kill();
        closeChannel();
699 700 701 702 703
        try {
            log.close();
        } catch (IOException x) {
            LOGGER.log(Level.WARNING, "Failed to close agent log", x);
        }
704 705

        try {
706
            Util.deleteRecursive(getLogDir());
707
        } catch (IOException ex) {
708
            logger.log(Level.WARNING, "Unable to delete agent logs", ex);
709
        }
710 711 712
    }

    public RetentionStrategy getRetentionStrategy() {
713
        Slave n = getNode();
714
        return n==null ? RetentionStrategy.INSTANCE : n.getRetentionStrategy();
715 716 717 718 719 720 721
    }

    /**
     * If still connected, disconnect.
     */
    private void closeChannel() {
        // TODO: race condition between this and the setChannel method.
722 723 724 725 726 727 728
        Channel c;
        synchronized (channelLock) {
            c = channel;
            channel = null;
            absoluteRemoteFs = null;
            isUnix = null;
        }
729 730 731 732 733 734
        if (c != null) {
            try {
                c.close();
            } catch (IOException e) {
                logger.log(Level.SEVERE, "Failed to terminate channel to " + getDisplayName(), e);
            }
735
            for (ComputerListener cl : ComputerListener.all())
736
                cl.onOffline(this, offlineCause);
737 738 739 740
        }
    }

    @Override
741
    protected void setNode(final Node node) {
742
        super.setNode(node);
K
kohsuke 已提交
743
        launcher = grabLauncher(node);
744

745
        // maybe the configuration was changed to relaunch the agent, so try to re-launch now.
K
kohsuke 已提交
746 747
        // "constructed==null" test is an ugly hack to avoid launching before the object is fully
        // constructed.
748
        if(constructed!=null) {
749 750 751 752 753 754 755 756
            if (node instanceof Slave) {
                Queue.withLock(new Runnable() {
                    @Override
                    public void run() {
                        ((Slave)node).getRetentionStrategy().check(SlaveComputer.this);
                    }
                });
            } else {
757
                connect(false);
758
            }
759
        }
K
kohsuke 已提交
760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775
    }

    /**
     * Grabs a {@link ComputerLauncher} out of {@link Node} to keep it in this {@link Computer}.
     * The returned launcher will be set to {@link #launcher} and used to carry out the actual launch operation.
     *
     * <p>
     * Subtypes that needs to decorate {@link ComputerLauncher} can do so by overriding this method.
     * This is useful for {@link SlaveComputer}s for clouds for example, where one normally needs
     * additional pre-launch step (such as waiting for the provisioned node to become available)
     * before the user specified launch step (like SSH connection) kicks in.
     *
     * @see ComputerLauncherFilter
     */
    protected ComputerLauncher grabLauncher(Node node) {
        return ((Slave)node).getLauncher();
776 777
    }

778
    /**
779
     * Get the agent version
780 781 782 783 784 785 786 787 788 789 790 791
     */
    public String getSlaveVersion() throws IOException, InterruptedException {
        return channel.call(new SlaveVersion());
    }

    /**
     * Get the OS description.
     */
    public String getOSDescription() throws IOException, InterruptedException {
        return channel.call(new DetectOS()) ? "Unix" : "Windows";
    }

792 793
    private static final Logger logger = Logger.getLogger(SlaveComputer.class.getName());

794
    private static final class SlaveVersion extends MasterToSlaveCallable<String,IOException> {
795 796 797 798 799
        public String call() throws IOException {
            try { return Launcher.VERSION; }
            catch (Throwable ex) { return "< 1.335"; } // Older slave.jar won't have VERSION
        }
    }
800
    private static final class DetectOS extends MasterToSlaveCallable<Boolean,IOException> {
801 802 803 804 805
        public Boolean call() throws IOException {
            return File.pathSeparatorChar==':';
        }
    }

806
    private static final class AbsolutePath extends MasterToSlaveCallable<String,IOException> {
807 808 809

        private static final long serialVersionUID = 1L;

810 811 812 813 814 815 816 817 818 819 820
        private final String relativePath;

        private AbsolutePath(String relativePath) {
            this.relativePath = relativePath;
        }

        public String call() throws IOException {
            return new File(relativePath).getAbsolutePath();
        }
    }

821
    private static final class DetectDefaultCharset extends MasterToSlaveCallable<String,IOException> {
822 823 824 825 826 827
        public String call() throws IOException {
            return Charset.defaultCharset().name();
        }
    }

    /**
828 829
     * Puts the {@link #SLAVE_LOG_HANDLER} into a separate class so that loading this class
     * in JVM doesn't end up loading tons of additional classes.
830
     */
831 832
    static final class LogHolder {
        /**
833
         * This field is used on each agent to record logs on the agent.
834
         */
835
        static RingBufferLogHandler SLAVE_LOG_HANDLER;
836
    }
837

838
    private static class SlaveInitializer extends MasterToSlaveCallable<Void,RuntimeException> {
839 840 841 842 843 844
        final int ringBufferSize;

        public SlaveInitializer(int ringBufferSize) {
            this.ringBufferSize = ringBufferSize;
        }

845
        public Void call() {
846 847
            SLAVE_LOG_HANDLER = new RingBufferLogHandler(ringBufferSize);

848 849 850
            // avoid double installation of the handler. JNLP slaves can reconnect to the master multiple times
            // and each connection gets a different RemoteClassLoader, so we need to evict them by class name,
            // not by their identity.
K
Kohsuke Kawaguchi 已提交
851
            for (Handler h : LOGGER.getHandlers()) {
852
                if (h.getClass().getName().equals(SLAVE_LOG_HANDLER.getClass().getName()))
K
Kohsuke Kawaguchi 已提交
853
                    LOGGER.removeHandler(h);
854
            }
K
Kohsuke Kawaguchi 已提交
855
            LOGGER.addHandler(SLAVE_LOG_HANDLER);
856

K
Kohsuke Kawaguchi 已提交
857
            // remove Sun PKCS11 provider if present. See http://wiki.jenkins-ci.org/display/JENKINS/Solaris+Issue+6276483
858 859 860 861 862 863
            try {
                Security.removeProvider("SunPKCS11-Solaris");
            } catch (SecurityException e) {
                // ignore this error.
            }

864
            Channel.current().setProperty("slave",Boolean.TRUE); // indicate that this side of the channel is the slave side.
865

866 867 868
            return null;
        }
        private static final long serialVersionUID = 1L;
869
        private static final Logger LOGGER = Logger.getLogger("");
870
    }
871 872 873

    /**
     * Obtains a {@link VirtualChannel} that allows some computation to be performed on the master.
874 875 876
     * This method can be called from any thread on the master, or from agent (more precisely,
     * it only works from the remoting request-handling thread in agents, which means if you've started
     * separate thread on agents, that'll fail.)
877 878 879 880 881
     *
     * @return null if the calling thread doesn't have any trace of where its master is.
     * @since 1.362
     */
    public static VirtualChannel getChannelToMaster() {
882
        if (Jenkins.getInstanceOrNull()!=null) // check if calling thread is on master or on slave
K
Kohsuke Kawaguchi 已提交
883
            return FilePath.localChannel;
884

885
        // if this method is called from within the agent computation thread, this should work
886
        Channel c = Channel.current();
887
        if (c!=null && Boolean.TRUE.equals(c.getProperty("slave")))
888 889 890 891
            return c;

        return null;
    }
892

893 894 895 896 897 898 899
    /**
     * Helper method for Jelly.
     */
    public static List<SlaveSystemInfo> getSystemInfoExtensions() {
        return SlaveSystemInfo.all();
    }

900
    private static class SlaveLogFetcher extends MasterToSlaveCallable<List<LogRecord>,RuntimeException> {
901 902 903 904
        public List<LogRecord> call() {
            return new ArrayList<LogRecord>(SLAVE_LOG_HANDLER.getView());
        }
    }
905

906 907 908
    // use RingBufferLogHandler class name to configure for backward compatibility
    private static final int DEFAULT_RING_BUFFER_SIZE = SystemProperties.getInteger(RingBufferLogHandler.class.getName() + ".defaultSize", 256);

909
    private static final Logger LOGGER = Logger.getLogger(SlaveComputer.class.getName());
910
}