-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgit_stdio_client.sh
More file actions
261 lines (257 loc) · 6.43 KB
/
Copy pathgit_stdio_client.sh
File metadata and controls
261 lines (257 loc) · 6.43 KB
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
#!/bin/bash
function git-pipe-push () {
local shost spath dhost dpath opts=() args=() justafifo rc
if [ $# -ge 2 ]; then
eval $(perl -e \
'my @d = qw(s d);
for (my $i=0; $i<=1; $i++) {
if ($ARGV[$i] =~ /^(\[[0-9A-Fa-f:]+\]|[^:]+):(.*)$/) {
printf "%1\$shost=\"%2\$s\" %1\$spath=\"%3\$s\" ", $d[$i], $1, $2 || ".";
}
}' "${@:1:2}")
fi
if [ -z "$shost" -o -z "$dhost" -o "$1" = "-h" ]; then
echo "Usage: ${FUNCNAME[0]} sending-host:[path] receiving-host:[path] [git-send-pack options]" >&2
[ "$1" = "-h" ] && return 0 || return 1
else
shift 2
fi
while [ -n "$1" ]; do
case "$1" in
--*)
opts+=("$1")
;;
*)
args+=("$1")
esac
shift
done
opts+=(".")
opts+=("${args[@]}")
justafifo=$(mktemp -u /tmp/gitpipe.XXXXXX)
mkfifo "$justafifo"
rc=$?
if [ $rc -eq 0 ]; then
trap 'rm -f "$justafifo"' HUP INT QUIT TERM KILL
else
return $rc
fi
ssh $shost \
"cd \"$spath\";"\
"socat - EXEC:'git send-pack --receive-pack=\\\"socat - 5 #\\\" ${opts[@]//:/\:}',fdin=5"\
<"$justafifo" | \
ssh $dhost \
"git receive-pack \"$dpath\"" \
>"$justafifo"
rc=$?
rm -f "$justafifo"
return $rc
}
function git-pipe-fetch () {
local shost spath dhost dpath remote opts=() args=() justafifo rc
if [ $# -ge 2 ]; then
eval $(perl -e \
'my @d = qw(s d);
for (my $i=0; $i<=1; $i++) {
if ($ARGV[$i] =~ /^(\[[0-9A-Fa-f:]+\]|[^:]+):(.*)$/) {
printf "%1\$shost=\"%2\$s\" %1\$spath=\"%3\$s\" ", $d[$i], $1, $2 || ".";
}
}' "${@:1:2}")
fi
if [ -z "$shost" -o -z "$dhost" -o "$1" = "-h" ]; then
echo "Usage: ${FUNCNAME[0]} receiving-host:[path] sending-host:[path] [--remote=remote_name] [git-fetch-pack options]" >&2
[ "$1" = "-h" ] && return 0 || return 1
else
shift 2
fi
if test -n "$1" && echo "$1" | grep -q "^--remote="; then
remote="${1#--remote=}"
shift
fi
while [ -n "$1" ]; do
case "$1" in
--*)
opts+=("$1")
;;
*)
args+=("$1")
esac
shift
done
# fetch-pack apparently needs refs
if test -z "${args[*]}" && echo "${opts[*]}" | grep -qv -- "--all"; then
opts+=("--all")
fi
opts+=(".")
opts+=("${args[@]}")
justafifo=$(mktemp -u /tmp/gitpipe.XXXXXX)
mkfifo "$justafifo"
rc=$?
if [ $rc -eq 0 ]; then
trap 'rm -f "$justafifo"' HUP INT QUIT TERM KILL
else
return $rc
fi
ssh $shost \
"cd \"$spath\";"\
"export refstmp=$(mktemp -u /tmp/gitfetchpack.XXXXXXXX);"\
"socat - SYSTEM:'git fetch-pack --upload-pack=\\\"socat - 5 #\\\" ${opts[@]//:/\:} >\$refstmp',fdin=5;"\
"awk -v remote=\"${remote:-$dhost}\""\
"'\$1 ~ /^[0-9a-f]+$/ && length(\$1) == 40 {
if (\$2 == \"HEAD\") { sref = \"refs/remotes/\" remote \"/\" \$2; }
else { sref = \$2; sub(/heads/, \"remotes/\" remote, sref); };
print \"update-ref\", sref, \$1;
}' \${refstmp} | xargs -L 1 git;"\
"rm \${refstmp}"\
<"$justafifo" | \
ssh $dhost \
"git upload-pack \"$dpath\"" \
>"$justafifo"
rc=$?
rm -f "$justafifo"
return $rc
}
function git-pipe-push2 () {
local shost spath dhost dpath opts=() sudo justafifo rc
if [ $# -ge 2 ]; then
eval $(perl -e \
'my @d = qw(s d);
for (my $i=0; $i<=1; $i++) {
if ($ARGV[$i] =~ /^(\[[0-9A-Fa-f:]+\]|[^:]+):(.*)$/) {
printf "%1\$shost=\"%2\$s\" %1\$spath=\"%3\$s\" ", $d[$i], $1, $2 || ".";
}
}' "${@:1:2}")
fi
if [ -z "$shost" -o -z "$dhost" -o "$1" = "-h" ]; then
echo "Usage: ${FUNCNAME[0]} sending-host:[path] receiving-host:[path] [--sudo[=user]] [git-send-pack options]" >&2
[ "$1" = "-h" ] && return 0 || return 1
else
shift 2
fi
while [ -n "$1" ]; do
case "$1" in
--sudo*)
if [ -z "${1#--sudo}" ]; then
sudo=root
else
sudo="${1#--sudo=}"
fi
;;
*)
opts+=("$1")
;;
esac
shift
done
justafifo=$(mktemp -u /tmp/gitpipe.XXXXXX)
mkfifo "$justafifo"
rc=$?
if [ $rc -eq 0 ]; then
trap 'rm -f "$justafifo"' HUP INT QUIT TERM KILL
else
return $rc
fi
if [ -n "$sudo" ]; then
ssh $shost \
"sudo -u \"$sudo\" -- sh -c '"\
"cd \"$spath\";"\
"git pipe-send-pack ${opts[@]};"\
"'"\
<"$justafifo" | \
ssh $dhost \
"sudo -u \"$sudo\" -- sh -c '"\
"git receive-pack \"$dpath\"" \
"'"\
>"$justafifo"
else
ssh $shost \
"cd \"$spath\";"\
"git pipe-send-pack ${opts[@]};"\
<"$justafifo" | \
ssh $dhost \
"git receive-pack \"$dpath\"" \
>"$justafifo"
fi
rc=$?
rm -f "$justafifo"
return $rc
}
function git-pipe-fetch2 () {
local shost spath dhost dpath opts=() remote sudo justafifo rc
if [ $# -ge 2 ]; then
eval $(perl -e \
'my @d = qw(s d);
for (my $i=0; $i<=1; $i++) {
if ($ARGV[$i] =~ /^(\[[0-9A-Fa-f:]+\]|[^:]+):(.*)$/) {
printf "%1\$shost=\"%2\$s\" %1\$spath=\"%3\$s\" ", $d[$i], $1, $2 || ".";
}
}' "${@:1:2}")
fi
if [ -z "$shost" -o -z "$dhost" -o "$1" = "-h" ]; then
echo "Usage: ${FUNCNAME[0]} receiving-host:[path] sending-host:[path] [--remote=remote_name] [--sudo[=user]] [git-fetch-pack options]" >&2
[ "$1" = "-h" ] && return 0 || return 1
else
shift 2
fi
while [ -n "$1" ]; do
case "$1" in
--remote*)
if [ -z "${1#--remote}" ]; then
echo "missing required argument to --remote" >&2
return 1
else
remote="${1#--remote=}"
fi
;;
--sudo*)
if [ -z "${1#--sudo}" ]; then
sudo=root
else
sudo="${1#--sudo=}"
fi
;;
*)
opts+=("$1")
;;
esac
shift
done
justafifo=$(mktemp -u /tmp/gitpipe.XXXXXX)
mkfifo "$justafifo"
rc=$?
if [ $rc -eq 0 ]; then
trap 'rm -f "$justafifo"' HUP INT QUIT TERM KILL
else
return $rc
fi
if [ -n "$sudo" ]; then
ssh $shost \
"sudo -u \"$sudo\" -- sh -c '"\
"cd \"$spath\";"\
"export refstmp=$(mktemp -u /tmp/gitfetchpack.XXXXXXXX);"\
"git pipe-fetch-pack --write-refs=\${refstmp} ${opts[@]};"\
"gfp2gur.awk -v remote=\"${remote:-$dhost}\" \${refstmp} | xargs -L 1 git;"\
"rm \${refstmp}"\
"'"\
<"$justafifo" | \
ssh $dhost \
"sudo -u \"$sudo\" -- sh -c '"\
"git upload-pack \"$dpath\"" \
"'"\
>"$justafifo"
else
ssh $shost \
"cd \"$spath\";"\
"export refstmp=$(mktemp -u /tmp/gitfetchpack.XXXXXXXX);"\
"git pipe-fetch-pack --write-refs=\${refstmp} ${opts[@]};"\
"gfp2gur.awk -v remote=\"${remote:-$dhost}\" \${refstmp} | xargs -L 1 git;"\
"rm \${refstmp}"\
<"$justafifo" | \
ssh $dhost \
"git upload-pack \"$dpath\"" \
>"$justafifo"
fi
rc=$?
rm -f "$justafifo"
return $rc
}