This repository has been archived by the owner on Nov 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 236
/
stenocurl
executable file
·81 lines (71 loc) · 2.87 KB
/
stenocurl
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
#!/bin/bash
# Copyright 2014 Google Inc. All rights reserved.
#
# 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.
# stenocurl is a simple wrapper around curl which:
# * finds where the server is based on the config
# * sets the correct flags to do client and server verification via SSL
# To run stenocurl, one must have read access to the stenographer client
# key, which generally means one must be in the 'stenographer' group.
JQ="$(which jq)"
if [ -z "$JQ" ]; then
echo "Must install 'jq' for JSON parsing (apt-get install jq)" >&2
exit 1
fi
if [ "$#" -lt 1 -o "${1:0:1}" != "/" ]; then
/bin/cat >&2 <<EOF
USAGE: $0 /<path> [curl args...]
Runs 'curl' against https://stenographerserver/path, returning data on STDOUT.
Any arguments after the first are passed directly to 'curl'.
This script is mostly used to access /debug/XXX URLs for Stenographer... for
accessing packets, it's probably better to use the 'stenoread' wrapper around
this script, which correctly passes packet requests into steno, then passes
the results through tcpdump for easier handling.
EOF
exit 1
fi
PATH="$1" # starts with '/'
shift
STENOGRAPHER_CONFIG="${STENOGRAPHER_CONFIG-/etc/stenographer/config}"
if [ ! -r "$STENOGRAPHER_CONFIG" ]; then
/bin/cat >&2 <<EOF
Unable to access stenographer config at '$STENOGRAPHER_CONFIG'. You may need
to set the STENOGRAPHER_CONFIG environmental variable to point to the correct
location of your config, or you may need to request read access to that file.
EOF
exit 1
fi
HOST="$( < "$STENOGRAPHER_CONFIG" $JQ -r '.Host')"
PORT="$( < "$STENOGRAPHER_CONFIG" $JQ -r '.Port')"
CERTPATH="$( < "$STENOGRAPHER_CONFIG" $JQ -r '.CertPath')"
if [ -z "$PORT" -o -z "$CERTPATH" ]; then
echo "Unable to get port ($PORT) or certpath ($CERTPATH) from config ($STENOGRAPHER_CONFIG)" >&2
exit 1
fi
URL="https://$HOST:$PORT$PATH" # PATH already starts with /
if ! /bin/cat "$CERTPATH/client_key.pem" > /dev/null; then
echo "You do not have permission to access Stenographer data" >&2
/bin/ls -l "$CERTPATH/client_key.pem" >&2
while [ "$CERTPATH" != "/" ]; do
CERTPATH="$(/usr/bin/dirname "$CERTPATH")"
/bin/ls -l -d "$CERTPATH" >&2
done
echo -e "Your permissions: user=$(/usr/bin/id -n -u) groups=$(/usr/bin/groups)" >&2
exit 1
fi
/usr/bin/curl \
--cert "$CERTPATH/client_cert.pem" \
--key "$CERTPATH/client_key.pem" \
--cacert "$CERTPATH/ca_cert.pem" \
"$@" \
"$URL"