src/depot.py
author Shawn Walker <srw@sun.com>
Tue, 04 Aug 2009 20:37:18 -0500
changeset 1288 4248f27af42a
parent 1191 a48bee2a4b2e
child 1431 62b6033670e4
permissions -rwxr-xr-x
10417 rename v0 support should be removed everywhere 10418 server catalog needs temporary separation from client catalog
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
409
713e20963dc2 2314 shebang lines should use minimum python version
Shawn Walker <swalker@opensolaris.org>
parents: 404
diff changeset
     1
#!/usr/bin/python2.4
20
e5e53bc1c4d1 Cleaned up the build and install process. Turn the pkg directory into a
Danek Duvall <danek.duvall@sun.com>
parents: 14
diff changeset
     2
#
e5e53bc1c4d1 Cleaned up the build and install process. Turn the pkg directory into a
Danek Duvall <danek.duvall@sun.com>
parents: 14
diff changeset
     3
# CDDL HEADER START
e5e53bc1c4d1 Cleaned up the build and install process. Turn the pkg directory into a
Danek Duvall <danek.duvall@sun.com>
parents: 14
diff changeset
     4
#
e5e53bc1c4d1 Cleaned up the build and install process. Turn the pkg directory into a
Danek Duvall <danek.duvall@sun.com>
parents: 14
diff changeset
     5
# The contents of this file are subject to the terms of the
e5e53bc1c4d1 Cleaned up the build and install process. Turn the pkg directory into a
Danek Duvall <danek.duvall@sun.com>
parents: 14
diff changeset
     6
# Common Development and Distribution License (the "License").
e5e53bc1c4d1 Cleaned up the build and install process. Turn the pkg directory into a
Danek Duvall <danek.duvall@sun.com>
parents: 14
diff changeset
     7
# You may not use this file except in compliance with the License.
e5e53bc1c4d1 Cleaned up the build and install process. Turn the pkg directory into a
Danek Duvall <danek.duvall@sun.com>
parents: 14
diff changeset
     8
#
e5e53bc1c4d1 Cleaned up the build and install process. Turn the pkg directory into a
Danek Duvall <danek.duvall@sun.com>
parents: 14
diff changeset
     9
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
e5e53bc1c4d1 Cleaned up the build and install process. Turn the pkg directory into a
Danek Duvall <danek.duvall@sun.com>
parents: 14
diff changeset
    10
# or http://www.opensolaris.org/os/licensing.
e5e53bc1c4d1 Cleaned up the build and install process. Turn the pkg directory into a
Danek Duvall <danek.duvall@sun.com>
parents: 14
diff changeset
    11
# See the License for the specific language governing permissions
e5e53bc1c4d1 Cleaned up the build and install process. Turn the pkg directory into a
Danek Duvall <danek.duvall@sun.com>
parents: 14
diff changeset
    12
# and limitations under the License.
e5e53bc1c4d1 Cleaned up the build and install process. Turn the pkg directory into a
Danek Duvall <danek.duvall@sun.com>
parents: 14
diff changeset
    13
#
e5e53bc1c4d1 Cleaned up the build and install process. Turn the pkg directory into a
Danek Duvall <danek.duvall@sun.com>
parents: 14
diff changeset
    14
# When distributing Covered Code, include this CDDL HEADER in each
e5e53bc1c4d1 Cleaned up the build and install process. Turn the pkg directory into a
Danek Duvall <danek.duvall@sun.com>
parents: 14
diff changeset
    15
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
e5e53bc1c4d1 Cleaned up the build and install process. Turn the pkg directory into a
Danek Duvall <danek.duvall@sun.com>
parents: 14
diff changeset
    16
# If applicable, add the following below this CDDL HEADER, with the
e5e53bc1c4d1 Cleaned up the build and install process. Turn the pkg directory into a
Danek Duvall <danek.duvall@sun.com>
parents: 14
diff changeset
    17
# fields enclosed by brackets "[]" replaced with your own identifying
e5e53bc1c4d1 Cleaned up the build and install process. Turn the pkg directory into a
Danek Duvall <danek.duvall@sun.com>
parents: 14
diff changeset
    18
# information: Portions Copyright [yyyy] [name of copyright owner]
e5e53bc1c4d1 Cleaned up the build and install process. Turn the pkg directory into a
Danek Duvall <danek.duvall@sun.com>
parents: 14
diff changeset
    19
#
e5e53bc1c4d1 Cleaned up the build and install process. Turn the pkg directory into a
Danek Duvall <danek.duvall@sun.com>
parents: 14
diff changeset
    20
# CDDL HEADER END
e5e53bc1c4d1 Cleaned up the build and install process. Turn the pkg directory into a
Danek Duvall <danek.duvall@sun.com>
parents: 14
diff changeset
    21
#
814
76909c2cad8f 5603 server catalog permissions should be 644, not 600
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 812
diff changeset
    22
# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
20
e5e53bc1c4d1 Cleaned up the build and install process. Turn the pkg directory into a
Danek Duvall <danek.duvall@sun.com>
parents: 14
diff changeset
    23
# Use is subject to license terms.
e5e53bc1c4d1 Cleaned up the build and install process. Turn the pkg directory into a
Danek Duvall <danek.duvall@sun.com>
parents: 14
diff changeset
    24
#
e5e53bc1c4d1 Cleaned up the build and install process. Turn the pkg directory into a
Danek Duvall <danek.duvall@sun.com>
parents: 14
diff changeset
    25
22
379f0f6809ff pkgsend open, pkgsend add file, pkgsend close; Transaction object
"Stephen Hahn <sch@sun.com>"
parents: 21
diff changeset
    26
# pkg.depotd - package repository daemon
0
f08899079fb4 implemented open, add (file case), close for transactions
"Stephen Hahn <sch@sun.com>"
parents:
diff changeset
    27
50
bfcb1661f019 basic image and package plans
Stephen Hahn <sch@sun.com>
parents: 46
diff changeset
    28
# XXX The prototype pkg.depotd combines both the version management server that
bfcb1661f019 basic image and package plans
Stephen Hahn <sch@sun.com>
parents: 46
diff changeset
    29
# answers to pkgsend(1) sessions and the HTTP file server that answers to the
bfcb1661f019 basic image and package plans
Stephen Hahn <sch@sun.com>
parents: 46
diff changeset
    30
# various GET operations that a pkg(1) client makes.  This split is expected to
bfcb1661f019 basic image and package plans
Stephen Hahn <sch@sun.com>
parents: 46
diff changeset
    31
# be made more explicit, by constraining the pkg(1) operations such that they
bfcb1661f019 basic image and package plans
Stephen Hahn <sch@sun.com>
parents: 46
diff changeset
    32
# can be served as a typical HTTP/HTTPS session.  Thus, pkg.depotd will reduce
bfcb1661f019 basic image and package plans
Stephen Hahn <sch@sun.com>
parents: 46
diff changeset
    33
# to a special purpose HTTP/HTTPS server explicitly for the version management
bfcb1661f019 basic image and package plans
Stephen Hahn <sch@sun.com>
parents: 46
diff changeset
    34
# operations, and must manipulate the various state files--catalogs, in
bfcb1661f019 basic image and package plans
Stephen Hahn <sch@sun.com>
parents: 46
diff changeset
    35
# particular--such that the pkg(1) pull client can operately accurately with
bfcb1661f019 basic image and package plans
Stephen Hahn <sch@sun.com>
parents: 46
diff changeset
    36
# only a basic HTTP/HTTPS server in place.
bfcb1661f019 basic image and package plans
Stephen Hahn <sch@sun.com>
parents: 46
diff changeset
    37
bfcb1661f019 basic image and package plans
Stephen Hahn <sch@sun.com>
parents: 46
diff changeset
    38
# XXX We should support simple "last-modified" operations via HEAD queries.
bfcb1661f019 basic image and package plans
Stephen Hahn <sch@sun.com>
parents: 46
diff changeset
    39
