depot.py revision 1431
290N/A# The contents of this file are subject to the terms of the 290N/A# Common Development and Distribution License (the "License"). 290N/A# You may not use this file except in compliance with the License. 290N/A# See the License for the specific language governing permissions 290N/A# and limitations under the License. 290N/A# When distributing Covered Code, include this CDDL HEADER in each 290N/A# If applicable, add the following below this CDDL HEADER, with the 290N/A# fields enclosed by brackets "[]" replaced with your own identifying 290N/A# information: Portions Copyright [yyyy] [name of copyright owner] 3026N/A# Copyright 2009 Sun Microsystems, Inc. All rights reserved. 395N/A# Use is subject to license terms. 454N/A# pkg.depotd - package repository daemon 448N/A# XXX The prototype pkg.depotd combines both the version management server that 290N/A# answers to pkgsend(1) sessions and the HTTP file server that answers to the 290N/A# various GET operations that a pkg(1) client makes. This split is expected to 290N/A# be made more explicit, by constraining the pkg(1) operations such that they 383N/A# can be served as a typical HTTP/HTTPS session. Thus, pkg.depotd will reduce 290N/A# to a special purpose HTTP/HTTPS server explicitly for the version management 395N/A# operations, and must manipulate the various state files--catalogs, in 290N/A# particular--such that the pkg(1) pull client can operately accurately with 1516N/A# XXX Although we pushed the evaluation of next-version, etc. to the pull 2508N/A# client, we should probably provide a query API to do same on the server, for 2826N/A# dumb clients (like a notification service). 2535N/A# The default repository path. 290N/A# The default path for static and other web content. 2535N/A# cherrypy has a max_request_body_size parameter that determines whether the 2561N/A# server should abort requests with REQUEST_ENTITY_TOO_LARGE when the request 290N/A# body is larger than the specified size (in bytes). The maximum size supported 2508N/A# by cherrypy is 2048 * 1024 * 1024 - 1 (just short of 2048MB), but the default 383N/A# here is purposefully conservative. 290N/A# The default port(s) to serve data from. 290N/A# The minimum number of threads allowed. 2535N/A# The default number of threads to start. 290N/A# The maximum number of threads that can be started. 2508N/A# The default server socket timeout in seconds. We want this to be longer than 2508N/A# the normal default of 10 seconds to accommodate clients with poor quality 1660N/A# Whether modify operations should be allowed. 1660N/A# Whether the repository catalog should be rebuilt on startup. 1660N/A# Whether the indexes should be rebuilt 1660N/A# Not in mirror mode by default 290N/A print >>
sys.
stderr,
"""cherrypy 3.1.0 or greater (but less than """ \
290N/A """3.2.0) is required to use this program.""" 290N/A """This is a dummy object that we can use to discard log entries 661N/A without relying on non-portable interfaces such as /dev/null.""" 1498N/A [-t socket_timeout] [--cfg-file] [--content-root] 1498N/A [--disable-ops op[/1][,...]] [--debug] [--log-access dest] 2867N/A [--log-errors dest] [--mirror] [--nasty] 2310N/A [--set-property <section.property>=<value>] 2310N/A [--proxy-base url] [--readonly] [--rebuild] [--ssl-cert-file] 2310N/A [--ssl-dialog] [--ssl-key-file] [--writable-root dir] 2852N/A --cfg-file The pathname of the file from which to read and to 2852N/A write configuration information. 2852N/A --content-root The file system path to the directory containing the 2535N/A the static and other web content used by the depot's 2867N/A browser user interface. The default value is 2310N/A --disable-ops A comma separated list of operations that the depot 290N/A should not configure. If, for example, you wanted 1674N/A to omit loading search v1, 'search/1' should be 1674N/A provided as an argument, or to disable all search 2262N/A operations, simply 'search'. 1674N/A --debug The name of a debug feature to enable; or a whitespace 395N/A or comma separated list of features to enable. Possible 395N/A --log-access The destination for any access related information 1544N/A logged by the depot process. Possible values are: 1968N/A stderr, stdout, none, or an absolute pathname. The 1557N/A default value is stdout if stdout is a tty; otherwise 2046N/A --log-errors The destination for any errors or other information 2240N/A logged by the depot process. Possible values are: 1506N/A stderr, stdout, none, or an absolute pathname. The 395N/A --mirror Package mirror mode; publishing and metadata operations 395N/A disallowed. Cannot be used with --readonly or 395N/A --nasty Instruct the server to misbehave. At random intervals 395N/A it will time-out, send bad responses, hang up on 395N/A clients, and generally be hostile. The option 2310N/A takes a value (1 to 100) for how nasty the server 395N/A --proxy-base The url to use as the base for generating internal 2867N/A --readonly Read-only operation; modifying operations disallowed. 2867N/A Cannot be used with --mirror or --rebuild. 2867N/A --rebuild Re-build the catalog from pkgs in depot. Cannot be 2867N/A used with --mirror or --readonly. 2867N/A --set-property Used to specify initial repository configuration 2852N/A property values or to update existing ones; can 2310N/A be specified multiple times. If used with --readonly 2867N/A this acts as a temporary override. 2867N/A --ssl-cert-file The absolute pathname to a PEM-encoded Certificate file. 2867N/A This option must be used with --ssl-key-file. Usage of 661N/A this option will cause the depot to only respond to SSL 395N/A requests on the provided port. 849N/A --ssl-dialog Specifies what method should be used to obtain the 290N/A passphrase needed to decrypt the file specified by 395N/A --ssl-key-file. Supported values are: builtin, 395N/A --ssl-key-file The absolute pathname to a PEM-encoded Private Key file. 395N/A This option must be used with --ssl-cert-file. Usage of 395N/A this option will cause the depot to only respond to SSL 395N/A requests on the provided port. 395N/A --writable-root The path to a directory to which the program has write 395N/A access. Used with --readonly to allow server to 395N/A create needed files, such as search indices, without 395N/A needing write access to the package information. 290N/A """Option exception. """ 3139N/A # By default, if the destination for a particular log type is not 3139N/A # specified, this is where we will send the output. 3139N/A # If stdout is a tty, then send access output there by default instead 2516N/A "disable-ops=",
"mirror",
"nasty=",
"set-property=",
2516N/A "proxy-base=",
"readonly",
"rebuild",
"refresh-index",
3139N/A "ssl-cert-file=",
"ssl-dialog=",
"ssl-key-file=",
3139N/A "A debug feature must be specified." 3139N/A # A list of features can be specified using a 3139N/A # "," or any whitespace character as separators. 3139N/A "Invalid debug feature: " \
2516N/A "An argument must be specified." 742N/A "You must specify a log " \
2339N/A "for nasty option.\n Please " \
742N/A "choose a value between 1 and 100." 742N/A "the form '<section.property>=" 2688N/A # Attempt to decompose the url provided into 2688N/A # its base parts. This is done so we can 2688N/A # remove any scheme information since we 2867N/A "determine the hostname from " \
2867N/A "the provided URL; please use a " \
2046N/A "and https are the only supported " \
2046N/A # Rebuild the url with the sanitized components. 2677N/A # Note: This argument is for internal use 2310N/A # only. It's used when pkg.depotd is reexecing 2310N/A # itself and needs to know that's the case. 2310N/A # This flag is purposefully omitted in usage. 2310N/A # The supported way to forcefully reindex is to 2310N/A # kill any pkg.depot using that directory, 2310N/A # remove the index directory, and restart the 2858N/A # pkg.depot process. The index will be rebuilt 2310N/A # automatically on startup. 2852N/A "the Certificate file must be " \
2535N/A "the Private Key file must be " \
395N/A "specified. Expected: builtin, " \
591N/A # Don't allow a somewhat 591N/A # insecure authentication method 2639N/A "not a supported dialog " \
2639N/A "type for this operating " \
1632N/A "file path specified for " \
2339N/A usage(
"pkg.depotd: illegal option value: %s specified " \
2364N/A usage(
"--refresh-index cannot be used with --rebuild")
2828N/A usage(
"--readonly and --mirror cannot be used with --rebuild")
2828N/A usage(
"--mirror cannot be used with --refresh-index")
2828N/A usage(
"--readonly can only be used with --refresh-index if " 2828N/A usage(
"The --ssl-cert-file and --ssl-key-file options must " 2828N/A "must both be provided when using either option.")
2828N/A # If they didn't already specify a particular port, use the 2828N/A # default SSL port instead. 2828N/A # If the program is going to reindex, the port is irrelevant since 2828N/A # the program will not bind to a port. 2828N/A print "pkg.depotd: unable to bind to the specified " \
2828N/A # Not applicable for reindexing operations. 2828N/A print "pkg.depotd: an error occurred while " \
2339N/A "executing [%s]; unable to obtain the " \
2339N/A "passphrase needed to decrypt the SSL" \
2339N/A # The key file requires decryption, but the user has requested 2339N/A # exec-based authentication, so it will have to be decoded first 2339N/A # to an un-named temporary file. 2364N/A print "pkg.depotd: unable to read the SSL private " \
2364N/A print "pkg.depotd: authentication or cryptography " \
2364N/A "failure while attempting to decode\nthe SSL " \
290N/A # Redirect the server to the decrypted key file. 2339N/A # Setup our global configuration. 290N/A "environment":
"production",
290N/A "server.shutdown_timeout":
0,
290N/A "server.socket_host":
"0.0.0.0",
2674N/A # Despite its name, this only logs headers when there is an 290N/A # error; it's redundant with the debug feature enabled. 395N/A # Causes the headers of every request to be logged to the error 395N/A # log; even if an exception occurs. 591N/A "param":
"log.error_file",
2639N/A "param":
"log.access_file",
3026N/A # Since we've replaced cherrypy's log handler with our 3026N/A # own, we don't want the output directed to a file. 3053N/A # Now that our logging, etc. has been setup, it's safe to perform any 290N/A # Initialize repository state. 691N/A emsg(
"pkg.depotd: repository configuration error: %s" %
_e)
2339N/A emsg(
"Please use the --set-property option to provide a value, " 2339N/A "or update the cfg_cache file for the repository to " 3053N/A emsg(
"pkg.depotd: repository configuration error: %s" %
_e)
2339N/A # Initializing the repository above updated search indices 2339N/A # as needed; nothing left to do, so exit. 506N/A # Next, initialize depot. 834N/A # Now build our site configuration. 506N/A # We have to override cherrypy's default response_class so that 513N/A # we have access to the write() callable to stream data 506N/A # directly to the client. 395N/A # This changes the base URL for our server, and is primarily 290N/A # intended to allow our depot process to operate behind Apache 1674N/A # or some other webserver process. 1674N/A # Visit the following URL for more information: 1674N/A # Now merge or add our proxy configuration information into the 395N/A emsg(
"pkg.depotd: unknown error starting depot server, " \
506N/A "illegal option value specified?")