aboutsummaryrefslogtreecommitdiff
path: root/src/gns/gnunet-gns-proxy-setup-ca.in
blob: f3a1f58e1fcfd843aaeabc38d06cda325745d657 (plain) (blame)
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
#!/bin/sh
#
# This shell script will generate an X509 certificate for
# your gnunet-gns-proxy and install it (for both GNUnet
# and your browser).
#
# TODO: Implement support for more browsers
# TODO: Debug and switch to the new version
# TODO  - The only remaining task is fixing the getopts
# TODO: Error checks
#
# The current version partially reuses and recycles
# code from build.sh by NetBSD (although not entirely
# used because it needs debugging):
#
# Copyright (c) 2001-2011 The NetBSD Foundation, Inc.
# All rights reserved.
#
# This code is derived from software contributed to
# The NetBSD Foundation by Todd Vierling and Luke Mewburn.

# Redistribution and use in source and binary forms, with or
# without modification, are permitted provided that the following
# conditions are met:
# 1. Redistributions of source code must retain the above
#    copyright notice, this list of conditions and the following
#    disclaimer.
# 2. Redistributions in binary form must reproduce the above
#    copyright notice, this list of conditions and the following
#    disclaimer in the documentation and/or other materials
#    provided with the distribution.

# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND
# CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED.
# IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR
# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
# THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
# OF SUCH DAMAGE.