bfcb1661f019 basic image and package plans
Stephen Hahn <sch@sun.com>
parents: 46
diff changeset
    40
# XXX Although we pushed the evaluation of next-version, etc. to the pull
bfcb1661f019 basic image and package plans
Stephen Hahn <sch@sun.com>
parents: 46
diff changeset
    41
# client, we should probably provide a query API to do same on the server, for
bfcb1661f019 basic image and package plans
Stephen Hahn <sch@sun.com>
parents: 46
diff changeset
    42
# dumb clients (like a notification service).
bfcb1661f019 basic image and package plans
Stephen Hahn <sch@sun.com>
parents: 46
diff changeset
    43
382
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
    44
# The default authority for the depot.
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
    45
AUTH_DEFAULT = "opensolaris.org"
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
    46
# The default repository path.
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
    47
REPO_PATH_DEFAULT = "/var/pkg/repo"
589
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
    48
# The default path for static and other web content.
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
    49
CONTENT_PATH_DEFAULT = "/usr/share/lib/pkg"
965
6efb5042a707 7552 depot aborts connection for add operations with payload greater than 100MB
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 916
diff changeset
    50
# cherrypy has a max_request_body_size parameter that determines whether the
6efb5042a707 7552 depot aborts connection for add operations with payload greater than 100MB
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 916
diff changeset
    51
# server should abort requests with REQUEST_ENTITY_TOO_LARGE when the request
6efb5042a707 7552 depot aborts connection for add operations with payload greater than 100MB
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 916
diff changeset
    52
# body is larger than the specified size (in bytes).  The maximum size supported
6efb5042a707 7552 depot aborts connection for add operations with payload greater than 100MB
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 916
diff changeset
    53
# by cherrypy is 2048 * 1024 * 1024 - 1 (just short of 2048MB), but the default
6efb5042a707 7552 depot aborts connection for add operations with payload greater than 100MB
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 916
diff changeset
    54
# here is purposefully conservative.
6efb5042a707 7552 depot aborts connection for add operations with payload greater than 100MB
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 916
diff changeset
    55
MAX_REQUEST_BODY_SIZE = 128 * 1024 * 1024
812
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
    56
# The default port(s) to serve data from.
382
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
    57
PORT_DEFAULT = 80
812
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
    58
SSL_PORT_DEFAULT = 443
382
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
    59
# The minimum number of threads allowed.
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
    60
THREADS_MIN = 1
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
    61
# The default number of threads to start.
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
    62
THREADS_DEFAULT = 10
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
    63
# The maximum number of threads that can be started.
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
    64
THREADS_MAX = 100
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
    65
# The default server socket timeout in seconds. We want this to be longer than
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
    66
# the normal default of 10 seconds to accommodate clients with poor quality
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
    67
# connections.
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
    68
SOCKET_TIMEOUT_DEFAULT = 60
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
    69
# Whether modify operations should be allowed.
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
    70
READONLY_DEFAULT = False
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
    71
# Whether the repository catalog should be rebuilt on startup.
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
    72
REBUILD_DEFAULT = False
429
6c9cbb6e6600 983 pkg search returns just one action per package/token-type combo
Brock Pytlik <bpytlik@sun.com>
parents: 428
diff changeset
    73
# Whether the indexes should be rebuilt
6c9cbb6e6600 983 pkg search returns just one action per package/token-type combo
Brock Pytlik <bpytlik@sun.com>
parents: 428
diff changeset
    74
REINDEX_DEFAULT = False
461
37cf3ac75e37 1018 actions with payloads should include all sizes and hashes
johansen <johansen@sun.com>
parents: 452
diff changeset
    75
# Not in mirror mode by default
37cf3ac75e37 1018 actions with payloads should include all sizes and hashes
johansen <johansen@sun.com>
parents: 452
diff changeset
    76
MIRROR_DEFAULT = False
382
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
    77
26
ab188d4682d5 catalog processing begins
"Stephen Hahn <sch@sun.com>"
parents: 25
diff changeset
    78
import getopt
689
1cb7154e1592 4489 depot traceback for info operation due to changeset 660
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 617
diff changeset
    79
import gettext
1cb7154e1592 4489 depot traceback for info operation due to changeset 660
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 617
diff changeset
    80
import locale
466
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
    81
import logging
0
f08899079fb4 implemented open, add (file case), close for transactions
"Stephen Hahn <sch@sun.com>"
parents:
diff changeset
    82
import os
468
20250d58c2ab 2309 pkg.depotd fails when -d argument is a relative pathname
Tom Mueller <Tom.Mueller@sun.com>
parents: 466
diff changeset
    83
import os.path
812
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
    84
import OpenSSL.crypto as crypto
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
    85
import subprocess
52
d7c452ef7ae1 Sanitize getopt exception handling
Danek Duvall <danek.duvall@sun.com>
parents: 50
diff changeset
    86
import sys
812
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
    87
import tempfile
451
74f1fe85fe2d 1324 RSS / Atom feeds of repository updates
Shawn Walker <shawn.walker@sun.com>
parents: 445
diff changeset
    88
import urlparse
0
f08899079fb4 implemented open, add (file case), close for transactions
"Stephen Hahn <sch@sun.com>"
parents:
diff changeset
    89
382
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
    90
try:
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
    91
        import cherrypy
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
    92
        version = cherrypy.__version__.split('.')
452
01f53c6381af 2714 image-update failure during update phase
Shawn Walker <shawn.walker@sun.com>
parents: 451
diff changeset
    93
        if map(int, version) < [3, 1, 0]:
382
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
    94
                raise ImportError
452
01f53c6381af 2714 image-update failure during update phase
Shawn Walker <shawn.walker@sun.com>
parents: 451
diff changeset
    95
        elif map(int, version) >= [3, 2, 0]:
382
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
    96
                raise ImportError
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
    97
except ImportError:
751
b68bf0bec185 5466 depot should give a clear failure message if unable to import mako templates
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 742
diff changeset
    98
        print >> sys.stderr, """cherrypy 3.1.0 or greater (but less than """ \
b68bf0bec185 5466 depot should give a clear failure message if unable to import mako templates
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 742
diff changeset
    99
            """3.2.0) is required to use this program."""
382
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   100
        sys.exit(2)
22
379f0f6809ff pkgsend open, pkgsend add file, pkgsend close; Transaction object
"Stephen Hahn <sch@sun.com>"
parents: 21
diff changeset
   101
812
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   102
from pkg.misc import port_available, msg, emsg, setlocale
873
b95d76c53b5e 2691 ability to publish packages to local disk repository
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 858
diff changeset
   103
import pkg.portable.util as os_util
812
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   104
import pkg.search_errors as search_errors
1288
4248f27af42a 10417 rename v0 support should be removed everywhere
Shawn Walker <srw@sun.com>
parents: 1191
diff changeset
   105
import pkg.server.catalog as catalog
26
ab188d4682d5 catalog processing begins
"Stephen Hahn <sch@sun.com>"
parents: 25
diff changeset
   106
import pkg.server.config as config
382
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   107
import pkg.server.depot as depot
873
b95d76c53b5e 2691 ability to publish packages to local disk repository
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 858
diff changeset
   108
import pkg.server.depotresponse as dr
975
346745ea94fe 2701 "scratch area" for depot
Brock Pytlik <bpytlik@sun.com>
parents: 965
diff changeset
   109
import pkg.server.errors as errors
428
e011e45fe2cd 2239 repository attribute system needed
Shawn Walker <shawn.walker@sun.com>
parents: 409
diff changeset
   110
import pkg.server.repositoryconfig as rc
466
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   111
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   112
class LogSink(object):
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   113
        """This is a dummy object that we can use to discard log entries
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   114
        without relying on non-portable interfaces such as /dev/null."""
23
51b8b48fea32 begin server source reorganization
"Stephen Hahn <sch@sun.com>"
parents: 22
diff changeset
   115
