Your Daily Source for Apache News and Information  
Breaking News Preferences Contribute Triggers Link Us Search About
Apache Today [Your Apache News Source] To internet.com

The Enterprise IM Strategies & Solution Event

Apache HTTPD Links
The Apache Software Foundation
The Java Apache Project
Apache Project
Apache Module Registry
The Apache FAQ
Apache XML Project
PHP Server Side Scripting
Apache-Perl Integration Project
ApacheCon
Apache-Related Projects
The Jakarta Project

  internet.com

Internet News
Internet Investing
Internet Technology
Windows Internet Tech.
Linux/Open Source
Web Developer
ECommerce/Marketing
ISP Resources
ASP Resources
Wireless Internet
Downloads
Internet Resources
Internet Lists
International
EarthWeb
Career Resources

Search internet.com
Advertising Info
Corporate Info
Finding a mod_perl Provider or Becoming One
Nov 27, 2000, 19 :35 UTC (0 Talkback[s]) (2761 reads) (Other stories by Stas Bekman)

By Stas Bekman

In this article we will talk about the nuances of providing mod_perl services and present a few ISPs that successfully do that.

  • You installed mod_perl on your box at home, and you fell in love with it. So now you want to convert your CGI scripts (which currently are running on your favorite ISPs machine) to run under mod_perl. Then you discover that your ISP has never heard of mod_perl, or he refuses to install it for you.
  • You are an old sailor in the ISP business, you have seen it all, you know how many ISPs are out there and you know that the sales margins are too low to keep you happy. You are looking for some new service almost no one else provides, to attract more clients to become your users and hopefully to have a bigger slice of the action than your competitors.

So if you are planning to become an ISP that provides mod_perl services or are just looking for such a provider this article is for you.

Gory Details