progname=${0##*/}

setdefaults()
{
    runcmd=
    #TOP=$( (exec pwd -P 2>/dev/null) || (exec pwd 2>/dev/null) )
}

statusmsg()
{
    ${runcmd} echo "    $@"
}

infomsg()
{
    statusmsg "INFO: $@"
}

warningmsg()
{
    statusmsg "WARNING: $@"
}

errormsg()
{
    statusmsg "ERROR: $@"
}

linemsg()
{
    statusmsg "========================================="
}

# Given a variable name in $1, modify the variable in place
# as follows:
# Convert possibly-relative path to absolute path by prepending
# ${TOP} if necessary.  Also delete trailing "/", if any.
resolvepath()
{
    local var="$1"
    local val
    eval val=\"\${${var}}\"
    case "${val}" in
        /)
        ;;
        /*)
            val="${val%/}"
            ;;
        *)
            val="${TOP}/${val%/}"
            ;;
    esac
    eval ${var}=\"\${val}\"
}

# usage()
# {
#     if [ -n "$*" ]; then
#         echo ""
#         echo "${progname}: $*"
#     fi
#     cat <<_usage_

# Usage: ${progname} [-fhv] [-c FILE] operation [...]

# Operations:
#    cert		Create the GNS certificate and only insert
# 		it in GNS.
#    browser	Create the GNS certificate, insert it in
# 		GNS and install it in webbrowsers found.
#    all		Create the GNS certificate, insert it in
# 		GNS and install it in webbrowsers found.
#    help		Print this help message.

# Options:
#    -c FILE	Use the configuration file FILE.
#    -f		Perform expansions of the variables used in the config
# 		value of gns-proxy. This will usually expand
# 		$GNUNET_DATA_HOME to represent its path.
#    -h		Print this help message.
#    -v		Print the version.

# _usage_
# 	exit 1
# }

usage()
{
    if [ -n "$*" ]; then
        echo ""
        echo "${progname}: $*"
    fi
    cat <<_usage_

Usage: ${progname} [-hv] [-c FILE] [...]

Options:
   -c FILE	Use the configuration file FILE.
   -h		Print this help message.
   -v		Print the version and exit.
   -V           be verbose

_usage_
	exit 1
}


# parseoptions()
# {
#     opts=':cfhv'
#     # For now use POSIX getopts. For the future, refer to
#     # the shell capabilities check build.sh has?
#     if type getopts >/dev/null 2>&1; then
#         # we are a posix shell, we can use the builtin getopts
#         getoptcmd='getopts ${opts} opt && opt=-${opt}'
#         optargcmd=':'
#         optremcmd='shift $((${OPTIND} -1))'
#     fi

#     # parse command line options.
#     while eval ${getoptcmd}; do
#         case ${opt} in

#             -c)
#                 eval ${optargcmd}; resolvepath OPTARG
#                 GNUNET_CONFIG_FILE="${OPTARG}"
#                 export GNUNET_CONFIG_FILE
#                 ;;
#             -f)
#                 GNUNET_PASS_FILENAME=1
#                 export GNUNET_PASS_FILENAME
#                 ;;
#             -v)
#                 print_version
#                 ;;
#             --)
#                 break
#                 ;;
#             -'?'|-h)
#                 usage
#                 ;;
#         esac
#     done

#     # operations
#     eval ${optremcmd}
#     while [ $# -gt 0 ]; do
#         op=$1; shift
#         operations="${operations} ${op}"
#         case "${op}" in
#             help)
#                 usage
#                 ;;
#             all|\
#             browser|\
#             cert)
#                 ;;
#             *)
#                 usage "Unknown operation \`${op}'"
#                 ;;
#         esac
#         op="$( echo "$op" | tr -s '.-' '__')"
#         eval do_${op}=true
#     done
# }
    #[ -n "${operations}" ] || usage "Missing operation to perform."
    # old code:
    # while getopts "c:" opt; do
    #     case $opt in
    #         c)
    #             options="$options -c $OPTARG"
    #             ;;
    #         \?)
    #             echo "Invalid option: -$OPTARG" >&2
    #             exit 1
    #             ;;
    #         :)
    #             echo "Option -$OPTARG requires an argument." >&2
    #             exit 1
    #             ;;
    #     esac
    # done

generate_ca()
{
    echo ""
    infomsg "Generating CA"
    TMPDIR=${TMPDIR:-/tmp}
    if [ -e "$TMPDIR" ]; then
        GNSCERT=`mktemp -t ${00##*/}.pem` || exit 1
        GNSCAKY=`mktemp -t ${00##*/}.pem` || exit 1
        GNSCANO=`mktemp -t ${00##*/}.pem` || exit 1
    else
        # This warning is mostly pointless.
        warning "You need to export the TMPDIR variable"
    fi
    # else
    #     # SETUP_TMPDIR="$HOME/gns_setup"
    #     # if [ ! -e "$SETUP_TMPDIR" ]; then
    #     #     mkdir -p $SETUP_TMPDIR
    #     # fi
    #     GNSCERT=`mktemp ${00##*/}.pem` || exit 1
    #     GNSCAKY=`mktemp ${00##*/}.pem` || exit 1
    #     GNSCANO=`mktemp ${00##*/}.pem` || exit 1
    # fi

    OPENSSLCFG=@pkgdatadir@/openssl.cnf
    if ! which openssl > /dev/null
    then
        warningmsg "'openssl' command not found. Please install it."
        infomsg    "Cleaning up."
        rm -f $GNSCAKY $GNSCANO $GNSCERT
        exit 1
    fi
    if [ -n "${GNUNET_CONFIG}" ]; then
        GNUNET_CONFIG="-c ${GNUNET_CONFIG_FILE}"
    else
        GNUNET_CONFIG=""
    fi
    if [ GNUNET_PASS_FILENAME ]; then
        GNUNET_OPT_F=""
    else
        GNUNET_OPT_F=" -f "
    fi
    GNS_CA_CERT_PEM=`gnunet-config ${GNUNET_CONFIG} -s gns-proxy -o PROXY_CACERT ${GNUNET_OPT_F} -f ${options}`
    mkdir -p `dirname $GNS_CA_CERT_PEM`

    # Bad names etc.
    if [ verbosity ]; then
        VERBOSE_OUTPUT=""
    else
        VERBOSE_OUTPUT="2>/dev/null"
    fi
    openssl req -config $OPENSSLCFG -new -x509 -days 3650 -extensions v3_ca -keyout $GNSCAKY -out $GNSCERT -subj "/C=ZZ/L=World/O=GNU/OU=GNUnet/CN=GNS Proxy CA/emailAddress=bounce@gnunet.org" -passout pass:"GNU Name System" ${VERBOSE_OUTPUT}

    statusmsg "Removing passphrase from key"
    openssl rsa -passin pass:"GNU Name System" -in $GNSCAKY -out $GNSCANO ${VERBOSE_OUTPUT}

    statusmsg "Making private key available to gnunet-gns-proxy"
    cat $GNSCERT $GNSCANO > $GNS_CA_CERT_PEM
}