466
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   116
        def write(self, *args, **kwargs):
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   117
                """Discard the bits."""
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   118
                pass
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   119
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   120
        def flush(self, *args, **kwargs):
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   121
                """Discard the bits."""
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   122
                pass
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   123
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   124
def usage(text):
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   125
        if text:
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   126
                emsg(text)
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   127
26
ab188d4682d5 catalog processing begins
"Stephen Hahn <sch@sun.com>"
parents: 25
diff changeset
   128
        print """\
589
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   129
Usage: /usr/lib/pkg.depotd [-d repo_dir] [-p port] [-s threads]
858
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   130
           [-t socket_timeout] [--cfg-file] [--content-root] [--debug]
1191
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   131
           [--log-access dest] [--log-errors dest] [--mirror] [--nasty]
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   132
           [--proxy-base url] [--readonly] [--rebuild] [--ssl-cert-file]
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   133
           [--ssl-dialog] [--ssl-key-file] [--writable-root dir]
382
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   134
812
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   135
        --cfg-file      The pathname of the file from which to read and to
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   136
                        write configuration information.
589
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   137
        --content-root  The file system path to the directory containing the
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   138
                        the static and other web content used by the depot's
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   139
                        browser user interface.  The default value is
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   140
                        '/usr/share/lib/pkg'.
858
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   141
        --debug         The name of a debug feature to enable; or a whitespace
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   142
                        or comma separated list of features to enable.  Possible
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   143
                        values are: headers.
466
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   144
        --log-access    The destination for any access related information
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   145
                        logged by the depot process.  Possible values are:
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   146
                        stderr, stdout, none, or an absolute pathname.  The
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   147
                        default value is stdout if stdout is a tty; otherwise
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   148
                        the default value is none.
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   149
        --log-errors    The destination for any errors or other information
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   150
                        logged by the depot process.  Possible values are:
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   151
                        stderr, stdout, none, or an absolute pathname.  The
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   152
                        default value is stderr.
589
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   153
        --mirror        Package mirror mode; publishing and metadata operations
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   154
                        disallowed.  Cannot be used with --readonly or
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   155
                        --rebuild.
1191
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   156
        --nasty         Instruct the server to misbehave.  At random intervals
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   157
                        it will time-out, send bad responses, hang up on
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   158
                        clients, and generally be hostile.  The option
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   159
                        takes a value (1 to 100) for how nasty the server
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   160
                        should be.
589
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   161
        --proxy-base    The url to use as the base for generating internal
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   162
                        redirects and content.
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   163
        --readonly      Read-only operation; modifying operations disallowed.
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   164
                        Cannot be used with --mirror or --rebuild.
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   165
        --rebuild       Re-build the catalog from pkgs in depot.  Cannot be
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   166
                        used with --mirror or --readonly.
812
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   167
        --ssl-cert-file The absolute pathname to a PEM-encoded Certificate file.
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   168
                        This option must be used with --ssl-key-file.  Usage of
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   169
                        this option will cause the depot to only respond to SSL
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   170
                        requests on the provided port.
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   171
        --ssl-dialog    Specifies what method should be used to obtain the
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   172
                        passphrase needed to decrypt the file specified by
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   173
                        --ssl-key-file.  Supported values are: builtin,
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   174
                        exec:/path/to/program, or smf:fmri.  The default value
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   175
                        is builtin.
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   176
        --ssl-key-file  The absolute pathname to a PEM-encoded Private Key file.
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   177
                        This option must be used with --ssl-cert-file.  Usage of
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   178
                        this option will cause the depot to only respond to SSL
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   179
                        requests on the provided port.
975
346745ea94fe 2701 "scratch area" for depot
Brock Pytlik <bpytlik@sun.com>
parents: 965
diff changeset
   180
        --writable-root The path to a directory to which the program has write
346745ea94fe 2701 "scratch area" for depot
Brock Pytlik <bpytlik@sun.com>
parents: 965
diff changeset
   181
                        access.  Used with --readonly to allow server to
346745ea94fe 2701 "scratch area" for depot
Brock Pytlik <bpytlik@sun.com>
parents: 965
diff changeset
   182
                        create needed files, such as search indices, without
346745ea94fe 2701 "scratch area" for depot
Brock Pytlik <bpytlik@sun.com>
parents: 965
diff changeset
   183
                        needing write access to the package information.
26
ab188d4682d5 catalog processing begins
"Stephen Hahn <sch@sun.com>"
parents: 25
diff changeset
   184
"""
135
a1e20e9a9845 add CLI test suite, correct bugs found by test suite, ration out CLI options
Stephen Hahn <sch@Sun.COM>
parents: 119
diff changeset
   185
        sys.exit(2)
14
969c85e852af start pkg graph management, annotate pkgsend with server states
"Stephen Hahn <sch@sun.com>"
parents: 3
diff changeset
   186
382
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   187
class OptionError(Exception):
429
6c9cbb6e6600 983 pkg search returns just one action per package/token-type combo
Brock Pytlik <bpytlik@sun.com>
parents: 428
diff changeset
   188
        """Option exception. """
14
969c85e852af start pkg graph management, annotate pkgsend with server states
"Stephen Hahn <sch@sun.com>"
parents: 3
diff changeset
   189
404
e5329e84b9a8 2331 depot command-line parsing errors cause traceback
Shawn Walker <swalker@opensolaris.org>
parents: 386
diff changeset
   190
        def __init__(self, *args):
e5329e84b9a8 2331 depot command-line parsing errors cause traceback
Shawn Walker <swalker@opensolaris.org>
parents: 386
diff changeset
   191
                Exception.__init__(self, *args)
30
f06ad6cb4b3f stop using flavour terminology
Stephen Hahn <sch@sun.com>
parents: 29
diff changeset
   192
382
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   193
if __name__ == "__main__":
30
f06ad6cb4b3f stop using flavour terminology
Stephen Hahn <sch@sun.com>
parents: 29
diff changeset
   194
791
123e9401e939 5778 Inability to set locale leads to stack trace
Danek Duvall <danek.duvall@sun.com>
parents: 775
diff changeset
   195
        setlocale(locale.LC_ALL, "")
689
1cb7154e1592 4489 depot traceback for info operation due to changeset 660
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 617
diff changeset
   196
        gettext.install("pkg", "/usr/share/locale")
1cb7154e1592 4489 depot traceback for info operation due to changeset 660
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 617
diff changeset
   197
858
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   198
        debug_features = {
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   199
            "headers": False,
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   200
        }
382
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   201
        port = PORT_DEFAULT
812
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   202
        port_provided = False
382
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   203
        threads = THREADS_DEFAULT
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   204
        socket_timeout = SOCKET_TIMEOUT_DEFAULT
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   205
        readonly = READONLY_DEFAULT
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   206
        rebuild = REBUILD_DEFAULT
429
6c9cbb6e6600 983 pkg search returns just one action per package/token-type combo
Brock Pytlik <bpytlik@sun.com>
parents: 428
diff changeset
   207
        reindex = REINDEX_DEFAULT
451
74f1fe85fe2d 1324 RSS / Atom feeds of repository updates
Shawn Walker <shawn.walker@sun.com>
parents: 445
diff changeset
   208
        proxy_base = None
461
37cf3ac75e37 1018 actions with payloads should include all sizes and hashes
johansen <johansen@sun.com>
parents: 452
diff changeset
   209
        mirror = MIRROR_DEFAULT
1191
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   210
        nasty = False
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   211
        nasty_value = 0
797
fddb78531f55 5211 cfg_cache needs to be able to live elsewhere
Brock Pytlik <bpytlik@sun.com>
parents: 791
diff changeset
   212
        repo_config_file = None
812
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   213
        ssl_cert_file = None
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   214
        ssl_key_file = None
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   215
        ssl_dialog = "builtin"
975
346745ea94fe 2701 "scratch area" for depot
Brock Pytlik <bpytlik@sun.com>
parents: 965
diff changeset
   216
        writable_root = None
