Apache Server Survival Guide asg07.htm
|
Source: | mod_auth_cookie_file.c |
Author: | Dirk-Willem van Gulik |
Type: | User authentication/Access control |
Home: | http://med.jrc.it//~dirkx/mod_auth_cookie_file.c |
This module is designed to allow transparent authentication to users who have previously registered with your site. Suppose that you want to have visitors register with you before they access your software download area. By collecting information from them and then issuing a persistent cookie, the next time they visit your download area they can forgo the authentication procedure.
Cookies are a Netscape extension. The official reference for Netscape cookies can be found at http://home.netscape.com/newsref/std/cookie_spec.html.
A cookie allows the browser to identify itself every time it makes a request. A cookie is no more than a ticket. When you go to your dry cleaner and give them clothes for cleaning, they give you a ticket. That ticket identifies you as having brought clothes in for cleaning; it associates you with your clothes. You can think of the dry cleaner's ticket as a cookie.
There are two types of cookies: persistent and temporary. Persistent cookies get recorded in the visitor's computer for use later. When the browser makes subsequent requests to the same URL, it first checks to see if it has a cookie for it. If it does, the browser includes this information in the HTTP request header where a program in the server (a CGI or a module) can use this information for any purpose it wants. Temporary cookies are only used during the duration of the visit, after which they are discarded.
A Netscape persistent cookie is set with an HTTP header like the following:
Set-Cookie: Name=value; [Expires=date;] [Path=path;] [Domain=domainname;] [Secure]
The Set-Cookie header can be embedded in an HTML document in a META tag, like the following, or from a CGI:
<META HTTP-EQUIV="Set-Cookie" CONTENT="Customer=John Doe"; Path=/; Domain=www.domain.com"> |
When sent from a CGI, this information must be sent as part of the HTTP header. For more information on how to form a header, please refer to Chapter 5, "CGI (Common Gateway Interface) Programming."
Name specifies the name identifier for the cookie.
value can be any information you want to keep track of.
The Expires option sets a date that will be used for expiring the cookie. If not specified, the cookie will expire at the end of the current session, making it a temporary cookie. The format is Wdy, DD-Mon-YY HH:MM:SS GMT. Wdy is the day of the week; possible values for Wdy are Mon, Tue, Wed, Thu, Fri, Sat, or Sun. DD is the day of the month; possible values are 0131. Mon is the month; possible values for it are Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, or Dec. YY is the last two digits of the year, without the century (1996=96). HH specifies the hour in a 24-hour format. MM specifies the minutes, and SS specifies the seconds. The date should be specified in the Greenwich Mean Time (GMT) time zone. Previously issued cookies can be expired by sending a new cookie with the same name using an expiration date that has already past. Expiration depends on the visitor's clock time, which may be far off from the real time.
The Path option specifies the document hierarchy where the cookie is valid. This is typically set to / so that it is valid for all documents in the document hierarchy. The browser uses this information to determine if there are any cookies already stored in the visitor's computer that are associated with path. If there are, the browser returns a Cookie: header along with the cookie Name and value along with the request. Multiple cookies matching the path will be sent with semicolons separating them.
Domain specifies the Internet domain where the cookie is valid. You can specify a fully qualified domain name such as host.domain.com.
When Secure is specified, the cookie will only be sent if the connection is secure by using a Secure Socket Layer (SSL) server, such as Stronghold.
The mod_auth_cookies_file module requests a named cookie from the client that contains the authentication information, which gets verified against an htpasswd like database.
|
Syntax: | Cookie_Access [on]|[off] |
Default: | Cookie_Access off |
This directive sets cookie access authentication.
Syntax: | Cookie_AuthFile authFile |
Default: | Cookie_AuthFile NULL (no file specified) |
The format of the authentication file (authFile) is a list of colon (:)-separated values following this format:
userId:name:value
where userID is the user's name, name is the cookie name, and value is the cookie value.
Syntax: | Cookie_Authorative [on]|[off] |
Default: | Cookie_Authorative off |
If the cookie fails, no authorization is given (authorization is final.) The user will have to re-register with the site before she is able to log in.
Syntax: | Cookie_MustGive [on]|[off] |
Default: | Cookie_MustGive off |
When set to on, the client must present a cookie prior to authenticating.
Syntax: | Cookie_EncryptedCookies [on]|[off] |
Default: | Cookie_EncryptedCookies on |
This module specifies if the cookie value is encrypted using cryptthe program used by UNIX to encrypt passwords.
Source: | mod_auth_cookie_msql.c |
Author: | Dirk-Willem van Gulik |
Type: | User authentication/Access control |
Home: | http://med.jrc.it//~dirkx/mod_auth_cookie_msql.c |
This module is similar to mod_auth_cookie_file, but uses mini-SQL (mSQL) to store its authentication data. It is designed to allow transparent authentication to users who have previously registered with your site. Suppose that you want to have visitors register with you before they access your software download area. By collecting information from them and then issuing a persistent cookie, the next time they visit your download area they can forgo the authentication procedure.
This module will request a named cookie from the client that contains the authentication information, which gets verified against tables in a mSQL database.
Mod_auth_cookie_msql provides 10 directives:
Syntax: | Cookie_Access [on]|[off] |
Default: | Cookie_Access off |
This directive sets cookie access authentication.
Syntax: | Cookie_Authorative [on]|[off] |
Default: | Cookie_Authorative off |
If the cookie fails, no authorization is given (authorization is final). The user will need to re-register with the site.
Syntax: | Cookie_MustGive [on]|[off] |
Default: | Cookie_MustGive off |
When set to on, the client must present a cookie prior to authenticating.
Syntax: | Cookie_MSQL_table tableName |
Cookie_MSQL_table sets the name of the mSQL table that contains the username and cookie fields used for authentication.
Syntax: | Cookie_MSQLcookie_namefield cookieFName |
Cookie_MSQLcookie_namefield sets the name of the field from which the module will fetch the name of the cookie.
Syntax: | Cookie_MSQLcookie_valuefield valueFName |
Cookie_MSQLcookie_valuefield sets the name of the field from which the module will fetch the value of the cookie.
Syntax: | Cookie_MSQLdatabase database |
Cookie_MSQLdatabase sets the name of the mSQL database that contains the Cookie_MSQL_table where the authentication information is stored.
Syntax: | Cookie_MSQLhost [FQHN] | [IPAddress] | [localhost] |
This directive sets the name of the host machine running the mSQL server. The name of the host can be specified using its fully qualified domain name, its IP address, or localhost to specify that the server running the database is the same as the Web server.
Syntax: | Cookie_MSQLuid_field uidFName |
Cookie_MSQLuid_field sets the name of the field from which the module will fetch the username or the uid.
Syntax: | Cookie_EncryptedCookies [on]|[off] |
Default: | Cookie_EncryptedCookies on |
This directive specifies if the cookie value is encrypted using cryptthe program used by UNIX to encrypt passwords.
|
Source: | mod_userpath.c |
Author: | Simon Wilkinson |
Type: | Resource location/Uniform Resource Identifier (URI) rewriting |
Home: | http://www.tardis.ed.ac.uk/~sxw/apache/mod_userpath.c |
This module is a replacement for the mod_userdir module distributed with versions of Apache earlier than 1.1. The version of mod_userdir distributed with Apache 1.1.1 provides this functionality and more.
mod_userpath rewrites the URI of requests following the pattern:
http://machine/~username
This module allows you to specify a directory where the server will look for a user's home page. This module has the added benefit of allowing you to create home page directories that don't necessarily match your internal usernames. Because this mechanism doesn't rely on user accounts, it allows you to provide home pages on machines that don't contain any user information.
If you incorporate this module into Apache, you should remove mod_userdir because both of these modules will attempt to rewrite the URI, and which one will win is anyone's guess.
mod_userpath adds one directive:
Syntax: | UserPath pathToUserPages |
Default: | UserPath /usr/local/etc/httpd/htdocs/ |
Requests ending in a username will have UserPath prepended before they are processed by the server. For example:
http://machine/~username
will be translated into
http://machine/usr/local/etc/httpd/htdocs/~username
Source: | mod_cgi_sugid.c |
Author: | Philippe Vanhaesendonck |
Type: | CGI UID/GID execution options |
Home: | http://linux3.cc.kuleuven.ac.be/~seklos/mod_cgi_sugid.c |
This module is a replacement for the standard Apache CGI module, mod_cgi. It provides the capability to run CGI under the User ID (UID) and Group ID (GID) of a different user. UID and GID can be specified inside the <Limit> sections. <Limit> sections are specified under <Location> or <Directory> sections in the global access configuration file. By default, this module does not allow the use of its directives from within per-directory access control files (.htaccess). Also, if the module fails to change the UID/GID of a CGI, the script is aborted. As you should expect, this module won't run CGI with a root UID.
mod_cgi_sugid adds two directives:
Syntax: | UserID [user] |
The UserID directive sets the UID used to run a CGI. This directive rejects requests to run a CGI with the root UID.
Syntax: | GroupID [group] |
The GroupID directive sets the GID used to run a CGI.
Source: | mod_auth_sys.c |
Author: | Franz Vinzenz |
Type: | Authentication |
mod_auth_sys allows you to authenticate a user using the UNIX calls getpwnam_r and getgrnam_r to retrieve password and group information for that user. This allows you to use your existing UNIX authentication scheme, such as /etc/passwd files, Network Information Service (NIS), NIS++, and so on. This module does not provide any directives.
To call the module, just put an entry like the following in your global access configuration file or in a per-directory access file (omit the <Directory> section on per-directory access files):
<Directory somedir> AuthType Basic <Limit GET POST> require valid-user </Limit> </Directory>
The only concern with this module is the transmission of login and password information across the Internet because basic authentication does not encrypt the login transaction in any way. If anyone obtained this information in route, he would have full access to that user's account.
Authors: | Doug MacEachern |
Type: | Embedded interpreter |
Home: | http://www.osf.org/~dougm/apache |
mod_perl and mod_perl_fast provide an alternative method for executing Perl programs. mod_perl and mod_perl fast are not CGI, so the way you program them is a little different.
At the time of this writing, programs that you write to take advantage of these modules don't run from the command line without the aid of the CGI::Switch Perl module. CGI::Switch is available from your nearest CPAN archive at modules/by-module/Apache/CGI-XA-0_22305-alpha_tar.gz.
These modules embed a Perl interpreter in the Web server. Because the Perl interpreter is embedded, the server can run Perl scripts by itself, and your Perl programs will run much faster. The embedded interpreter eliminates much of the expense associated with running CGI on your Web server. Also, scripts that run under these modules have full access to the Application Programming Interface (API) of the server, giving you the option of writing modules using Perl.
These modules differ in the way they function. mod_perl allocates and constructs a Perl interpreter for each request. This interpreter parses and executes the script. On completion, the Perl interpreter is destroyed, freeing the resources that it consumed.
mod_perl_fast allocates and constructs one Perl interpreter when the server starts. It also loads and parses a Perl script that is persistent.
Source: | mod_auth_external.c |
Author: | Nathan Neulinger |
Type: | Authentication |
Home: | http://www.umr.edu/~nneul/ |
mod_auth_external allows you to specify an external program that will handle user and group authentication. The specified program will receive authentication information the visitor entered in the authentication panel via the USER and PASS environment variables. In addition, when doing group authentication, the group name is passed in the environment variable GROUP. The external authentication program is expected to return 0 to indicate successful authentication, or a nonzero result as an indication of a failed authentication session or an error in the authentication program.
This is a simple way of interfacing Apache to any authentication system.
mod_auth_external adds four directives:
Syntax: | AddExternalAuth token userAuthenticator |
Adding the AddExternalAuth directive to your httpd.conf file will register userAuthenticator under token. You can have multiple AddExternalAuth directives.
Syntax: | AuthExternal token |
This directive is used inside a <Limit> section to specify the authenticator to use in this context. token gets matched to the AddExternalAuth directive, and the appropriate authenticator is launched:
<Directory somedir> AuthName authentication realm description AuthType Basic AuthExternal token <Limit GET POST> require valid-user </Limit> </Directory>
Syntax: | AddExternalGroup token groupAuthenticator |
Adding the AddExternalAuth directive to your httpd.conf file will register groupAuthenticator under token. You can have multiple AddExternalGroup directives.
Syntax: | ExternalGroup token |
This directive is used inside a <Limit> section to specify the authenticator to use in this context. token gets matched to the AddExternalGroup directive, and the appropriate authenticator is launched:
<Directory somedir> AuthName authentication realm description AuthType Basic ExternalGroup token <Limit GET POST> require group groupA </Limit> </Directory> |
|
Source: | mod_auth_kerb.c |
Author: | James E. Robinson, III |
Type: | Authentication |
Home: | http://www2.ncsu.edu/ncsu/cc/rddc/projects/mod_auth_kerb/mod_auth_kerb.c |
mod_auth_kerb provides kerberos authentication to Apache. Kerberos is a network security system designed at MIT that guarantees that users and services are who they claim to be without the need to ask a user for his password whenever he requests access to additional services. If the user's browser does not support kerberos directly, mod_auth_kerb will authenticate the user based on the user ID and password supplied to the browser.
mod_auth_kerb provides the following directives:
Syntax: | AuthType [KerberosV4] | [KerberosV5] |
This directive tells Apache and the browser which kerberos protocol to use when validating the user. This is the only directive necessary for the module to be functional.
Syntax: | KrbAuthRealm realm |
The KbrAuthRealm directive takes one argument: a string specifying the kerberos realm name that the server should use for authentication. For example, KrbAuthRealm MIT.EDU sets the authentication realm to MIT.EDU.
Syntax: | RedirectHttps [On] | [Off] |
This directive tells Apache to redirect the user's request to an SSL Web server running on the same host, if the original request was not under SSL. This allows for increased security on browsers that do not support kerberos directly by preventing clear text passwords from being sent over the network.
Source: | mod_fontxlate.c and Apache server patches |
Author: | Warwick Heath |
Type: | Eastern European font conversion |
Home: | http://www.rcc-irc.si/eng/fontxlate |
mod_fontxlate is a configurable font-conversion module that determines if a request needs to be converted. Eastern European countries such as Slovenia use a variety of characters to represent local non-ASCII characters. Proper functioning of this module requires that Apache be patched. The advantage of this module is that it does its conversion very quickly.
For additional information, please refer to the documentation included in the module's source.
Source: | mod_cntr.c |
Author: | Brian Kolaci |
Type: | Page counter |
Home: | ftp://ftp.galaxy.net/pub/bk/webcounter.tar.gz |
This module and ancillary CGI provide a transparent way of implementing Web counters. The module will keep track of the page access count on ASCII or DBM databases. Because the Web server keeps count of page access, there's no possible spoofing of the pages. To be counted, a page needs to be delivered. This module comes with several different number styles.
When the page counter databases have been set with the provided utilities, displaying the counter is very easy. On the Web page, you put an entry such as
<img src="/cgi-bin/count?type=subdirectory length=numDigits"> |
where type specifies the subdirectory for the number type used and length is the number of digits to put in the output, including any padding.
|
Source: | mod_sucgi.c |
Author: | Jason A. Dour |
Type: | CGI under different UID |
Home: | http://www.louisville.edu/~jadour01/mothersoft |
This module is a drop-in replacement for the mod_cgi provided in the Apache release. It allows you to transparently change the UID of CGI scripts to match that of a user.
To enable the functionality, just add the following to your global access configuration file (access.conf):
<Directory userdir/*/cgi-bin> Options ExecCGI </Directory> |
When the server receives a CGI request, it checks it see if it came from a UserDir. If it did, it will pass the request to a supporting CGI program, suCGI, which will check the request and run it with the UID of the appropriate user.
|
Source: | mod_auth_dbi.c |
Author: | Doug MacEachern |
Type: | Authentication |
Home: | http://www.osf.org/~dougm/apache |
This module provides Perl DBI authentication. Database interface (DBI) provides a set of functions, variables, and conventions that you can use to access a database. This programming interface is independent of the database in use. For additional information on DBI, check http://www.hermetica.com/technologia/DBI.
Mod_auth_dbi adds the following directives:
Syntax: | AuthDBIAuth password |
This directive sets the DBI password. It is optional, depending on the driver used.
Syntax: | AuthDBIDB databaseName |
This directive sets the name of the database to use.
Syntax: | AuthDBIDriver nameOfDBIDriver |
AuthDBIDriver sets the name of the DBI driver (for example, Oracle).
Syntax: | AuthDBINameField fieldName |
This directive sets the fieldname within the AuthDBIUserTable in AuthDBIDB database where the username can be found.
Syntax: | AuthDBIPasswordFiled fieldName |
This directive sets the fieldname within the AuthDBIUserTable in the AuthDBIDB database where the user's password can be found.
Syntax: | AuthDBIUser userName |
This directive sets the user's DBI username. It is optional depending on the driver used.
Syntax: | AuthDBIUserTable tableName |
This directive sets the tablename within the AuthDBIDB database where the user and password fields can be found.
Source: | mod_rewrite.c |
Author: | Ralf S. Engelschall |
Type: | URI rewriting |
Home: | http://www.engelschall.com/sw/mod_rewrite |
This is a killer module that even has its own Web site (see Figure 7.2). It uses a regular expression parser to rewrite requested URLs and can use external databases in both ASCII or DBM format for mapping support. This module has been incorporated into the Apache 1.2 release (not yet made public at the time of this writing). Apache 1.2 incorporates a built-in regular expression library. The latest version of mod_rewrite uses this library, which further reduces its impact on Apache.
Figure 7.2. This module also has a nice home page.
mod_rewrite can replace several modules, including some of the default Apache modules (when properly configured). This is great because it can provide more comprehensive functionality while reducing the number of modules needed and the size of the Apache executable.
This module can easily replace mod_alias, mod_userdir (both Apache core modules), mod_userdir_virtual (not covered in this book), mod_userpath, and mod_uri_remap.
If you don't have use for a fully configurable URI rewrite module, there's an additional module that will replace the mod_alias and mod_userdir. This module, mod_rewrite_compat, uses mod_rewrite to provide a plug-and-play replacement to those other two modules.
Oh, yesand this is not a minor detail[dm] mod_rewrite, together with the FastCGI module documentation, is by far the best-documented piece of software available for Apache. This one edges out the FastCGI docs a bit and is easier to use, so it takes first place on my list. Documentation for both these modules is commercial grade, matching documentation produced by Apple Computer or NeXT Software, Inc. (the best documentation I has ever used). Most other modules feature rather thin information that requires users and authors alike to spend a lot of time experimenting with software before they can get it to work. This usually means diving into the source code to determine what really is going on. I didn't have to do that with this one.
For information on mod_rewrite, see Chapter 10, "Apache Modules."
Authors: | Karl Lehenbauer, George Porter, Randy Kunkee, and Horace Vallas |
Type: | Tcl-based, secure server-side scripting language |
Home: | http://www.neosoft.com/neoscript |
The neoinclude module processes NeoWebScripta server-side scripting language based on Tcl. NeoWebScript programs can perform sophisticated data processing and dynamic HTML generation safely, without compromising the system. For comprehensive information on this module, please visit http://www.neosoft.com/neoscript.
Source: | mod_xinclude.c |
Author: | Howard Fear |
Type: | SSI module replacement |
Home: | ftp://pageplus.com/pub/hsf/xssi |
This module implements and extends SSI functionality. In Apache 1.2, it replaces the standard SSI module (mod_include). This module provides additional functionality and directives over the Apache SSI module, including the following:
XSSI (Extended SSI) supports the notion of user-defined variables, which you can use on all value tags with the exception of var= constructs. In addition to the echo, fsize, and flastmod commands, XSSI provides printenv, which prints all variables currently set (this includes CGI environment variables). XSSI also provides basic flow control. For more information on this module, refer to Chapter 6, "Server Side Includes (SSI)."
Author: | Rasmus Lerdorf |
Type: | Server-parsed scripting language with RDBMS support |
Home: | http://www.vex.net/php |
This is a powerful SSI-type scripting language that provides a C-like syntax. Its main features include the following:
For more information, please visit the PHP/FI home page listed at the top of this section.
While modules are great, remember that they get incorporated into the server binary. The more modules you add, the bigger the binary will get, which will increase the resources needed by your system to run the server efficiently. Remember that the server runs multiple copies of the Web server. So increasing the footprint by 100KB may translate into several megabytes depending on the number of server processes you have running. Your production server should only include the default Apache modules and any additional modules you absolutely need.