importbrowsers()
{
    if ! which certutil > /dev/null
    then
        warningmsg "The 'certutil' command was not found."
        warningmsg "Not importing into browsers."
        warningmsg "For 'certutil' install nss."
    else
        statusmsg "Importing CA into browsers"
        # TODO: Error handling?
        for f in ~/.mozilla/firefox/*.*/
        do
            if [ -d $f ]; then
                statusmsg "Importing CA into Firefox at $f"
                # delete old certificate (if any)
                certutil -D -n "GNS Proxy CA" -d "$f" >/dev/null 2>/dev/null
                # add new certificate
                certutil -A -n "GNS Proxy CA" -t CT,, -d "$f" < $GNSCERT
            fi
        done
        # TODO: Error handling?
        if [ -d ~/.pki/nssdb/ ]; then
            statusmsg "Importing CA into Chrome at ~/.pki/nssdb/"
            # delete old certificate (if any)
            certutil -D -n "GNS Proxy CA" -d ~/.pki/nssdb/ >/dev/null 2>/dev/null
            # add new certificate
            certutil -A -n "GNS Proxy CA" -t CT,, -d ~/.pki/nssdb/ < $GNSCERT
        fi
    fi
}

print_version()
{
    GNUNET_ARM_VERSION=`gnunet-arm -v`
    echo $GNUNET_ARM_VERSION
}

clean_up()
{
    infomsg "Cleaning up."
    rm -f $GNSCAKY $GNSCANO $GNSCERT
    if [ -e $SETUP_TMPDIR ]; then
        rm -rf $SETUP_TMPDIR
    fi

    linemsg
    infomsg "You can now start gnunet-gns-proxy."
    infomsg "Afterwards, configure your browser "
    infomsg "to use a SOCKS proxy on port 7777. "
    linemsg
}

main()
{
    while getopts "vhVc:" opt; do
        case $opt in
            v)
                print_version
                exit 0
                ;;
            h)
                usage
                ;;
            V)
                verbosity=1
                ;;
            c)
                options="$options -c $OPTARG"
                infomsg "Using configuration file $OPTARG"
                ;;
            \?)
                echo "Invalid option: -$OPTARG" >&2
                usage
                ;;
            :)
                echo "Option -$OPTARG requires an argument." >&2
                usage
                ;;
        esac
    done
    setdefaults
    generate_ca
    importbrowsers
    clean_up

# Needs debugging...
#    setdefaults
#    _args=$@
#    parseoptions "$@"
#    for op in ${operations}; do
#        case "${op}" in
#            cert)
#                ${runcmd} "${generate_ca}"
#                ${runcmd} "${clean_up}"
#                ;;
#            browser)
#                ${runcmd} "${generate_ca}"
#                ${runcmd} "${importbrowsers}"
#                ${runcmd} "${clean_up}"
#                ;;
#            all)
#                ${runcmd} "${generate_ca}"
#                ${runcmd} "${importbrowsers}"
#                ${runcmd} "${clean_up}"
#                ;;
#            *)
#                infomsg "Unknown operation \`${op}'"
#                ;;
#        esac
#    done
}

main "$@"