258
b3b7592412ec 270 Need ability to rename packages
johansen <johansen@sun.com>
parents: 239
diff changeset
   217
382
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   218
        if "PKG_REPO" in os.environ:
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   219
                repo_path = os.environ["PKG_REPO"]
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   220
        else:
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   221
                repo_path = REPO_PATH_DEFAULT
30
f06ad6cb4b3f stop using flavour terminology
Stephen Hahn <sch@sun.com>
parents: 29
diff changeset
   222
589
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   223
        try:
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   224
                content_root = os.environ["PKG_DEPOT_CONTENT"]
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   225
        except KeyError:
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   226
                try:
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   227
                        content_root = os.path.join(os.environ['PKG_HOME'],
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   228
                            'share/lib/pkg')
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   229
                except KeyError:
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   230
                        content_root = CONTENT_PATH_DEFAULT
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   231
466
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   232
        # By default, if the destination for a particular log type is not
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   233
        # specified, this is where we will send the output.
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   234
        log_routes = {
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   235
            "access": "none",
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   236
            "errors": "stderr"
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   237
        }
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   238
        log_opts = ["--log-%s" % log_type for log_type in log_routes]
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   239
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   240
        # If stdout is a tty, then send access output there by default instead
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   241
        # of discarding it.
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   242
        if os.isatty(sys.stdout.fileno()):
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   243
                log_routes["access"] = "stdout"
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   244
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   245
        opt = None
54
a0c517c20618 Don't throw an exception if the depot can't find a file
Danek Duvall <danek.duvall@sun.com>
parents: 52
diff changeset
   246
        try:
858
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   247
                long_opts = ["cfg-file=", "content-root=", "debug=", "mirror",
1191
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   248
                    "nasty=", "proxy-base=", "readonly", "rebuild",
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   249
                    "refresh-index", "ssl-cert-file=", "ssl-dialog=",
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   250
                    "ssl-key-file=", "writable-root="]
466
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   251
                for opt in log_opts:
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   252
                        long_opts.append("%s=" % opt.lstrip('--'))
382
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   253
                opts, pargs = getopt.getopt(sys.argv[1:], "d:np:s:t:",
466
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   254
                    long_opts)
135
a1e20e9a9845 add CLI test suite, correct bugs found by test suite, ration out CLI options
Stephen Hahn <sch@Sun.COM>
parents: 119
diff changeset
   255
                for opt, arg in opts:
a1e20e9a9845 add CLI test suite, correct bugs found by test suite, ration out CLI options
Stephen Hahn <sch@Sun.COM>
parents: 119
diff changeset
   256
                        if opt == "-n":
a1e20e9a9845 add CLI test suite, correct bugs found by test suite, ration out CLI options
Stephen Hahn <sch@Sun.COM>
parents: 119
diff changeset
   257
                                sys.exit(0)
a1e20e9a9845 add CLI test suite, correct bugs found by test suite, ration out CLI options
Stephen Hahn <sch@Sun.COM>
parents: 119
diff changeset
   258
                        elif opt == "-d":
382
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   259
                                repo_path = arg
135
a1e20e9a9845 add CLI test suite, correct bugs found by test suite, ration out CLI options
Stephen Hahn <sch@Sun.COM>
parents: 119
diff changeset
   260
                        elif opt == "-p":
a1e20e9a9845 add CLI test suite, correct bugs found by test suite, ration out CLI options
Stephen Hahn <sch@Sun.COM>
parents: 119
diff changeset
   261
                                port = int(arg)
812
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   262
                                port_provided = True
382
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   263
                        elif opt == "-s":
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   264
                                threads = int(arg)
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   265
                                if threads < THREADS_MIN:
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   266
                                        raise OptionError, \
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   267
                                            "minimum value is %d" % THREADS_MIN
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   268
                                if threads > THREADS_MAX:
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   269
                                        raise OptionError, \
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   270
                                            "maximum value is %d" % THREADS_MAX
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   271
                        elif opt == "-t":
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   272
                                socket_timeout = int(arg)
812
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   273
                        elif opt == "--cfg-file":
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   274
                                repo_config_file = os.path.abspath(arg)
589
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   275
                        elif opt == "--content-root":
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   276
                                if arg == "":
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   277
                                        raise OptionError, "You must specify " \
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   278
                                            "a directory path."
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   279
                                content_root = arg
858
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   280
                        elif opt == "--debug":
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   281
                                if arg is None or arg == "":
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   282
                                        raise OptionError, \
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   283
                                            "A debug feature must be specified."
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   284
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   285
                                # A list of features can be specified using a
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   286
                                # "," or any whitespace character as separators.
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   287
                                if "," in arg:
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   288
                                        features = arg.split(",")
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   289
                                else:
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   290
                                        features = arg.split()
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   291
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   292
                                for f in features:
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   293
                                        if f not in debug_features:
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   294
                                                raise OptionError, \
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   295
                                                    "Invalid debug feature: " \
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   296
                                                    "%s." % f
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   297
                                        debug_features[f] = True
466
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   298
                        elif opt in log_opts:
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   299
                                if arg is None or arg == "":
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   300
                                        raise OptionError, \
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   301
                                            "You must specify a log " \
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   302
                                            "destination."
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   303
                                log_routes[opt.lstrip("--log-")] = arg
589
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   304
                        elif opt == "--mirror":
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   305
                                mirror = True
1191
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   306
                        elif opt == "--nasty":
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   307
                                value_err = None
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   308
                                try:
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   309
                                        nasty_value = int(arg)
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   310
                                except ValueError, e:
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   311
                                        value_err = e
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   312
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   313
                                if value_err or (nasty_value > 100 or
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   314
                                    nasty_value < 1):
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   315
                                        raise OptionError, "Invalid value " \
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   316
                                            "for nasty option.\n Please " \
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   317
                                            "choose a value between 1 and 100."
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   318
                                nasty = True
589
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   319
                        elif opt == "--proxy-base":
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   320
                                # Attempt to decompose the url provided into
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   321
                                # its base parts.  This is done so we can
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   322
                                # remove any scheme information since we
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   323
                                # don't need it.
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   324
                                scheme, netloc, path, params, query, \
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   325
                                    fragment = urlparse.urlparse(arg,
765
3cc1f2dff092 5668 proxy base should allow https
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 751
diff changeset
   326
                                    "http", allow_fragments=0)
3cc1f2dff092 5668 proxy base should allow https
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 751
diff changeset
   327
3cc1f2dff092 5668 proxy base should allow https
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 751
diff changeset
   328
                                if not netloc:
3cc1f2dff092 5668 proxy base should allow https
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 751
diff changeset
   329
                                        raise OptionError, "Unable to " \
3cc1f2dff092 5668 proxy base should allow https
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 751
diff changeset
   330
                                            "determine the hostname from " \
3cc1f2dff092 5668 proxy base should allow https
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 751
diff changeset
   331
                                            "the provided URL; please use a " \
3cc1f2dff092 5668 proxy base should allow https
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 751
diff changeset
   332
                                            "fully qualified URL."
589
2480ab0274d1 242 desire ability to set content root
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 468
diff changeset
   333
765
3cc1f2dff092 5668 proxy base should allow https
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 751
diff changeset
   334
                                scheme = scheme.lower()
3cc1f2dff092 5668 proxy base should allow https
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 751
diff changeset
   335
                                if scheme not in ("http", "https"):
3cc1f2dff092 5668 proxy base should allow https
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 751
diff changeset
   336
                                        raise OptionError, "Invalid URL; http " \
3cc1f2dff092 5668 proxy base should allow https
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 751
diff changeset
   337
                                            "and https are the only supported " \
3cc1f2dff092 5668 proxy base should allow https
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 751
diff changeset
   338
                                            "schemes."
3cc1f2dff092 5668 proxy base should allow https
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 751
diff changeset
   339
3cc1f2dff092 5668 proxy base should allow https
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 751
diff changeset
   340
                                # Rebuild the url with the sanitized components.
