1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341
|
<html>
<head>
<title>AOLserver</title>
</head>
<body>
<h1>AOLserver CGI Interface Guide</h1>
<p>
<small>
$Header: /cvsroot/aolserver/aolserver.com/docs/admin/cgi.html,v 1.1 2002/03/07 19:15:34 kriston Exp $
</small>
<p>
<a href=#1>What is CGI and How Does it Work?</a>
<p>
<a href=#2>Configuring CGI with AOLserver</a>
<p>
<a href=#3>How Web Pages Run CGI Programs</a>
<p>
<a href=#4>Input to CGI Programs</a>
<p>
<a href=#5>Output from CGI Programs</a>
<p>
<a href=#6>Advice for CGI Programming</a>
<p>
<a href=#7>CGI Examples</a>
<p>
<p>
<p>
<p>
<h2><a name=1>What is CGI and How Does it Work?</a></h2>
<p>
CGI (Common Gateway Interface) is a standard way of running programs
from a Web server. Often, CGI programs are used to generate pages
dynamically or to perform some other action when someone fills out an
HTML form and clicks the submit button. AOLserver provides full
support for CGI v1.1.
<p>
Basically, CGI works like this:
<p>
A reader sends a URL that causes the AOLserver to use CGI to run a
program. The AOLserver passes input from the reader to the
program and output from the program back to the reader. CGI
acts as a "gateway" between the AOLserver and the program you
write.
<p>
The program run by CGI can be any type of executable file on the
server platform. For example, you can use C, C++, Perl, Unix shell
scripts, Fortran, or any other compiled or interpreted language. You
can also use Tcl scripts with CGI, though the AOLserver API will not be available to them.
<p>
With AOLserver, you have the option of using the embedded Tcl and C
interfaces instead of CGI. Typically, the Tcl and C interfaces provide
better performance than CGI. (See the AOLserver Tcl Developer's Guide
for information on the Tcl interface and the AOLserver C Developer's
Guide for information on the C interface.)
<p>
You may want to use CGI for existing, shareware, or freeware programs
that use the standard CGI input, output, and environment variables.
Since CGI is a standard interface used by many Web servers, there are
lots of example programs and function libraries available on the World
Wide Web and by ftp. This chapter describes the interface and points
you to locations where you can download examples.
<p>
For example, suppose you have a form that lets people comment on your
Web pages. You want the comments emailed to you and you want to
automatically generate a page and send it back to your reader.
<p>
1. The reader fills out your form and clicks the "Submit" button. The
FORM tag in your page might look like this:
<p>
<FORM METHOD="POST" ACTION="/cgi-bin/myprog">
<p>
The METHOD controls how the information typed into the form is
passed to your program. It can be "GET" or "POST". The ACTION determines which program should be
run.
<p>
Other ways for a reader to run a program are by providing a
direct link to the program without allowing the reader to
supply any variables through a form, or by using the
ISINDEX tag.
<p>
2. When AOLserver gets a request for a URL that maps to a CGI
directory or a CGI file extension (as defined in the configuration
file), it starts a separate process and runs the
program within that process. The AOLserver also sets up a number of
environment variable within that process. These environment variables
include some standard CGI variables, and optionally
any variables you define in the configuration file for this type of
program. 3. The program runs. The program can be any type of
executable program. For example, you can use C, C++, Perl, Unix shell
scripts, or Fortran.
<p>
In this example, the program takes the comments from the form as
input and sends them to you as email. If
the form method is "GET", it gets the input from an
environment variable. If the form method is "POST", it
gets the input from standard input. It also assembles a
HTML page and sends it to standard output.
<p>
4. Any information the program passes to standard output is
automatically sent to the AOLserver when the program finishes
running.
5. The server adds any header information needed to identify the
output and sends it back to the reader's browser,
which displays the output.
<p>
<p>
<p>
<p>
<p>
<h2><a name=2>Configuring CGI with AOLserver</a></h2>
<p>
You can control the behavior of AOLserver's CGI interface by setting
parameters in a configuration file. For example, you can control which
files and directories are treated as CGI programs, you can determine
how to run various types of programs, and you can set a group of
environment variables for each type of program you use.
<p>
Note that if you're defining multiple servers, you will need to
configure the CGI interface for each server.
<p>
To enable and configure CGI:
<p>
1. Edit your AOLserver configuration file, usually named nsd.tcl.
2. Choose the server for which you want to enable CGI. Add the CGI
module to that server. For example:
ns_section "ns/server/Server1/modules"
ns_param nscgi nscgi.so
3. Add a section for the server called
ns/server/server-name/modules/nscgi. For example:
ns_section "ns/server/Server1/modules/nscgi"
4. Add CGI mappings for the server to define the method, URL, and
directory where the CGI programs reside. For example:
ns_section "ns/server/Server1/modules/nscgi"
ns_param Map "GET /cgi /usr/local/cgi"
ns_param Map "POST /*.cgi"
5. Modify other CGI parameters as needed.
6. If you plan to use a program which requires an interpreter, e.g.,
Perl or a shell script, you will need to define an Interpreter in
the Interps section. Follow these steps:
+ Add a definition for the Interps parameter to your CGI
configuration section. For example:
ns_section "ns/server/Server1/modules/nscgi"
ns_param Map "GET /cgi /usr/local/cgi"
ns_param Map "POST /*.cgi"
ns_param Interps CGIinterps
+ Then add an interpreter section containing interpreter
definitions. For example:
ns_section "ns/interps/CGIinterps"
ns_param .pl "c:\perl\bin\perl.exe"
ns_param .sh "c:\mks\mksnt\sh.exe(MKSenv)"
<p>
7. If the interpreter requires environment variables, you will need
to define an Environment section. Follow these steps:
+ Add a definition for the Environment parameter to your CGI
configuration section. For example:
ns_section "ns/server/Server1/modules/nscgi"
ns_param Map "GET /cgi /usr/local/cgi"
ns_param Map "POST /*.cgi"
ns_param Interps CGIinterps
ns_param Environment CGIenvironment
+ Then add an environment section containing variable
definitions. For example:
ns_section "ns/interps/CGIenvironment"
ns_param var1 var1-definition
ns_param var2 var2-definition
<p>
<p>
<p>
<p>
<h2><a name=3>How Web Pages Run CGI Programs</a></h2>
<p>
There are several ways a Web page can run a CGI program:
<br>
* Direct Link: A link in your page can reference a CGI program
directly. Normally, such links are used when you do not need to
send any variables to the program.
<br>
* ISINDEX Tag: This tag can be included in the <HEAD> section of
the page. For example, you could add this tag:
<ISINDEX HREF="/cgi-bin/search.pl" PROMPT="Search for:">
<p>
Normally, the ISINDEX tag is used to run search programs, but
this is not a requirement. You can use this tag to run
CGI programs if you don't care where the field is located
in your page and your program accepts a single variable.
<p>
When you use this tag, the browser adds a field to the Web page.
Readers can type a string in this field. The server
decodes the text the reader typed and sends it to your
CGI program as separate command-line arguments. The
advantage is you don't need to decode the input.
<p>
* Form: You can create a form with multiple fields. Use forms to run
CGI programs when your readers can choose or type values for one
or more variables.The METHOD attribute of the FORM can be either
"GET" or "POST".
<br>
+ The "GET" method causes the field names and values to be
passed to the program in the QUERY_STRING environment
variable.
<br>
+ The "POST" method causes the field names and values to be
passed to the program through standard input. If the input
from your form may be long, it is best to use the POST method
because long strings can be truncated when they are assigned
to an environment variable.
<p>
URLs that Run CGI Programs
<p>
For each method of running a CGI program described in the previous
section, the browser software sends a URL to the server. (In addition,
the HTTP header sent with the URL includes some environment variables).
<p>
Generally the URL to run a CGI program can have these parts:
<p>
CGI path[/extra path information ][?query string]
<br>
* The CGI path is the location of the CGI program to run. The path
can be a relative or absolute reference to the program file.
<br>
* The optional extra path information can be included in the URL to
provide either a directory location the CGI program should use or
some extra information for the CGI program. The path is relative
to the root directory for Web pages. The extra path information is
available to the CGI program in the PATH_INFO environment
variable.
<br>
* The optional query string is preceded by a question mark (?) and
contains either a single variable or a set of field names and
variables for the CGI program to use. The query string is
available to the CGI program in either the QUERY_STRING
environment variable or the standard input location (if the form
method is POST).
<p>
For example, the query string from a form with 3 fields could be:
<p>
Field1=Value1&Field2=Value2&Field3=Value3
<p>
Spaces in the query string are replaced with plus signs (+). Any
special characters (such as ?, =, &, +) are replaced with %xx,
where xx is the hexadecimal value for that character.
<p>
Here are some examples of URLs that could run a CGI program:
<p>
* http://www.mysite.com/cgi-bin/gettime
<p>
This URL runs the gettime program, which could return a page with
the current time. There are no variables, so you might
use this as a direct link.
<p>
* http://www.mysite.com/cgi-bin/listdir/misc/mydir
<p>
This URL runs the listdir program and passes it /misc/mydir as
extra path information. This might be a direct link in a
page.
<p>
* http://www.mysite.com/cgi-bin/search?navigate
<p>
This URL runs the search program and passes it the word
"navigate" as input. This URL doesn't include any field
names, so it might be passed by pages with an ISINDEX
tag.
<p>
* http://www.webcrawler.com/cgi-bin/WebQuery?searchText=word
<p>
This is a real URL that runs the WebCrawler search program and
passes a value for the searchText field of "word".
Normally, CGI programs that accept field values like
these are run from a form.
<p>
If your programs are not executed, make sure the program file allows
read and execute access.
<p>
<p>
<h2><a name=4>Input to CGI Programs</a></h2>
<p>
CGI programs can get input from these sources:
<br>
* Command line: The only type of input that go to the command line
of a CGI program are values typed into an ISINDEX field and
query strings that do not contain an "=" sign (from a direct
link). Forms cannot send variables to the command line.
<br>
* Environment variables: A number of standard environment variables
are always available to the CGI program. You can
specify additional environment variables in the AOLserver
configuration file. And, if the METHOD for a form
is GET, the field names and values are stored in the QUERY_STRING
environment variable.
<br>
* Standard input: If the METHOD for a form is POST, the field names
and values are sent to standard input.
<p>
Accessing Environment Variables
<p>
Different languages allow you to access environment variables in
different ways. Here are some examples:
<p>
C or C++
<p>
#include <stdlib.h>
<p>
char *browser = getenv("HTTP_USER_AGENT");
<p>
Perl
<p>
$browser = $ENV{`HTTP_USER_AGENT'};
<p>
Bourne shell
<p>
BROWSER=$HTTP_USER_AGENT
<p>
C shell
<p>
set BROWSER = $HTTP_USER_AGENT
<p>
Standard Environment Variables
<p>
These standard environment variables are defined for all CGI programs
by the AOLserver:
<p>
AUTH_TYPE:
<p>
If the server supports user authentication, and the script is
protected, this is the protocol-specific authentication method used to
validate the user. For CGI programs run by AOLserver, this is always
"Basic".
<p>
Example: Basic
<p>
CONTENT_LENGTH:
<p>
If the CGI program is run by a form with the POST method, this
variable contains the length of the contents of standard input in
bytes. There is no null or EOF character at the end of standard input,
so in some languages (such as C and Perl) you should check this
variable to find out how many bytes to read from standard input.
<p>
Example: 442
<p>
CONTENT_TYPE:
<p>
If the CGI program is run by a form with the POST method, this
variable contains the MIME type of the information sent by the
browser. Currently, all browsers should send the information as
application/x-www-form-urlencoded. Other types may be added in the
future.
<p>
GATEWAY_INTERFACE:
<p>
The version number of the CGI specification this server supports.
<p>
Example: CGI/1.1
<p>
HTTP_ACCEPT:
<p>
A comma-separated list of the MIME types the browser will accept, as
specified in the HTTP header the browser sends. Many browsers do not
send complete lists, and the list does not include external viewers
the user has installed. If you want to send browser-specific output,
you may also want to check the browser name, which is specified by the
HTTP_USER_AGENT variable.
<p>
Examples:
<br>
*/*, application/x-navidoc
<br>
*/*, image/gif, image/x-xbitmap, image/jpeg
<p>
HTTP_FROM:
<p>
This variable may contain the email address of the reader who caused
the CGI program to run. However, some browsers do not send the email
address for privacy reasons. And, users may enter false email
addresses in their preferences settings.
<p>
Example: itsme@mydomain.com
<p>
HTTP_IF_MODIFIED_SINCE:
<p>
This variable contains a date and time if the browser wants a response
only if the data has been modified since the specified date and time.
The date is in GMT standard time. Many browsers do not send this
information.
<p>
Example: Thursday, 23-Nov-95 17:00:00 GMT
<p>
HTTP_REFERER:
<p>
This variable contains the URL of the page or other location from
which the reader sent the request to run the CGI program. For example,
if the reader runs the program from a form, this variable contains the
URL of that form.
<p>
Example: http://www.mydomain.com/mydir/feedback.htm
<p>
HTTP_USER_AGENT:
<p>
This variable tells which browser the reader is using to send the
request. Normally, the format is "browser name/version".
<p>
Example: Mozilla/1.2N (Windows; I; 16bit)
<p>
PATH_INFO:
<p>
This variable contains any extra path information included in the URL
sent by the browser. Commonly, this type of URL is used to pass a
relative directory location to your program. For example, the
following URL runs the listdir program and passes it /misc/mydir as
extra path information:
<p>
http://www.mysite.com/cgi-bin/listdir/misc/mydir
<p>
Another use for this type of URL is to pass information to the program
without using a form or to pass form-specific variables in addition to
the user-specified variables. For example:
<p>
http://www.mysite.com/cgi-bin/search/keyword=navigate
<p>
Examples: /misc/mydir
/keyword=navigate
<p>
PATH_TRANSLATED:
<p>
This variable translates the relative path from PATH_INFO into the
absolute path by prepending the server's root directory for Web
documents. This is useful because PATH_INFO, which the reader can
view, need not reveal the physical location of your files on the
server.
<p>
Example: /AOLserver/pages/misc/mydir
<p>
QUERY_STRING:
<p>
This variable contains information passed by a form or link to the
program. The QUERY_STRING contains information in the following
situations:
<br>
* The reader submitted a form that uses the GET method.
<br>
* The reader submitted a query in a page with the ISINDEX tag.
(The text the user types is also decoded and sent to the program's
command line in this situation. The QUERY_STRING provides the
non-decoded information.)
<br>
* A direct link included information after a "?" in the URL.
<p>
The QUERY_STRING is encoded in a format like this:
<p>
Field1=Value1&Field2=Value2&Field3=Value3
<p>
Your CGI program should decode the QUERY_STRING. Functions that decode
this string are publicly available functions for most languages. The
string encoding follows these rules:
<br>
* Field name/value pairs are separated by an "&" sign.
<br>
* A field's name and its value are separated by an "=" sign. Field
names are specified by the NAME attribute. Field values depend on
the type of field:
<p>
Text field and text area: The value is the text typed into the
field. Multiline text is sent as one line with the return
character encoded as described below.
<p>
Radio Buttons: The value is the value of the button that is
selected.
<p>
Checkbox: The name and value usually appear in the list only if
the box is checked. Some browsers may send the name of
the checkbox only.
<p>
Selection List: The value of a selection list is the text of the
item that is selected. If multiple items can be selected,
there is a name/value pair with the same name for each
item that is selected.
<p>
Image Field: Two name value pairs are sent. ".x" and ".y" are
added to the field name and the values are the x and y
coordinates (measured in pixels from an origin at the
upper-left corner of the image). For example:
<p>
Figfield.x=185&Figfield.y=37
<p>
Hidden Fields: You can use hidden fields with fixed values (or values
set when a CGI program generated the page). The value is set
with the VALUE attribute. Some older browsers make hidden
fields visible.
<p>
Range Fields: The value is the numeric value of the field (sent as a
string). Some browsers do not support range fields.
<p>
Named Submit Buttons: You can place multiple Submit buttons in a form.
If you add a NAME attribute to the Submit button, that name
will be sent, along with the label of the button as the value.
All the Submit buttons in a form run the same CGI program, but
the CGI program can perform different actions based on which
button was clicked. Some browsers do not support named submit
buttons.
<p>
<br>
* Spaces are replaced by "+" signs.
<br>
* Special characters are replaced by a "%" sign followed by the
hexadecimal value of the character. Here are some common
characters and their hex values:
<p>
# -- %23
= -- %3D
/ -- %2F
% -- %25
: -- %3A
\ -- %5C
& -- %26
; -- %3B
tab -- %0A
+ -- %2B
? -- %3F
return -- %09
<p>
REMOTE_ADDR:
<p>
The IP address of the machine from which or through which the browser
is making the request. This information is always available.
<p>
Example: 199.221.53.76
<p>
REMOTE_HOST:
<p>
The full domain name of the machine from which or through which the
browser is making the request. If this variable is blank because the
browser did not send the information, use the REMOTE_ADDR variable
instead.
<p>
Example: mybox.company.com
<p>
REMOTE_USER:
<p>
If the server prompted the reader for a username and password because
the script is protected by the AOLserver's access control, this
variable contains the username the reader provided.
<p>
Example: nsadmin
<p>
REQUEST_METHOD:
<p>
The method used to send the request to the server. For direct links,
the method is "GET". For requests from forms, the method may be "GET"
or "POST". Another method is "HEAD", which CGI programs can treat like
"GET" or can provide header information without page contents.
<p>
SCRIPT_NAME:
<p>
The virtual path to the CGI script or program being executed from the
URL used to execute the script. You may want to use this variable if
the program generates a page that contains a form that can be used to
run the program again -- for example, to search for another string.
<p>
Example: /cgi-bin/search
<p>
SERVER_NAME:
<p>
The full hostname, domain name alias, or IP address of the server that
ran the CGI program.
<p>
Example: www.mysite.com
128.111.115.9
<p>
SERVER_PORT:
<p>
The server port number to which the request was sent. This may be any
number between 1 and 65,535 (that is not already a well-known port).
The default is 80.
<p>
Example: 80
<p>
SERVER_PROTOCOL:
<p>
The name and version number of the information protocol used to pass
this request from the client to the server.
<p>
Example: HTTP/1.0
<p>
SERVER_SOFTWARE:
<p>
The name and version number of the server software running the CGI
program.
<p>
Example: AOLserver/3.0
<p>
Other Environment Variables:
<p>
In addition to the preceding environment variables, the HTTP header
lines received from the client, if any, are placed into the
environment with the prefix HTTP_ followed by the header name. Any
spaces in the header name are changed to underscores (_). The server
may exclude any headers it has already processed, such as
Content-type, and Content-length.
<p>
Also, you can specify environment variables to be passed to a CGI
program in the AOLserver configuration file.
<p>
Accessing Standard Input
<p>
If a form uses the POST method to send a request, the field names and
values are sent to standard input and the length of this string is
provided in the CONTENT_LENGTH environment variable. The format of the
standard input string is the same as the format of the QUERY_STRING
environment variable when the GET method is used.
<p>
Different languages allow you to access the standard input in
different ways. Here are some simplified examples. Your programs
should also do some error checking.
<p>
C or C++
#include <stdio.h>
#include <stdlib.h>
#define MAX_CONTENT_LENGTH 10000
<p>
char *inputlenstr;
int inputlen;
int status;
char inputtext[MAX_INPUT_LENGTH+1];
<p>
inputlenstr = getenv("CONTENT_LENGTH");
inputlen = atoi(inputlenstr);
status = fread(inputtext, 1, inputlen, stdin);
<p>
Bourne shell
read input (reads contents to $input variable)
<p>
<p>
<p>
<p>
<p>
<h2><a name=5>Output from CGI Programs</a></h2>
<p>
To send output from a CGI program to the reader's browser, you send
the output to the standard output location. Different languages allow
you to send text to standard output in different ways. Here are some
examples:
<p>
<pre>
C or C++
#include <stdio.h>
#include <stdlib.h>
printf("<HEAD><TITLE>Hello</TITLE></HEAD>");
printf("<BODY>You are using %s.</BODY>",
getenv("HTTP_USER_AGENT") );
Perl
print "<HEAD><TITLE>Hello</TITLE></HEAD>";
print "<BODY>";
print "You are using $http_user_agent.</BODY>";
Bourne shell
echo \<HEAD\>\<TITLE\>Hello\</TITLE\>\</HEAD\>
echo \<BODY\>
echo You are using $HTTP_USER_AGENT.\</BODY\>
</pre>
<p>
HTTP Headers
<p>
Messages sent between a Web browser and a Web server contain header
information that the software uses to determine how to display or
interpret the information. The header information is not displayed by
the browser.
<p>
The AOLserver automatically generates some HTTP header information and
your program can add other information to the header.
<p>
Header Information Generated by AOLserver
<p>
When your CGI program sends output to the standard output location,
the server automatically adds the following HTTP header information
before sending the output to the reader's browser:
<p>
<pre>
HTTP/1.0 200 OK
MIME-Version: 1.0
Server: AOLserver/3.0
Date: Monday, 06-Nov-95 17:50:15 GMT
Content-length: 20134
</pre>
<p>
However, if the name of your CGI program begins with "nph-", the
AOLserver will not parse the output you send. Instead, the output is
sent directly to the client. In this case, you must include the
information above in your output. Generally, it is best to avoid using
this "non-parsed header" feature because any errors may be sent to
standard output and could make the header information incorrect. Also,
with non-parsed headers, the server does not interpret the output, so
the response code and content length are written out as 0 (zero) and 0
(zero) in the access log file.
<p>
Header Information Generated by Your Program
<p>
You can specify header information at the beginning of the output you
send back to the client. After the header, add a blank line and then
start the output you want the reader to see. The blank line is
required. Your program should always send the Content-type header
(unless you are using the Location header). The other headers listed
below it are optional. For example,
<p>
<pre>
Content-type: text/html
<HTML>
<HEAD><TITLE>My title</TITLE></HEAD>
<BODY>text goes here...</BODY>
</HTML>
</pre>
<p>
Content-type:
<p>
You should always use this header to specify the MIME type of the
output you are sending (unless you are using the Location header). If
you are sending an HTML page as output, use a Content-type of
text/html. If you are sending untagged text, send a Content-type of
text/plain. If you send images, you might use a Content-type of
image/gif or image/jpeg. You can send any type of output from your CGI
program -- just be sure to specify the correct MIME type.
<p>
Example: Content-type: text/html
<p>
Content-encoding:
<p>
Use this header if the output you are sending is compressed. The
Content-type should specify the type of the uncompressed file. For
example, use x-gzip for GNU zip compression and x-compress for
standard UNIX compression.
<p>
Example: Content-encoding: x-compress
<p>
Expires:
<p>
Use this header to specify when the browser should consider the file
"out-of-date". Browsers can use this date to determine whether to load
the page from their local cache of pages or to reload the file from
the server.
<p>
Example: Expires: Monday, 06-Nov-95 17:50:15 GMT
<p>
Location:
<p>
Use this header if you want to send an existing document as output.
The server automatically sends the document you specify to the
browser. You will probably want to specify a full URL for the
Location. If you specify a complete URL (such as,
http://www.mysite.com/out/response.htm), relative references in that
file will be resolved using the information in the URL you specify. If
you specify a relative URL (such as /out/response.htm), references in
that file will be resolved using the directory that contains the CGI
program.
<p>
If you send a Location header, you do not need to send a Content-type
header. However, you may want to send HTML-tagged text including a
link to the location for browsers that do not support this type of
redirection. You can specfy any type of URL as the output location.
For example, you can send an FTP, Gopher, or News URL.
<p>
Example: Location: http://www.my.org/outbox/accepted.html
<p>
Status:
<p>
The AOLserver sends a status code to the browser in the first line of
every HTTP header. The default status code for success is "200 OK".
You can send other status codes by specifying the Status header.
<p>
Some browsers may not know how to handle all HTTP status codes, so
your program should also send HTML output after the header to describe
error situations that occur.
<p>
Example: Status: 401 Unauthorized
<p>
Sending HTML
<p>
To send a Web page to a reader's browser from a CGI program, first
output this line followed by a blank line:
<p>
Content-type: text/html
<p>
Then, generate and output the HTML tags and content that make up the
page. You can send any HTML tags you would normally use when creating
pages.
<p>
If the file you want to send already exists, you can use the Location
header described in the previous section to send that file as output
from the CGI program.
<p>
<h2><a name=6>Advice for CGI Programming</a></h2>
<p>
<br>
* Which language should I use? You can use any language you feel
comfortable programming in. Of course, programs usually run faster
in compiled language, so if your program is computationally
intensive, you might want to use C or another compiled language.
Most of the examples and shareware programs available on the Web
are written in C or Perl.
<br>
* How can I prevent CGI programs from causing security problems? A
CGI program is basically a program that you let anyone else in the
world run on your system. Someone with bad intentions could cause
you some problems if you don't follow these rules:
<br>
+ Keep your CGI programs in a separate CGI directory or give
them the file extension you specify in the configuration
file. Don't give outsiders write access to these files and
directories This should prevent casual users from reading,
modifying, or adding CGI programs.
<br>
+ Don't allow server-parsed HTML to run on your CGI directory
or on files with extensions mapped as CGI programs.
<br>
+ Don't trust the data the browser sends to your program. Parse
the QUERY_STRING or standard input. If your program is a
non-compiled script, characters with special meanings in that
language can cause problems if the browser fails to encode
them as hexadecimal values.
<br>
+ Check for odd file names and directory paths in the input.
For example, you should be careful about allow paths
containing: ., ../, //, or the name of the directory that
contains your CGI programs.
<br>
+ Be careful with statements that construct and execute a
command line or system call using input from the reader. For
example, be careful using the eval statement in Perl and the
Bourne shell. If the reader sends input that begins with a
semicolon (;), they may be able to get your system to perform
any command they like. Likewise, if you use calls to popen()
and system(), make sure you put a backslash (\) before any
characters with special meaning in the shell that will run.
<br>
* How can I debug my CGI programs? Errors that go to the stderr
location will be available in the AOLserver's server.log file.
<p>
One simple way to debug CGI programs is to temporarily include
print statements that send additional diagnostic
information to the client or to a file. If your program
is written in C and you have a debugging tool on your
system, you can call sleep (or use a long loop) at the
beginning of the program. Then, you can attach to the
program with the debugger while the program is sleeping.
<p>
If your programs are not executed, make sure the program file
allows read and execute access.
<p>
<p>
<p>
<p>
<p>
<h2><a name=7>CGI Examples</a></h2>
<p>
You can download lots of examples and working CGI programs from the
Web. Here are some places to look:
<br>
* Yahoo's page of links to CGI information:
http://www.yahoo.com/Computers_and_Internet/Internet/
World_Wide_Web/CGI___Common_Gateway_Interface/
<br>
* NCSA's ftp site:
ftp://ftp.ncsa.uiuc.edu/Web/httpd/Unix/ncsa_httpd/cgi/
<p>
This site includes set of functions for decoding the QUERY_STRING
environment variable or standard input to your program in
C (ncsa-default.tar.Z), (cgi-lib.pl.Z), and Bourne shell
scripts (AA-1.2.tar.Z).
<p>
<br>
* List of Perl archives:
http://www.seas.upenn.edu/~mengwong/perlhtml.html
<br>
* Virtual Library list of CGI resources:
http://www.charm.net/~web/Vlib/Providers/CGI.html
<br>
* Various script examples at MIT:
http://www-genome.wi.mit.edu/WWW/tools/scripting/
<p>
</body>
</html>
|