/inc/ssh.inc.php (d469a611e29940519a2e086e84b18f7cfaea1549) (11525 bytes) (mode 100644) (type blob)

<?php
//
// Description: This file deals with commands accepted by ssh
//
require_once(__DIR__ . '/sql.inc.php');
require_once(__DIR__ . '/state.inc.php');
require_once(__DIR__ . '/prof.inc.php');
require_once(__DIR__ . '/repo.inc.php');
require_once(__DIR__ . '/totp.inc.php');
require_once(__DIR__ . '/api.inc.php');
require_once(__DIR__ . '/stats.inc.php');

$rg_ssh_error = '';
function rg_ssh_set_error($str)
{
	global $rg_ssh_error;

	$rg_ssh_error = $str;
	rg_log('ssh_set_error: ' . $str);
}

function rg_ssh_error()
{
	global $rg_ssh_error;

	return $rg_ssh_error;
}

function rg_ssh_status($db)
{
	rg_log('ssh_status');

	echo 'Here will be the status.' . "\n";

	// also details about payments, warn if disk space is low etc.
}

/*
 * List repos
 */
function rg_ssh_repos($db)
{
	rg_log('ssh_repos');

	$ui_login = rg_ui_login();

	$params = array('uid' => $ui_login['uid']);
	$sql = 'SELECT * FROM repos'
		. ' WHERE uid = @@uid@@'
		. ' AND deleted = 0'
		. ' ORDER BY name, itime';
	$res = rg_sql_query_params($db, $sql, $params);
	$rows = rg_sql_num_rows($res);
	if ($rows > 0) {
		echo 'Repositories (creation (UTC), disk used, name):' . "\n";
		while (($row = rg_sql_fetch_array($res))) {
			$d = rg_1024($row['disk_used_mb'] * 1024 * 1024);
			echo gmdate('Y-m-d', $row['itime'])
				. ' ' . str_pad($d, 15)
				. ' ' . $row['name']
				. "\n";
		}
	} else {
		echo 'You have no repository.' . "\n";
	}
	rg_sql_free_result($res);
}

/*
 * Info about a repo
 */
function rg_ssh_repo($db, $paras)
{
	rg_log('ssh_repo: ' . rg_array2string($paras));

	if (empty($paras)) {
		fwrite(STDERR, 'Please specify the repo name.' . "\n");
		exit(0);
	}

	$ui_login = rg_ui_login();

	$repo_name = trim($paras[0]);

	$ri = rg_repo_info($db, 0, $ui_login['uid'], $repo_name);
	if ($ri['exists'] != 1) {
		fwrite(STDERR, 'Error: unknown repo.' . "\n");
		exit(0);
	}

	echo 'Repo:		' . $ri['name'] . "\n";
	echo 'Repo type:	' . ($ri['public'] == 1 ? 'public' : 'private') . "\n";
	echo 'Creation time:	' .
		gmdate('Y-m-d', $ri['itime']) . ' UTC' . "\n";
	echo 'Disk used:	' .
		rg_1024($ri['disk_used_mb'] * 1024 * 1024) . "\n";

	if ($ri['master'] > 0) {
		$mri = rg_repo_info($db, $ri['master'], 0, '');
		if ($mri !== FALSE) {
			echo 'Master:		' . $mri['name'] . "\n";
		} else {
			echo 'Master:		' . 'Error getting info' . "\n";
		}
	}

	echo 'Description:' . "\n";
	$_d = explode("\n", $ri['description']);
	foreach ($_d as $_line)
		echo ' ' . ' ' . $_line . "\n";

	$ls = rg_repo_lock_status($db, $ri['repo_id']);
	if ($ls['ok'] == 1) {
		if ($ls['status'] == 0) {
			echo 'Repository is not locked.' . "\n";
		} else {
			$_ui = rg_user_info($db, $ls['uid'], '', '');
			if ($_ui['exists'] == 1)
				$_u = $_ui['username'];
			else
				$_u = '?';

			$reason = '';
			$_r = explode("\n", $ls['reason']);
			foreach ($_r as $_line)
				$reason .= ' ' . ' ' . $_line . "\n";

			echo 'Repository has been locked by user ' . $_u
				. ' at '
				. gmdate('Y-m-d H:i', $ls['itime']) . ' UTC.'
				. ' Reason:' . "\n"
				. $reason . "\n";
		}
	} else {
		fwrite(STDERR, 'Error: cannot get info about the'
			. ' lock status!' . "\n");
	}
}

/*
 * Helper for totp_verify_ip - mostly to not duplicate error messages
 */