873
b95d76c53b5e 2691 ability to publish packages to local disk repository
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 858
diff changeset
   341
                                proxy_base = urlparse.urlunparse((scheme,
b95d76c53b5e 2691 ability to publish packages to local disk repository
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 858
diff changeset
   342
                                    netloc, path, params, query, fragment))
135
a1e20e9a9845 add CLI test suite, correct bugs found by test suite, ration out CLI options
Stephen Hahn <sch@Sun.COM>
parents: 119
diff changeset
   343
                        elif opt == "--readonly":
382
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   344
                                readonly = True
157
504b9e6d213c Catalog should be on-disk instead of in memory
johansen <johansen@sun.com>
parents: 146
diff changeset
   345
                        elif opt == "--rebuild":
382
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   346
                                rebuild = True
429
6c9cbb6e6600 983 pkg search returns just one action per package/token-type combo
Brock Pytlik <bpytlik@sun.com>
parents: 428
diff changeset
   347
                        elif opt == "--refresh-index":
6c9cbb6e6600 983 pkg search returns just one action per package/token-type combo
Brock Pytlik <bpytlik@sun.com>
parents: 428
diff changeset
   348
                                # Note: This argument is for internal use
6c9cbb6e6600 983 pkg search returns just one action per package/token-type combo
Brock Pytlik <bpytlik@sun.com>
parents: 428
diff changeset
   349
                                # only. It's used when pkg.depotd is reexecing
6c9cbb6e6600 983 pkg search returns just one action per package/token-type combo
Brock Pytlik <bpytlik@sun.com>
parents: 428
diff changeset
   350
                                # itself and needs to know that's the case.
6c9cbb6e6600 983 pkg search returns just one action per package/token-type combo
Brock Pytlik <bpytlik@sun.com>
parents: 428
diff changeset
   351
                                # This flag is purposefully omitted in usage.
6c9cbb6e6600 983 pkg search returns just one action per package/token-type combo
Brock Pytlik <bpytlik@sun.com>
parents: 428
diff changeset
   352
                                # The supported way to forcefully reindex is to
6c9cbb6e6600 983 pkg search returns just one action per package/token-type combo
Brock Pytlik <bpytlik@sun.com>
parents: 428
diff changeset
   353
                                # kill any pkg.depot using that directory,
6c9cbb6e6600 983 pkg search returns just one action per package/token-type combo
Brock Pytlik <bpytlik@sun.com>
parents: 428
diff changeset
   354
                                # remove the index directory, and restart the
6c9cbb6e6600 983 pkg search returns just one action per package/token-type combo
Brock Pytlik <bpytlik@sun.com>
parents: 428
diff changeset
   355
                                # pkg.depot process. The index will be rebuilt
6c9cbb6e6600 983 pkg search returns just one action per package/token-type combo
Brock Pytlik <bpytlik@sun.com>
parents: 428
diff changeset
   356
                                # automatically on startup.
6c9cbb6e6600 983 pkg search returns just one action per package/token-type combo
Brock Pytlik <bpytlik@sun.com>
parents: 428
diff changeset
   357
                                reindex = True
812
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   358
                        elif opt == "--ssl-cert-file":
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   359
                                if arg == "none":
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   360
                                        continue
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   361
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   362
                                ssl_cert_file = arg
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   363
                                if not os.path.isabs(ssl_cert_file):
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   364
                                        raise OptionError, "The path to " \
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   365
                                           "the Certificate file must be " \
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   366
                                           "absolute."
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   367
                                elif not os.path.exists(ssl_cert_file):
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   368
                                        raise OptionError, "The specified " \
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   369
                                            "file does not exist."
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   370
                                elif not os.path.isfile(ssl_cert_file):
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   371
                                        raise OptionError, "The specified " \
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   372
                                            "pathname is not a file."
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   373
                        elif opt == "--ssl-key-file":
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   374
                                if arg == "none":
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   375
                                        continue
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   376
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   377
                                ssl_key_file = arg
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   378
                                if not os.path.isabs(ssl_key_file):
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   379
                                        raise OptionError, "The path to " \
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   380
                                           "the Private Key file must be " \
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   381
                                           "absolute."
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   382
                                elif not os.path.exists(ssl_key_file):
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   383
                                        raise OptionError, "The specified " \
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   384
                                            "file does not exist."
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   385
                                elif not os.path.isfile(ssl_key_file):
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   386
                                        raise OptionError, "The specified " \
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   387
                                            "pathname is not a file."
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   388
                        elif opt == "--ssl-dialog":
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   389
                                if arg != "builtin" and not \
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   390
                                    arg.startswith("exec:/") and not \
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   391
                                    arg.startswith("smf:"):
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   392
                                        raise OptionError, "Invalid value " \
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   393
                                            "specified.  Expected: builtin, " \
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   394
                                            "exec:/path/to/program, or " \
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   395
                                            "smf:fmri."
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   396
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   397
                                f = arg
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   398
                                if f.startswith("exec:"):
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   399
                                        if os_util.get_canonical_os_type() != \
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   400
                                          "unix":
873
b95d76c53b5e 2691 ability to publish packages to local disk repository
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 858
diff changeset
   401
                                                # Don't allow a somewhat
b95d76c53b5e 2691 ability to publish packages to local disk repository
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 858
diff changeset
   402
                                                # insecure authentication method
b95d76c53b5e 2691 ability to publish packages to local disk repository
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 858
diff changeset
   403
                                                # on some platforms.
b95d76c53b5e 2691 ability to publish packages to local disk repository
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 858
diff changeset
   404
                                                raise OptionError, "exec is " \
b95d76c53b5e 2691 ability to publish packages to local disk repository
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 858
diff changeset
   405
                                                    "not a supported dialog " \
b95d76c53b5e 2691 ability to publish packages to local disk repository
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 858
diff changeset
   406
                                                    "type for this operating " \
b95d76c53b5e 2691 ability to publish packages to local disk repository
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 858
diff changeset
   407
                                                    "system."
812
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   408
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   409
                                        f = os.path.abspath(f.split(
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   410
                                            "exec:")[1])
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   411
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   412
                                        if not os.path.isfile(f):
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   413
                                                raise OptionError, "Invalid " \
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   414
                                                    "file path specified for " \
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   415
                                                    "exec."
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   416
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   417
                                        f = "exec:%s" % f
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   418
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   419
                                ssl_dialog = f
975
346745ea94fe 2701 "scratch area" for depot
Brock Pytlik <bpytlik@sun.com>
parents: 965
diff changeset
   420
                        elif opt == "--writable-root":
346745ea94fe 2701 "scratch area" for depot
Brock Pytlik <bpytlik@sun.com>
parents: 965
diff changeset
   421
                                if arg == "":
346745ea94fe 2701 "scratch area" for depot
Brock Pytlik <bpytlik@sun.com>
parents: 965
diff changeset
   422
                                        raise OptionError, "You must specify " \
346745ea94fe 2701 "scratch area" for depot
Brock Pytlik <bpytlik@sun.com>
parents: 965
diff changeset
   423
                                            "a directory path."
346745ea94fe 2701 "scratch area" for depot
Brock Pytlik <bpytlik@sun.com>
parents: 965
diff changeset
   424
                                writable_root = arg
873
b95d76c53b5e 2691 ability to publish packages to local disk repository
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 858
diff changeset
   425
        except getopt.GetoptError, _e:
b95d76c53b5e 2691 ability to publish packages to local disk repository
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 858
diff changeset
   426
                usage("pkg.depotd: %s" % _e.msg)
b95d76c53b5e 2691 ability to publish packages to local disk repository
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 858
diff changeset
   427
        except OptionError, _e:
b95d76c53b5e 2691 ability to publish packages to local disk repository
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 858
diff changeset
   428
                usage("pkg.depotd: option: %s -- %s" % (opt, _e))
382
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   429
        except (ArithmeticError, ValueError):
