commit a928faa132d1d2e179dcfc5d3f3210263b067ac9 from: Omar Polo via: Thomas Adam date: Fri Mar 10 21:44:31 2023 UTC dial: fix quoting for git-shell Escape the path to the repository when connecting via SSH. This is needed if the path contains spaces, quotes or other "funny" characters, but also by git-shell which requires the argument to be surrounded by single-quote characters. Issue with git-shell reported by James Cook, fix based on an initial diff by stsp@. ok stsp@ commit - 870ddae51fc1a153927d6bcaf1324ae00d6b4af4 commit + a928faa132d1d2e179dcfc5d3f3210263b067ac9 blob - 73079c85e3ece1cf8bde4a6a222b3423b80c05b9 blob + a1c36d79fc027c5d4edaac9730210cbe320a2492 --- lib/dial.c +++ lib/dial.c @@ -24,6 +24,7 @@ #include #include +#include #include #include #include @@ -204,6 +205,47 @@ done: return err; } +/* + * Escape a given path for the shell which will be started by sshd. + * In particular, git-shell is known to require single-quote characters + * around its repository path argument and will refuse to run otherwise. + */ +static const struct got_error * +escape_path(char *buf, size_t bufsize, const char *path) +{ + const char *p; + char *q; + + p = path; + q = buf; + + if (bufsize > 1) + *q++ = '\''; + + while (*p != '\0' && (q - buf < bufsize)) { + /* git escapes ! too */ + if (*p != '\'' && *p != '!') { + *q++ = *p++; + continue; + } + + if (q - buf + 4 >= bufsize) + break; + *q++ = '\''; + *q++ = '\\'; + *q++ = *p++; + *q++ = '\''; + } + + if (*p == '\0' && (q - buf + 1 < bufsize)) { + *q++ = '\''; + *q = '\0'; + return NULL; + } + + return got_error_fmt(GOT_ERR_NO_SPACE, "overlong path: %s", path); +} + const struct got_error * got_dial_ssh(pid_t *newpid, int *newfd, const char *host, const char *port, const char *path, const char *direction, int verbosity) @@ -211,12 +253,17 @@ got_dial_ssh(pid_t *newpid, int *newfd, const char *ho const struct got_error *error = NULL; int pid, pfd[2]; char cmd[64]; + char escaped_path[PATH_MAX]; const char *argv[11]; int i = 0, j; *newpid = -1; *newfd = -1; + error = escape_path(escaped_path, sizeof(escaped_path), path); + if (error) + return error; + argv[i++] = GOT_DIAL_PATH_SSH; if (port != NULL) { argv[i++] = "-p"; @@ -232,7 +279,7 @@ got_dial_ssh(pid_t *newpid, int *newfd, const char *ho argv[i++] = "--"; argv[i++] = (char *)host; argv[i++] = (char *)cmd; - argv[i++] = (char *)path; + argv[i++] = (char *)escaped_path; argv[i++] = NULL; assert(i <= nitems(argv)); blob - e3fa88deda08736ab31dd16d7515c573e3b9b808 blob + a628193de0dbc52a980b83ef2f3fd49071ce4605 --- regress/cmdline/clone.sh +++ regress/cmdline/clone.sh @@ -127,6 +127,36 @@ EOF test_done "$testroot" "$ret" } +test_clone_quoting() { + local testroot=`test_init clone_basic` + + got log -l0 -p -r "$testroot/repo" > $testroot/log-repo + + (cd "$testroot" && cp -R repo "rock'n roll.git") + + got clone -q "ssh://127.0.0.1/$testroot/rock'n roll.git" \ + "$testroot/rock-clone" + ret=$? + if [ $ret -ne 0 ]; then + echo "got clone failed unexpectedly" >&2 + test_done "$testroot" "$ret" + return 1 + fi + + got log -l0 -p -r "$testroot/rock-clone" | \ + sed 's@master, origin/master@master@g' \ + >$testroot/log-repo-clone + + cmp -s "$testroot/log-repo" "$testroot/log-repo-clone" + ret=$? + if [ $ret -ne 0 ]; then + echo "log -p output of cloned repository differs" >&2 + diff -u "$testroot/log-repo" "$testroot/log-repo-clone" + test_done "$testroot" "$ret" + fi + test_done "$testroot" "$ret" +} + test_clone_list() { local testroot=`test_init clone_list` local testurl=ssh://127.0.0.1$testroot @@ -834,6 +864,7 @@ EOF test_parseargs "$@" run_test test_clone_basic +run_test test_clone_quoting run_test test_clone_list run_test test_clone_branch run_test test_clone_all