function rg_ssh_totp_verify_ip($db, $uid, $ip)
{
	$ret = FALSE;
	while (1) {
		$r = rg_totp_verify_ip($db, $uid, $ip);
		if ($r['ok'] !== 1) {
			fwrite(STDERR, 'Error: ' . rg_totp_error() . ".\n");
			break;
		}

		if ($r['enrolled'] == 0) {
			echo 'Info: You are not enrolled.' . "\n";
			break;
		}

		if (empty($r['ip_list'])) {
			fwrite(STDERR, 'Error: ' . rg_totp_error() . ".\n");
			break;
		}

		$ret = $r['ip_list'];
		break;
	}

	return $ret;
}

/*
 * Deal with TOTP stuff
 */
function rg_ssh_totp($db, $paras)
{
	global $rg_ssh_host;

	rg_prof_start('ssh_totp');

	rg_log_enter('ssh_totp paras=' . rg_array2string($paras));

	$ui_login = rg_ui_login();
	$cmd = empty($paras) ? '' : array_shift($paras);
	switch ($cmd) {
	case 'enroll': // this has nothing to do with scratch codes
		if (empty($paras)) {
			$secret = rg_totp_base32_generate(16);

			$r = rg_totp_enroll($db, $ui_login['uid'], 'SSH',
				$secret, rg_ip(), 'f');
			if ($r !== TRUE) {
				fwrite(STDERR, 'Error: ' . rg_totp_error() . ".\n");
				break;
			}

			echo 'Scan the following code with the mobile application:' . "\n";
			echo rg_totp_text($secret) . "\n";
			echo 'or manually enter the following code: ' . $secret . ".\n";
			echo 'To finish the enrollment you will have to confirm';
			echo ' it by running the following command:';
			echo ' ssh rocketgit@' . $rg_ssh_host
				. ' totp enroll <6_digits_code_generated_by_device>' . "\n";
			break;
		}

		$token = empty($paras) ? '' : array_shift($paras);

		$v = rg_totp_device_verify($db, $ui_login['uid'], $token);
		if ($v['token_valid'] != 1) {
			fwrite(STDERR, 'Error: ' . rg_totp_error() . ".\n");
			break;
		}

		echo 'Success!' . "\n";
		break;

	case 'val':
		$token = empty($paras) ? '' : array_shift($paras);

		$days = 0;
		$hours = 0;
		$minutes = 0;
		if (empty($paras)) {
			$hours = 1;
		} else {
			$s_expire = empty($paras) ? '' : array_shift($paras);
			$val = intval($s_expire);
			if (stristr($s_expire, 'y'))
				$days = 366 * $val;
			else if (stristr($s_expire, 'w'))
				$days = 7 * $val;
			else if (stristr($s_expire, 'd'))
				$days = $val;
			else if (stristr($s_expire, 'h'))
				$hours = $val;
			else
				$minutes = $val;
		}
		//rg_log("token=$token days=$days hours=$hours minutes=$minutes");

		$v = rg_totp_verify_any($db, $ui_login['uid'], $token);
		if ($v['token_valid'] != 1) {
			fwrite(STDERR, 'Error: ' . rg_totp_error() . ".\n");
			break;
		}

		$expire_ts = gmmktime(gmdate('H') + $hours,
			gmdate('i') + $minutes, gmdate('s'), gmdate('m'),
			gmdate('d') + $days, gmdate('Y'));
		$r = rg_totp_add_ip($db, $ui_login['uid'], $v['id'],
			rg_ip(), $expire_ts);
		if ($r === FALSE) {
			fwrite(STDERR, 'Error: ' . rg_totp_error() . ".\n");
			break;
		}

		echo 'Success! IP ' . rg_ip() . ' added and is valid till '
			. gmdate('Y-m-d H:i:s', $expire_ts) . ' (UTC).' . "\n";
		break;

	case 'list-val':
		$r = rg_ssh_totp_verify_ip($db, $ui_login['uid'], rg_ip());
		if ($r === FALSE)
			break;

		echo 'Insert date (UTC)     Expire date (UTC)     IP' . "\n";
		foreach ($r as $t) {
			echo gmdate('Y-m-d H:i:s', $t['itime'])
				. '   ' . gmdate('Y-m-d H:i:s', $t['expire'])
				. '   ' . $t['ip']
				. "\n";
		}
		echo 'Done!' . "\n";
		break;

	case 'unenroll':
		$token = empty($paras) ? '' : array_shift($paras);

		$v = rg_totp_verify_any($db, $ui_login['uid'], $token);
		if ($v['token_valid'] != 1) {
			fwrite(STDERR, 'Error: ' . rg_totp_error() . ".\n");
			break;
		}

		$r = rg_totp_unenroll($db, $ui_login['uid']);
		if ($r !== TRUE) {
			fwrite(STDERR, 'Error: ' . rg_totp_error() . ".\n");
			break;
		}

		echo 'You are now unenrolled.' . "\n";
		break;

	case 'remove-device':
		$token = empty($paras) ? '' : array_shift($paras);

		$v = rg_totp_device_verify($db, $ui_login['uid'], $token);
		if ($v['token_valid'] != 1) {
			fwrite(STDERR, 'Error: ' . rg_totp_error() . ".\n");
			break;
		}

		$a = array($v['id'] => '');
		$r = rg_totp_remove($db, $ui_login['uid'], $a);
		if ($r !== TRUE) {
			fwrite(STDERR, 'Error: ' . rg_totp_error() . ".\n");
			break;
		}

		echo 'Success!' . "\n";
		break;

	case 'inval':
		if (empty($paras)) {
			fwrite(STDERR, 'Error: Please specify the IP address'
				. ' or \'all\'.' . "\n");
			break;
		}

		$del_ip = empty($paras) ? '' : array_shift($paras);

		if (rg_ssh_totp_verify_ip($db, $ui_login['uid'], rg_ip()) === FALSE)
			break;

		$r = rg_totp_del_ip($db, $ui_login['uid'], $del_ip);
		if ($r['found'] != 1) {
			fwrite(STDERR, 'Error: ' . rg_totp_error() . ".\n");
			break;
		}

		echo 'Success!' . "\n";
		break;

	default:
		fwrite(STDERR, "\n"
		. 'Posible TOTP commands:' . "\n"
		. ' enroll <token> - adds a new device in the system' . "\n"
		. ' val <token> [X(y|w|d|h|m|s)] - adds your IP to the allow list for X time' . "\n"
		. '   the default is 1 hour; X is a number (defauls is \'minutes\')' . "\n"
		. '   y=years, w=weeks, d=days, h=hours, m=minutes, and s=seconds' . "\n"
		. ' list-val - lists the already validated IPs' . "\n"
		. ' inval ip|all - invalidates IP address(es)' . "\n"
		. ' remove-device <token> - removes a device from TOTP system' . "\n"
		. ' unenroll <token> - removes all devices and scratch codes from TOTP system' . "\n"
		. "\n"
		. 'Notes:' . "\n"
		. ' - <token> means a code generated by mobile device or a scratch code' . "\n"
		);
		break;
	}

	rg_log_exit();
	rg_prof_end('ssh_totp');
}