466
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   430
                usage("pkg.depotd: illegal option value: %s specified " \
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   431
                    "for option: %s" % (arg, opt))
451
74f1fe85fe2d 1324 RSS / Atom feeds of repository updates
Shawn Walker <shawn.walker@sun.com>
parents: 445
diff changeset
   432
445
76b03dd5a4ac 2693 Indexing code and catalog code should respect --read-only
Brock Pytlik <bpytlik@sun.com>
parents: 429
diff changeset
   433
        if rebuild and reindex:
466
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   434
                usage("--refresh-index cannot be used with --rebuild")
461
37cf3ac75e37 1018 actions with payloads should include all sizes and hashes
johansen <johansen@sun.com>
parents: 452
diff changeset
   435
        if rebuild and (readonly or mirror):
466
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   436
                usage("--readonly and --mirror cannot be used with --rebuild")
1020
765f4ea49070 7729 writable-root support doesn't allow depot contents to be read only
Brock Pytlik <bpytlik@sun.com>
parents: 975
diff changeset
   437
        if reindex and mirror:
765f4ea49070 7729 writable-root support doesn't allow depot contents to be read only
Brock Pytlik <bpytlik@sun.com>
parents: 975
diff changeset
   438
                usage("--mirror cannot be used with --refresh-index")
765f4ea49070 7729 writable-root support doesn't allow depot contents to be read only
Brock Pytlik <bpytlik@sun.com>
parents: 975
diff changeset
   439
        if reindex and readonly and not writable_root:
765f4ea49070 7729 writable-root support doesn't allow depot contents to be read only
Brock Pytlik <bpytlik@sun.com>
parents: 975
diff changeset
   440
                usage("--readonly can only be used with --refresh-index if "
765f4ea49070 7729 writable-root support doesn't allow depot contents to be read only
Brock Pytlik <bpytlik@sun.com>
parents: 975
diff changeset
   441
                    "--writable-root is used")
451
74f1fe85fe2d 1324 RSS / Atom feeds of repository updates
Shawn Walker <shawn.walker@sun.com>
parents: 445
diff changeset
   442
812
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   443
        if (ssl_cert_file and not ssl_key_file) or (ssl_key_file and not
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   444
            ssl_cert_file):
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   445
                usage("The --ssl-cert-file and --ssl-key-file options must "
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   446
                    "must both be provided when using either option.")
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   447
        elif ssl_cert_file and ssl_key_file and not port_provided:
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   448
                # If they didn't already specify a particular port, use the
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   449
                # default SSL port instead.
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   450
                port = SSL_PORT_DEFAULT
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   451
429
6c9cbb6e6600 983 pkg search returns just one action per package/token-type combo
Brock Pytlik <bpytlik@sun.com>
parents: 428
diff changeset
   452
        # If the program is going to reindex, the port is irrelevant since
6c9cbb6e6600 983 pkg search returns just one action per package/token-type combo
Brock Pytlik <bpytlik@sun.com>
parents: 428
diff changeset
   453
        # the program will not bind to a port.
6c9cbb6e6600 983 pkg search returns just one action per package/token-type combo
Brock Pytlik <bpytlik@sun.com>
parents: 428
diff changeset
   454
        if not reindex:
6c9cbb6e6600 983 pkg search returns just one action per package/token-type combo
Brock Pytlik <bpytlik@sun.com>
parents: 428
diff changeset
   455
                available, msg = port_available(None, port)
6c9cbb6e6600 983 pkg search returns just one action per package/token-type combo
Brock Pytlik <bpytlik@sun.com>
parents: 428
diff changeset
   456
                if not available:
6c9cbb6e6600 983 pkg search returns just one action per package/token-type combo
Brock Pytlik <bpytlik@sun.com>
parents: 428
diff changeset
   457
                        print "pkg.depotd: unable to bind to the specified " \
6c9cbb6e6600 983 pkg search returns just one action per package/token-type combo
Brock Pytlik <bpytlik@sun.com>
parents: 428
diff changeset
   458
                            "port: %d. Reason: %s" % (port, msg)
6c9cbb6e6600 983 pkg search returns just one action per package/token-type combo
Brock Pytlik <bpytlik@sun.com>
parents: 428
diff changeset
   459
                        sys.exit(1)
612
353fef98c569 4102 test suite fails if /usr/share/lib/pkg doesn't exist
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 589
diff changeset
   460
        else:
353fef98c569 4102 test suite fails if /usr/share/lib/pkg doesn't exist
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 589
diff changeset
   461
                # Not applicable for reindexing operations.
353fef98c569 4102 test suite fails if /usr/share/lib/pkg doesn't exist
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 589
diff changeset
   462
                content_root = None
386
5cd680466abe 2147 depot should check port instead of showing traceback if port binding fails
Shawn Walker <swalker@opensolaris.org>
parents: 382
diff changeset
   463
916
b05c5a1a600f 6905 pkg.depotd --refresh-index can't fork
Brock Pytlik <bpytlik@sun.com>
parents: 873
diff changeset
   464
        fork_allowed = not reindex
b05c5a1a600f 6905 pkg.depotd --refresh-index can't fork
Brock Pytlik <bpytlik@sun.com>
parents: 873
diff changeset
   465
                
1191
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   466
        if nasty:
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   467
                scfg = config.NastySvrConfig(repo_path, content_root,
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   468
                    AUTH_DEFAULT, auto_create=not readonly,
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   469
                    fork_allowed=fork_allowed, writable_root=writable_root)
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   470
                scfg.set_nasty(nasty_value)
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   471
        else:
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   472
                scfg = config.SvrConfig(repo_path, content_root, AUTH_DEFAULT,
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   473
                    auto_create=not readonly, fork_allowed=fork_allowed,
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   474
                    writable_root=writable_root)
382
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   475
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   476
        if readonly:
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   477
                scfg.set_read_only()
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   478
461
37cf3ac75e37 1018 actions with payloads should include all sizes and hashes
johansen <johansen@sun.com>
parents: 452
diff changeset
   479
        if mirror:
37cf3ac75e37 1018 actions with payloads should include all sizes and hashes
johansen <johansen@sun.com>
parents: 452
diff changeset
   480
                scfg.set_mirror()
37cf3ac75e37 1018 actions with payloads should include all sizes and hashes
johansen <johansen@sun.com>
parents: 452
diff changeset
   481
1191
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   482
382
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   483
        try:
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   484
                scfg.init_dirs()
975
346745ea94fe 2701 "scratch area" for depot
Brock Pytlik <bpytlik@sun.com>
parents: 965
diff changeset
   485
        except (errors.SvrConfigError, EnvironmentError), _e:
382
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   486
                print "pkg.depotd: an error occurred while trying to " \
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   487
                    "initialize the depot repository directory " \
873
b95d76c53b5e 2691 ability to publish packages to local disk repository
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 858
diff changeset
   488
                    "structures:\n%s" % _e
382
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   489
                sys.exit(1)
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   490
812
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   491
        key_data = None
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   492
        if not reindex and ssl_cert_file and ssl_key_file and \
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   493
            ssl_dialog != "builtin":
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   494
                cmdline = None
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   495
                def get_ssl_passphrase(*ignored):
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   496
                        p = None
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   497
                        try:
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   498
                                p = subprocess.Popen(cmdline, shell=True,
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   499
                                        stdout=subprocess.PIPE,
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   500
                                        stderr=None)
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   501
                                p.wait()
873
b95d76c53b5e 2691 ability to publish packages to local disk repository
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 858
diff changeset
   502
                        except Exception, __e:
812
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   503
                                print "pkg.depotd: an error occurred while " \
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   504
                                    "executing [%s]; unable to obtain the " \
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   505
                                    "passphrase needed to decrypt the SSL" \
873
b95d76c53b5e 2691 ability to publish packages to local disk repository
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 858
diff changeset
   506
                                    "private key file: %s" % (cmdline, __e)
