xaizek / rocketgit (License: AGPLv3+) (since 2018-12-09)
Light and fast Git hosting solution suitable to serve both as a hub or as a personal code storage with its tickets, pull requests, API and much more.
<root> / inc / ssh.inc.php (a0ee4b1d2b127001e51b6bf0fec8a477e37bedee) (11KiB) (mode 100644) [raw]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471
<?php
//
// Description: This file deals with commands accepted by ssh
//
require_once($INC . '/sql.inc.php');
require_once($INC . '/state.inc.php');
require_once($INC . '/prof.inc.php');
require_once($INC . '/repo.inc.php');
require_once($INC . '/totp.inc.php');
require_once($INC . '/api.inc.php');
require_once($INC . '/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, $login_ui)
{
	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, $login_ui)
{
	rg_log('ssh_repos');

	$params = array('uid' => $login_ui['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, $login_ui, $paras)
{
	rg_log('ssh_repo: ' . rg_array2string($paras));

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

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

	$ri = rg_repo_info($db, 0, $login_ui['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, $ip, $login_ui, $paras)
{
	global $rg_ssh_host;

	rg_prof_start('ssh_totp');
	rg_log_enter('ssh_totp ip=' . $ip . ' uid=' . $login_ui['uid']
		. ' paras=' . rg_array2string($paras));

	$cmd = 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, $login_ui['uid'], 'SSH',
				$secret, $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 = array_shift($paras);

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

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

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

		$days = 0;
		$hours = 0;
		$minutes = 0;
		if (empty($paras)) {
			$hours = 1;
		} else {
			$s_expire = 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, $login_ui['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, $login_ui['uid'], $v['id'],
			$ip, $expire_ts);
		if ($r === FALSE) {
			fwrite(STDERR, 'Error: ' . rg_totp_error() . ".\n");
			break;
		}

		echo 'Success! IP ' . $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, $login_ui['uid'], $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 = array_shift($paras);

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

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

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

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

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

		$a = array($v['id'] => '');
		$r = rg_totp_remove($db, $login_ui['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 = array_shift($paras);

		if (rg_ssh_totp_verify_ip($db, $login_ui['uid'], $ip) === FALSE)
			break;

		$r = rg_totp_del_ip($db, $login_ui['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, $ip, $login_ui, $paras)
{
	rg_prof_start('ssh_api');
	rg_log_enter('ssh_api paras=' . rg_array2string($paras));

	$cmd = 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['login_ui'] = $login_ui;
		$x['ip'] = $ip;
		$ret = array_merge($ret, rg_api($db, $x, $a));
		break;
	}

	rg_log_ml('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, $ip, $login_ui, $orig_cmd)
{
	rg_log('ssh_dispatch orig_cmd=[' . $orig_cmd . ']');

	$paras = explode(' ', $orig_cmd);
	$cmd = 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:
		$r = rg_totp_verify_ip($db, $login_ui['uid'], $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, $login_ui); return TRUE;
		case 'repos':	rg_ssh_repos($db, $login_ui); return TRUE;
		case 'repo':	rg_ssh_repo($db, $login_ui, $paras); return TRUE;
		case 'totp':	rg_ssh_totp($db, $ip, $login_ui, $paras); return TRUE;
		case 'api':	rg_ssh_api($db, $ip, $login_ui, $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 1 AS value, 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;
}

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://code.reversed.top/user/xaizek/rocketgit

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/rocketgit

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