/*
 * Deal with API
 */
function rg_ssh_api($db, $paras)
{
	rg_prof_start('ssh_api');
	rg_log_enter('ssh_api paras=' . rg_array2string($paras));

	$cmd = empty($paras) ? '' : array_shift($paras);
	rg_stats_conns_set('type', 'api-over-ssh');

	$ret = array();
	while (1) {
		if (empty($cmd)) {
			$ret['error'] = 'missing API command';
			break;
		}

		$a = array();
		foreach ($paras as $t) {
			$v = explode('=', $t, 2);
			if (count($v) != 2) {
				$ret['error'] = 'invalid para (no =)';
				break;
			}

			$k = trim($v[0]);
			$a[$k] = trim($v[1]);
		}
		if (isset($ret['error']))
			break;

		$a['cmd'] = $cmd;
		$x = array();
		$x['ip'] = rg_ip();
		$ret = array_merge($ret, rg_api($db, $x, $a));
		break;
	}

	rg_log_debug('ret: ' . print_r($ret, TRUE));

	rg_log_exit();
	rg_prof_end('ssh_api');
	echo json_encode($ret, JSON_PRETTY_PRINT) . "\n";
}

/*
 * Returns TRUE if we need to stop execution
 */
function rg_ssh_dispatch($db, $orig_cmd)
{
	rg_log('ssh_dispatch orig_cmd=[' . $orig_cmd . ']');

	$paras = explode(' ', $orig_cmd);
	$cmd = empty($paras) ? '' : array_shift($paras);

	// some commands are not executed here
	switch ($cmd) {
	case 'git-upload-pack'; return;
	case 'git-receive-pack': return;
	}

	// First, test if the IP is validated
	switch ($cmd) {
	case '': break;
	case 'totp': break; // totp will verify the ip only for some commands
	default:
		$ui_login = rg_ui_login();
		$r = rg_totp_verify_ip($db, $ui_login['uid'], rg_ip());
		if (($r['ok'] !== 1)
			|| ($r['enrolled'] && empty($r['ip_list']))) {
			fwrite(STDERR, 'Error: ' . rg_totp_error() . ".\n");
			return TRUE; // = we must exit'
		}
		break;
	}

	// Now, we can safely execute the command
	switch ($cmd) {
		case 'status':	rg_ssh_status($db); return TRUE;
		case 'repos':	rg_ssh_repos($db); return TRUE;
		case 'repo':	rg_ssh_repo($db, $paras); return TRUE;
		case 'totp':	rg_ssh_totp($db, $paras); return TRUE;
		case 'api':	rg_ssh_api($db, $paras); return TRUE;
		case '':
			fwrite(STDERR, "\n"
				. 'Available commmands:' . "\n"
				. ' status - show some status about the user' . "\n"
				. ' repos  - list repos and information about them' . "\n"
				. ' repo   - list info about a repo' . "\n"
				. ' totp   - two-factor authentication commands' . "\n"
				. ' api    - API calls' . "\n");
			return TRUE;
	}

	return FALSE; // = continue execution
}