812
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   507
                                sys.exit(1)
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   508
                        return p.stdout.read().strip("\n")
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   509
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   510
                if ssl_dialog.startswith("exec:"):
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   511
                        cmdline = "%s %s %d" % (ssl_dialog.split("exec:")[1],
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   512
                            "''", port)
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   513
                elif ssl_dialog.startswith("smf:"):
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   514
                        cmdline = "/usr/bin/svcprop -p " \
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   515
                            "pkg_secure/ssl_key_passphrase %s" % (
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   516
                            ssl_dialog.split("smf:")[1])
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   517
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   518
                # The key file requires decryption, but the user has requested
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   519
                # exec-based authentication, so it will have to be decoded first
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   520
                # to an un-named temporary file.
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   521
                try:
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   522
                        key_file = file(ssl_key_file, "rb")
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   523
                        pkey = crypto.load_privatekey(crypto.FILETYPE_PEM,
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   524
                            key_file.read(), get_ssl_passphrase)
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   525
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   526
                        key_data = tempfile.TemporaryFile()
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   527
                        key_data.write(crypto.dump_privatekey(
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   528
                            crypto.FILETYPE_PEM, pkey))
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   529
                        key_data.seek(0)
873
b95d76c53b5e 2691 ability to publish packages to local disk repository
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 858
diff changeset
   530
                except EnvironmentError, _e:
812
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   531
                        print "pkg.depotd: unable to read the SSL private " \
873
b95d76c53b5e 2691 ability to publish packages to local disk repository
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 858
diff changeset
   532
                            "key file: %s" % _e
812
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   533
                        sys.exit(1)
873
b95d76c53b5e 2691 ability to publish packages to local disk repository
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 858
diff changeset
   534
                except crypto.Error, _e:
812
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   535
                        print "pkg.depotd: authentication or cryptography " \
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   536
                            "failure while attempting to decode\nthe SSL " \
873
b95d76c53b5e 2691 ability to publish packages to local disk repository
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 858
diff changeset
   537
                            "private key file: %s" % _e
812
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   538
                        sys.exit(1)
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   539
                else:
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   540
                        # Redirect the server to the decrypted key file.
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   541
                        ssl_key_file = "/dev/fd/%d" % key_data.fileno()
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   542
452
01f53c6381af 2714 image-update failure during update phase
Shawn Walker <shawn.walker@sun.com>
parents: 451
diff changeset
   543
        # Setup our global configuration.
466
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   544
        gconf = {
858
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   545
            "checker.on": True,
382
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   546
            "environment": "production",
466
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   547
            "log.screen": False,
965
6efb5042a707 7552 depot aborts connection for add operations with payload greater than 100MB
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 916
diff changeset
   548
            "server.max_request_body_size": MAX_REQUEST_BODY_SIZE,
858
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   549
            "server.shutdown_timeout": 0,
452
01f53c6381af 2714 image-update failure during update phase
Shawn Walker <shawn.walker@sun.com>
parents: 451
diff changeset
   550
            "server.socket_host": "0.0.0.0",
382
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   551
            "server.socket_port": port,
858
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   552
            "server.socket_timeout": socket_timeout,
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   553
            "server.ssl_certificate": ssl_cert_file,
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   554
            "server.ssl_private_key": ssl_key_file,
382
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   555
            "server.thread_pool": threads,
742
909b912fa942 3011 new depot index page desired
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 689
diff changeset
   556
            "tools.log_headers.on": True,
858
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   557
            "tools.encode.on": True
466
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   558
        }
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   559
858
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   560
        if debug_features["headers"]:
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   561
                # Despite its name, this only logs headers when there is an
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   562
                # error; it's redundant with the debug feature enabled.
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   563
                gconf["tools.log_headers.on"] = False
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   564
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   565
                # Causes the headers of every request to be logged to the error
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   566
                # log; even if an exception occurs.
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   567
                gconf["tools.log_headers_always.on"] = True
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   568
                cherrypy.tools.log_headers_always = cherrypy.Tool(
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   569
                    "on_start_resource",
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   570
                    cherrypy.lib.cptools.log_request_headers)
c8f3fcec3301 6245 intent information is not properly sent
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 817
diff changeset
   571
466
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   572
        log_type_map = {
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   573
            "errors": {
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   574
                "param": "log.error_file",
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   575
                "attr": "error_log"
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   576
            },
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   577
            "access": {
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   578
                "param": "log.access_file",
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   579
                "attr": "access_log"
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   580
            }
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   581
        }
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   582
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   583
        for log_type in log_type_map:
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   584
                dest = log_routes[log_type]
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   585
                if dest in ("stdout", "stderr", "none"):
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   586
                        if dest == "none":
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   587
                                h = logging.StreamHandler(LogSink())
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   588
                        else:
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   589
                                h = logging.StreamHandler(eval("sys.%s" % \
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   590
                                    dest))
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   591
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   592
                        h.setLevel(logging.DEBUG)
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   593
                        h.setFormatter(cherrypy._cplogging.logfmt)
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   594
                        log_obj = eval("cherrypy.log.%s" % \
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   595
                            log_type_map[log_type]["attr"])
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   596
                        log_obj.addHandler(h)
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   597
                        # Since we've replaced cherrypy's log handler with our
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   598
                        # own, we don't want the output directed to a file.
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   599
                        dest = ""
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   600
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   601
                gconf[log_type_map[log_type]["param"]] = dest
382
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   602
612
353fef98c569 4102 test suite fails if /usr/share/lib/pkg doesn't exist
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 589
diff changeset
   603
        cherrypy.config.update(gconf)
353fef98c569 4102 test suite fails if /usr/share/lib/pkg doesn't exist
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 589
diff changeset
   604
353fef98c569 4102 test suite fails if /usr/share/lib/pkg doesn't exist
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 589
diff changeset
   605
        # Now that our logging, etc. has been setup, it's safe to perform any
353fef98c569 4102 test suite fails if /usr/share/lib/pkg doesn't exist
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 589
diff changeset
   606
        # remaining preparation.
353fef98c569 4102 test suite fails if /usr/share/lib/pkg doesn't exist
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 589
diff changeset
   607
        if reindex:
617
d146e7256c65 4048 A PartialIndexingException on the depot shouldn't stack trace or cause usage to be displayed
Brock Pytlik <bpytlik@sun.com>
parents: 612
diff changeset
   608
                try:
916
b05c5a1a600f 6905 pkg.depotd --refresh-index can't fork
Brock Pytlik <bpytlik@sun.com>
parents: 873
diff changeset
   609
                        scfg.acquire_catalog(rebuild=False, verbose=True)
975
346745ea94fe 2701 "scratch area" for depot
Brock Pytlik <bpytlik@sun.com>
parents: 965
diff changeset
   610
                except (search_errors.IndexingException,
346745ea94fe 2701 "scratch area" for depot
Brock Pytlik <bpytlik@sun.com>
parents: 965
diff changeset
   611
                    catalog.CatalogPermissionsException,
346745ea94fe 2701 "scratch area" for depot
Brock Pytlik <bpytlik@sun.com>
parents: 965
diff changeset
   612
                    errors.SvrConfigError), e:
617
d146e7256c65 4048 A PartialIndexingException on the depot shouldn't stack trace or cause usage to be displayed
Brock Pytlik <bpytlik@sun.com>
parents: 612
diff changeset
   613
                        cherrypy.log(str(e), "INDEX")
d146e7256c65 4048 A PartialIndexingException on the depot shouldn't stack trace or cause usage to be displayed
Brock Pytlik <bpytlik@sun.com>
parents: 612
diff changeset
   614
                        sys.exit(1)
612
353fef98c569 4102 test suite fails if /usr/share/lib/pkg doesn't exist
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 589
diff changeset
   615
                sys.exit(0)
353fef98c569 4102 test suite fails if /usr/share/lib/pkg doesn't exist
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 589
diff changeset
   616
451
74f1fe85fe2d 1324 RSS / Atom feeds of repository updates
Shawn Walker <shawn.walker@sun.com>
parents: 445
diff changeset
   617
        # Now build our site configuration.
