2019-04-24 17:45:19 +00:00
|
|
|
/*
|
2020-03-27 01:26:37 +00:00
|
|
|
Copyright 2016-2020 Balena
|
2019-04-24 17:45:19 +00:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
2020-02-27 12:38:50 +00:00
|
|
|
import type { ContainerInfo } from 'dockerode';
|
2020-05-04 14:57:23 +00:00
|
|
|
import { stripIndent } from '../lazy';
|
2019-04-24 17:45:19 +00:00
|
|
|
|
|
|
|
export interface DeviceSSHOpts {
|
|
|
|
address: string;
|
|
|
|
port?: number;
|
2020-03-31 13:50:09 +00:00
|
|
|
forceTTY?: boolean;
|
2019-04-24 17:45:19 +00:00
|
|
|
verbose: boolean;
|
|
|
|
service?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export const deviceContainerEngineBinary = `$(if [ -f /usr/bin/balena ]; then echo "balena"; else echo "docker"; fi)`;
|
|
|
|
|
|
|
|
export async function performLocalDeviceSSH(
|
|
|
|
opts: DeviceSSHOpts,
|
|
|
|
): Promise<void> {
|
2020-06-30 12:50:46 +00:00
|
|
|
const { escapeRegExp, reduce } = await import('lodash');
|
2020-07-01 23:50:32 +00:00
|
|
|
const { spawnSshAndThrowOnError } = await import('../ssh');
|
2020-03-27 01:26:37 +00:00
|
|
|
const { ExpectedError } = await import('../../errors');
|
2019-04-24 17:45:19 +00:00
|
|
|
|
|
|
|
let command = '';
|
|
|
|
|
|
|
|
if (opts.service != null) {
|
|
|
|
// Get the containers which are on-device. Currently we
|
|
|
|
// are single application, which means we can assume any
|
|
|
|
// container which fulfills the form of
|
|
|
|
// $serviceName_$appId_$releaseId is what we want. Once
|
|
|
|
// we have multi-app, we should show a dialog which
|
|
|
|
// allows the user to choose the correct container
|
|
|
|
|
|
|
|
const Docker = await import('dockerode');
|
|
|
|
const docker = new Docker({
|
|
|
|
host: opts.address,
|
|
|
|
port: 2375,
|
|
|
|
});
|
|
|
|
|
2020-10-28 00:13:34 +00:00
|
|
|
const regex = new RegExp(`(^|\\/)${escapeRegExp(opts.service)}_\\d+_\\d+`);
|
2019-04-24 17:45:19 +00:00
|
|
|
const nameRegex = /\/?([a-zA-Z0-9_]+)_\d+_\d+/;
|
|
|
|
let allContainers: ContainerInfo[];
|
|
|
|
try {
|
|
|
|
allContainers = await docker.listContainers();
|
|
|
|
} catch (_e) {
|
2020-03-27 01:26:37 +00:00
|
|
|
throw new ExpectedError(stripIndent`
|
2019-04-24 17:45:19 +00:00
|
|
|
Could not access docker daemon on device ${opts.address}.
|
|
|
|
Please ensure the device is in local mode.`);
|
|
|
|
}
|
|
|
|
|
|
|
|
const serviceNames: string[] = [];
|
2020-10-28 00:13:34 +00:00
|
|
|
const containers: Array<{ id: string; name: string }> = [];
|
|
|
|
for (const container of allContainers) {
|
|
|
|
for (const name of container.Names) {
|
|
|
|
if (regex.test(name)) {
|
|
|
|
containers.push({ id: container.Id, name });
|
|
|
|
break;
|
2019-04-24 17:45:19 +00:00
|
|
|
}
|
2020-10-28 00:13:34 +00:00
|
|
|
const match = name.match(nameRegex);
|
|
|
|
if (match) {
|
|
|
|
serviceNames.push(match[1]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-04-24 17:45:19 +00:00
|
|
|
if (containers.length === 0) {
|
2020-03-27 01:26:37 +00:00
|
|
|
throw new ExpectedError(
|
2019-04-24 17:45:19 +00:00
|
|
|
`Could not find a service on device with name ${opts.service}. ${
|
|
|
|
serviceNames.length > 0
|
|
|
|
? `Available services:\n${reduce(
|
|
|
|
serviceNames,
|
|
|
|
(str, name) => `${str}\t${name}\n`,
|
|
|
|
'',
|
|
|
|
)}`
|
|
|
|
: ''
|
|
|
|
}`,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if (containers.length > 1) {
|
2020-03-27 01:26:37 +00:00
|
|
|
throw new ExpectedError(stripIndent`
|
2020-10-28 00:13:34 +00:00
|
|
|
Found more than one container matching service name "${opts.service}":
|
|
|
|
${containers.map((container) => container.name).join(', ')}
|
|
|
|
Use different service names to avoid ambiguity.
|
2019-04-24 17:45:19 +00:00
|
|
|
`);
|
|
|
|
}
|
|
|
|
|
2020-10-28 00:13:34 +00:00
|
|
|
const containerId = containers[0].id;
|
2020-03-27 01:26:37 +00:00
|
|
|
const shellCmd = `/bin/sh -c "if [ -e /bin/bash ]; then exec /bin/bash; else exec /bin/sh; fi"`;
|
2020-03-29 23:19:07 +00:00
|
|
|
// stdin (fd=0) is not a tty when data is piped in, for example
|
|
|
|
// echo 'ls -la; exit;' | balena ssh 192.168.0.20 service1
|
|
|
|
// See https://www.balena.io/blog/balena-monthly-roundup-january-2020/#charliestipsntricks
|
|
|
|
// https://assets.balena.io/newsletter/2020-01/pipe.png
|
2020-03-31 13:50:09 +00:00
|
|
|
const isTTY = !!opts.forceTTY || (await import('tty')).isatty(0);
|
|
|
|
const ttyFlag = isTTY ? '-t' : '';
|
2020-03-29 23:19:07 +00:00
|
|
|
command = `${deviceContainerEngineBinary} exec -i ${ttyFlag} ${containerId} ${shellCmd}`;
|
2019-04-24 17:45:19 +00:00
|
|
|
}
|
|
|
|
|
2020-07-01 23:50:32 +00:00
|
|
|
return spawnSshAndThrowOnError([
|
2020-03-27 01:26:37 +00:00
|
|
|
...(opts.verbose ? ['-vvv'] : []),
|
|
|
|
'-t',
|
|
|
|
...['-p', opts.port ? opts.port.toString() : '22222'],
|
|
|
|
...['-o', 'LogLevel=ERROR'],
|
|
|
|
...['-o', 'StrictHostKeyChecking=no'],
|
|
|
|
...['-o', 'UserKnownHostsFile=/dev/null'],
|
|
|
|
`root@${opts.address}`,
|
|
|
|
...(command ? [command] : []),
|
|
|
|
]);
|
2019-04-24 17:45:19 +00:00
|
|
|
}
|