/*
 * Loads data for graphs
 * @unit - interval on which a sum is made
 */
function rg_ssh_data($db, $type, $start, $end, $unit, $mode)
{
	$params = array('start' => $start, 'end' => $end);
	switch ($type) {
	case 'create_key':
		$q = 'SELECT itime FROM keys'
			. ' WHERE itime >= @@start@@ AND itime <= @@end@@';
		break;
	default:
		rg_internal_error('invalid data');
		return FALSE;
	}

	$ret = rg_graph_query($db, $start, $end, $unit, $mode, $q, $params, '');
	if ($ret === FALSE)
		rg_ssh_set_error(rg_graph_error());

	return $ret;
}



Mode Type Size Ref File
100644 blob 9 f3c7a7c5da68804a1bdf391127ba34aed33c3cca .exclude
100644 blob 108 acc2186b1d357966e09df32afcea14933f5f0c78 .gitignore
100644 blob 375 1f425bcd2049c526744d449511094fc045ceac74 AUTHORS
100644 blob 1847 fd1f7a627adc85dec9ebd72ae9e6b4c941b82f8f History.txt
100644 blob 34520 dba13ed2ddf783ee8118c6a581dbf75305f816a3 LICENSE
100644 blob 3624 1c4ccf9cceb2e56ae71334442aff3183b242c333 Makefile.in
100644 blob 5325 96c40d868ce10b715299085ccffb30f96a730cf3 README
100644 blob 190331 0418946bd5fc97da80f0bbd2e918c657536c01e6 TODO
100644 blob 1294 f22911eb777f0695fcf81ad686eac133eb11fcc4 TODO-plans
100644 blob 203 a2863c67c3da44126b61a15a6f09738c25e0fbe0 TODO.perf
100644 blob 967 56bbaa7c937381fb10a2907b6bbe056ef8cc824a TODO.vm
040000 tree - 21928e906ad2907a55c2e81c2a8b0502b586b8a0 artwork
100644 blob 5328 d5be4cc3f15d059ad8d267d800c602e9774816a8 compare.csv
100755 blob 30 92c4bc48245c00408cd7e1fd89bc1a03058f4ce4 configure
040000 tree - 811af39b8be55c3a36147dd06b040e86de4e9d4a debian
040000 tree - 7108e9538d908ff384482155efcaef836a057a2c docker
040000 tree - f67d3605efbd6422a8acdd953578991139266391 docs
100755 blob 18252 e2438615edba7066a730ed6a796a5302263f1f37 duilder
100644 blob 536 b791516f9ec08c038e61269e0c5f38446a61e59b duilder.conf
040000 tree - e330b65f3c3eea427853842a05410579de6175bd hooks
040000 tree - e6ef0396dd7f12664ea681377807bdedf09ad13f inc
040000 tree - e255ce234c3993998edc12bc7e93fff555376eda misc
100644 blob 6012 7cf5090db19ef7b7a1a4d962f2588464ff4f1c1f rocketgit.spec
040000 tree - 85421cbfb018ff4b0eebb1741e2dcfcc72f81ada root
040000 tree - 870e96f0afc7d85c97505a878609d386f81748d8 samples
040000 tree - 589b9039f8bbb597747e4e78cdfc26be35ead352 scripts
040000 tree - 454044f7e286fe13ec18598fce6b613190f52e5e selinux
100755 blob 256 462ccd108c431f54e380cdac2329129875a318b5 spell_check.sh
040000 tree - d9260d3cf0d6490be720312893600a8041bf991b techdocs
040000 tree - 5dbc11970335b2e208d92e525d2b6ef49dcce3c3 tests
040000 tree - e810d7397575886ef495708d571eb3675f6928ba tools
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/catalinux/rocketgit

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/catalinux/rocketgit

Clone this repository using git:
git clone git://git.rocketgit.com/user/catalinux/rocketgit

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main