382
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   618
        conf = {
452
01f53c6381af 2714 image-update failure during update phase
Shawn Walker <shawn.walker@sun.com>
parents: 451
diff changeset
   619
            "/": {
01f53c6381af 2714 image-update failure during update phase
Shawn Walker <shawn.walker@sun.com>
parents: 451
diff changeset
   620
                # We have to override cherrypy's default response_class so that
01f53c6381af 2714 image-update failure during update phase
Shawn Walker <shawn.walker@sun.com>
parents: 451
diff changeset
   621
                # we have access to the write() callable to stream data
01f53c6381af 2714 image-update failure during update phase
Shawn Walker <shawn.walker@sun.com>
parents: 451
diff changeset
   622
                # directly to the client.
873
b95d76c53b5e 2691 ability to publish packages to local disk repository
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 858
diff changeset
   623
                "wsgi.response_class": dr.DepotResponse,
452
01f53c6381af 2714 image-update failure during update phase
Shawn Walker <shawn.walker@sun.com>
parents: 451
diff changeset
   624
            },
382
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   625
            "/robots.txt": {
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   626
                "tools.staticfile.on": True,
742
909b912fa942 3011 new depot index page desired
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 689
diff changeset
   627
                "tools.staticfile.filename": os.path.join(scfg.web_root,
382
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   628
                    "robots.txt")
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   629
            },
95304bd3b365 1854 rework depot to use higher-level framework
Shawn Walker <swalker@opensolaris.org>
parents: 374
diff changeset
   630
        }
145
08bee7fd13f6 Add versioning to the protocols
Danek Duvall <danek.duvall@sun.com>
parents: 135
diff changeset
   631
451
74f1fe85fe2d 1324 RSS / Atom feeds of repository updates
Shawn Walker <shawn.walker@sun.com>
parents: 445
diff changeset
   632
        if proxy_base:
74f1fe85fe2d 1324 RSS / Atom feeds of repository updates
Shawn Walker <shawn.walker@sun.com>
parents: 445
diff changeset
   633
                # This changes the base URL for our server, and is primarily
74f1fe85fe2d 1324 RSS / Atom feeds of repository updates
Shawn Walker <shawn.walker@sun.com>
parents: 445
diff changeset
   634
                # intended to allow our depot process to operate behind Apache
74f1fe85fe2d 1324 RSS / Atom feeds of repository updates
Shawn Walker <shawn.walker@sun.com>
parents: 445
diff changeset
   635
                # or some other webserver process.
74f1fe85fe2d 1324 RSS / Atom feeds of repository updates
Shawn Walker <shawn.walker@sun.com>
parents: 445
diff changeset
   636
                #
74f1fe85fe2d 1324 RSS / Atom feeds of repository updates
Shawn Walker <shawn.walker@sun.com>
parents: 445
diff changeset
   637
                # Visit the following URL for more information:
74f1fe85fe2d 1324 RSS / Atom feeds of repository updates
Shawn Walker <shawn.walker@sun.com>
parents: 445
diff changeset
   638
                #    http://cherrypy.org/wiki/BuiltinTools#tools.proxy
74f1fe85fe2d 1324 RSS / Atom feeds of repository updates
Shawn Walker <shawn.walker@sun.com>
parents: 445
diff changeset
   639
                proxy_conf = {
74f1fe85fe2d 1324 RSS / Atom feeds of repository updates
Shawn Walker <shawn.walker@sun.com>
parents: 445
diff changeset
   640
                        "tools.proxy.on": True,
74f1fe85fe2d 1324 RSS / Atom feeds of repository updates
Shawn Walker <shawn.walker@sun.com>
parents: 445
diff changeset
   641
                        "tools.proxy.local": "",
74f1fe85fe2d 1324 RSS / Atom feeds of repository updates
Shawn Walker <shawn.walker@sun.com>
parents: 445
diff changeset
   642
                        "tools.proxy.base": proxy_base
74f1fe85fe2d 1324 RSS / Atom feeds of repository updates
Shawn Walker <shawn.walker@sun.com>
parents: 445
diff changeset
   643
                }
74f1fe85fe2d 1324 RSS / Atom feeds of repository updates
Shawn Walker <shawn.walker@sun.com>
parents: 445
diff changeset
   644
74f1fe85fe2d 1324 RSS / Atom feeds of repository updates
Shawn Walker <shawn.walker@sun.com>
parents: 445
diff changeset
   645
                # Now merge or add our proxy configuration information into the
74f1fe85fe2d 1324 RSS / Atom feeds of repository updates
Shawn Walker <shawn.walker@sun.com>
parents: 445
diff changeset
   646
                # existing configuration.
74f1fe85fe2d 1324 RSS / Atom feeds of repository updates
Shawn Walker <shawn.walker@sun.com>
parents: 445
diff changeset
   647
                for entry in proxy_conf:
74f1fe85fe2d 1324 RSS / Atom feeds of repository updates
Shawn Walker <shawn.walker@sun.com>
parents: 445
diff changeset
   648
                        conf["/"][entry] = proxy_conf[entry]
74f1fe85fe2d 1324 RSS / Atom feeds of repository updates
Shawn Walker <shawn.walker@sun.com>
parents: 445
diff changeset
   649
466
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   650
        scfg.acquire_in_flight()
814
76909c2cad8f 5603 server catalog permissions should be 644, not 600
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 812
diff changeset
   651
        try:
873
b95d76c53b5e 2691 ability to publish packages to local disk repository
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 858
diff changeset
   652
                scfg.acquire_catalog(rebuild=rebuild, verbose=True)
975
346745ea94fe 2701 "scratch area" for depot
Brock Pytlik <bpytlik@sun.com>
parents: 965
diff changeset
   653
        except (catalog.CatalogPermissionsException, errors.SvrConfigError), _e:
873
b95d76c53b5e 2691 ability to publish packages to local disk repository
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 858
diff changeset
   654
                emsg("pkg.depotd: %s" % _e)
814
76909c2cad8f 5603 server catalog permissions should be 644, not 600
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 812
diff changeset
   655
                sys.exit(1)
466
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   656
217
a53bcf30c049 279 catalog_update should cope with HTTPError
johansen <johansen@sun.com>
parents: 215
diff changeset
   657
        try:
1191
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   658
                if nasty:
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   659
                        root = cherrypy.Application(depot.NastyDepotHTTP(scfg,
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   660
                            repo_config_file))
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   661
                else:
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   662
                        root = cherrypy.Application(depot.DepotHTTP(scfg,
a48bee2a4b2e 305 http_proxy value needs more checking for valid url syntax
johansen <johansen@sun.com>
parents: 1020
diff changeset
   663
                            repo_config_file))
873
b95d76c53b5e 2691 ability to publish packages to local disk repository
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 858
diff changeset
   664
        except rc.InvalidAttributeValueError, _e:
b95d76c53b5e 2691 ability to publish packages to local disk repository
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 858
diff changeset
   665
                emsg("pkg.depotd: repository.conf error: %s" % _e)
466
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   666
                sys.exit(1)
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   667
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   668
        try:
7cfb6502ff1b 2333 control over access / error log destination desired
Shawn Walker <shawn.walker@sun.com>
parents: 461
diff changeset
   669
                cherrypy.quickstart(root, config=conf)
873
b95d76c53b5e 2691 ability to publish packages to local disk repository
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 858
diff changeset
   670
        except Exception, _e:
812
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   671
                emsg("pkg.depotd: unknown error starting depot server, " \
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   672
                    "illegal option value specified?")
873
b95d76c53b5e 2691 ability to publish packages to local disk repository
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 858
diff changeset
   673
                emsg(_e)
812
7e82ae7acf48 2154 pkg.depotd should offer SSL/HTTPS option
Shawn Walker <Shawn.Walker@Sun.COM>
parents: 797
diff changeset
   674
                sys.exit(1)