An ISP has three choices:

  1. ISPs probably cannot let users run scripts under mod_perl on the main server. There are many reasons for this:

    Scripts might leak memory, due to sloppy programming. There will not be enough memory to run as many servers as required, and clients will be not satisfied with the service because it will be slower.

    The question of file permissions is a very important issue: any user who is allowed to write and run a CGI script can at least read (if not write) any other files that belong to the same user and/or group the web server is running as. Note that it's impossible to run suEXEC and cgiwrap extensions under mod_perl.

    Another issue is the security of the database connections. If you use Apache::DBI, by hacking the Apache::DBI code you can pick a connection from the pool of cached connections even if it was opened by someone else and your scripts are running on the same web server.

    There are many more things to be aware of so at this time you have to say No.

    Of course as an ISP you can run mod_perl internally, without allowing your users to map their scripts so that they will run under mod_perl. If as a part of your service you provide scripts such as guest books, counters etc. which are not available for user modification, you can still can have these scripts running very fast.

  2. But, hey why can't I let my users run their own servers, so I can wash my hands of them and don't have to worry about how dirty and sloppy their code is (assuming that the users are running their servers under their own user names, to prevent them from stealing code and data from each other).

    This option is fine as long as you are not concerned about your new systems resource requirements. If you have even very limited experience with mod_perl, you know that mod_perl enabled Apache servers while freeing up your CPU and allowing you to run scripts very much faster, have huge memory demands (5-20 times that of plain Apache).

    The size depends on the code length, the sloppiness of the programming, possible memory leaks the code might have and all that multiplied by the number of children each server spawns. A very simple example: a server, serving an average number of scripts, demanding 10MB of memory which spawns 10 children, already raises your memory requirements by 100MB (the real requirement is actually much smaller if your OS allows code sharing between processes and programmers exploit these features in their code). Now multiply the average required size by the number of server users you intend to have and you will get the total memory requirement.

    Since ISPs never say No, you'd better take the inverse approach - think of the largest memory size you can afford then divide it by one user's requirements as I have shown in this example, and you will know how many mod_perl users you can afford :)

    But you cannot tell how much memory your users may use? Their requirements from a single server can be very modest, but do you know how many servers they will run? After all, they have full control of httpd.conf - and it has to be this way, since this is essential for the user running mod_perl.

    All this rumbling about memory leads to a single question: is it possible to prevent users from using more than X memory? Or another variation of the question: assuming you have as much memory as you want, can you charge users for their average memory usage?

    If the answer to either of the above questions is Yes, you are all set and your clients will prize your name for letting them run mod_perl! There are tools to restrict resource usage (see for example the man pages for ulimit(3), getrlimit(2), setrlimit(2) and sysconf(3), the last three have the corresponding Perl modules: BSD::Resource and Apache::Resource).

    If you have chosen this option, you have to provide your client with:

    • Shutdown and startup scripts installed together with the rest of your daemon startup scripts (e.g /etc/rc.d directory), so that when you reboot your machine the user's server will be correctly shutdown and will be back online the moment your system starts up. Also make sure to start each server under the user name the server belongs to, or you are going to be in big trouble!

    • Proxy services (in forward or httpd accelerator mode) for the user's virtual host. Since the user will have to run their server on an unprivileged port (>1024), you will have to forward all requests from user.given.virtual.hostname:80 (which is user.given.virtual.hostname without the default port 80) to your.machine.ip:port_assigned_to_user . You will also have to tell the users to code their scripts so that any self referencing URLs are of the form user.given.virtual.hostname.

      Letting the user run a mod_perl server immediately adds a requirement for the user to be able to restart and configure their own server. Only root can bind to port 80, this is why your users have to use port numbers greater than 1024.

      Another solution would be to use a setuid startup script, but think twice before you go with it, since if users can modify the scripts sometimes they will get a root access.

    • Another problem you will have to solve is how to assign ports between users. Since users can pick any port above 1024 to run their server, you will have to lay down some rules here so that multiple servers do not conflict.

      A simple example will demonstrate the importance of this problem: I am a malicious user or I am just a rival of some fellow who runs his server on your ISP. All I need to do is to find out what port my rival's server is listening to (e.g. using netstat(8)) and configure my own server to listen on the same port. Although I am unable to bind to this port, imagine what will happen when you reboot your system and my startup script happens to be run before my rivals! I get the port first, now all requests will be redirected to my server. I'll leave to your imagination what nasty things might happen then.

      Of course the ugly things will quickly be revealed, but not before the damage has been done.

    Basically you can preassign each user a port, without them having to worry about finding a free one, as well as enforce MaxClients and similar values by implementing the following scenario:

    For each user have two configuration files, the main file, httpd.conf (non-writable by user) and the user's file, username.httpd.conf where they can specify their own configuration parameters and override the ones defined in httpd.conf. Here is what the main configuration file looks like:

      httpd.conf
      ----------
      # Global/default settings, the user may override some of these
      ...
      ...
      # Included so that user can set his own configuration
      Include username.httpd.conf
    

      # User-specific settings which will override any potentially
      # dangerous configuration directives in username.httpd.conf
      ...
      ...
    

      username.httpd.conf
      -------------------
      # Settings that your user would like to add/override, like
      # <Location> and PerlModule directives, etc.
    

    Apache reads the global/default settings first. Then it reads the Include'd username.httpd.conf file with whatever settings the user has chosen, and finally it reads the user-specific settings that we don't want the user to override, such as the port number. Even if the user changes the port number in his username.httpd.conf file, Apache reads our settings last, so they take precedence. Note that you can use <Perl> sections to make the configuration much easier.

  3. A much better, but costly solution is co-location. Let the user hook his (or your) stand-alone machine into your network, and forget about this user. Of course either the user or you will have to undertake all the system administration chores and it will cost your client more money.

    Who are the people who seek mod_perl support? They are people who run serious projects/businesses. Money is not usually an obstacle. They can afford a stand alone box, thus achieving their goal of autonomy whilst keeping their ISP happy.

    ISPs Providing mod_perl Services

    So let's present some of the ISPs that provide mod_perl services.

    • A Canadian company called Baremetal (http://BareMetal.com/) provides mod_perl services via front-end proxy and a shared mod_perl backend... which as their technical support claims, works reasonably well for folks that write good code. They're willing to run a dedicated backend mod_perl server for customers that need it. Some of their clients mix mod_cgi and mod_perl as a simple acceleration technique.

      Basic service price is $30/month.

      For more information see http://modperl-space.com/

    • BSB-Software GmbH, located in Frankfurt, Germany provides their own mod_perl applications for clients with standard requirements, thus preventing the security risks and allows trusted users to use their own code, which is usually reviewed by the company's system administrator. For the latter case, httpd.conf is under the control of the ISP so everything is monitored.

      Please contact the company for the updated price list.

      For more information see http://www.bsb-software.com/

    • Digital Wire Consulting, a Switzerland Open Source driven Ebusiness consulting company located in Zurich provides shared and standalone mod_perl systems. The company operates internationally.

      Here are the specifics of this company:

      1. No restrictions in terms of CPU, Bandwidth etc. (so, heavy duty operations are better off with dedicated machines!)

      2. The user has to understand the risk that is involved if he/she is choosing a shared machine. Every user has its own virtual server.

      3. They offer dedicated servers at approximately. $400/month (depending on configuration) + $500 setup.

      4. They don't support any proxy setups. If someone is serious about running mod_perl for a mission critical application, then that person should be willing to pay for dedicated servers!

      5. For a shared server and a mid-size mod_perl web-site, they charge roughly: $100 / Month for hosting only! Installation and setup are extra and based on the time being spent (one hour is $120). Please contact the company for the updated price list.

      For more information see http://www.dwc.ch/

    • Even The Bunker (which claims to be UK's safest site for secure computing) supports mod_perl!!! Their standard server can include mod_perl if requested. All their users are provided with a dedicated machine.

      For more information see http://www.thebunker.net/hosting.htm

    • For more ISPs supporting mod_perl see: http://perl.apache.org/isp.html

      If you are an ISP that support mod_perl and is not listed at the above page, please contact the person who maintains this list and make sure that you will be listed.

    References

    • mod_perl home page: http://perl.apache.org/

    • mod_perl documentation: http://perl.apache.org/#docs

    Want to discuss Perl and mod_perl with other Apache Today readers? Then check out the perl discussions at Apache Today Discussions.

    Related Stories:
    The Perl You Need to Know: Personalization Methods Part 2(Oct 27, 2000)
    The Perl You Need To Know, Part III: Symbolic Actions(Sep 08, 2000)
    Persistent Perl on the Virtual Host(Sep 01, 2000)
    The Perl You Need to Know, Part II: Working with Nested Subroutines(Sep 01, 2000)
    The Perl Basics You Need To Know(Aug 02, 2000)
    Installation of mod_perl-enabled Apache Without Superuser Privileges(Jul 14, 2000)
    Web Automation: PHP vs. Perl vs. PHP(Jul 07, 2000)
    Getting Started with mod_perl in 30 Minutes(Jun 23, 2000)
    mod_perl Guide Version 1.24 Released(Jun 08, 2000)
    Total Modern Mod_perl(Jun 07, 2000)

  Current Newswire:
SECURITY: Flaws Found in PHP Leave Web Servers Open to Attack

Everything Solaris: Apache: Handling Traffic

LinuxEasyInstaller 2.0 final release

Apache 2.0.32 beta is available

Everything Solaris: Apache: The Basics

Apache Jakarta James Mailserver v2.0a2 Released

PostgreSQL v7.2 Final Release

Daemon News: Multiple webservers behind one IP address

Zend Technologies launches Zend Studio 2.0

NuSphere first to enable development of PHP web services


No talkbacks posted.
Enter your comments below.
Your Name: Your Email Address:


Subject: CC: [will also send this talkback to an E-Mail address]
Comments:

See our talkback-policy for or guidelines on talkback content.

The Enterprise IM Strategies & Solution Event
About Triggers Media Kit Security Triggers Login


All times are recorded in UTC.
Linux is a trademark of Linus Torvalds.
Powered by Linux 2.4, Apache 1.3, and PHP 4
Copyright 2002 INT Media Group, Incorporated All Rights Reserved.
Legal Notices,  Licensing, Reprints, & Permissions,  Privacy Policy.
http://www.internet.com/