Netware support.
[oweals/openssl.git] / util / pl / netware.pl
1 # Metrowerks Codewarrior or gcc / nlmconv for NetWare
2 #
3
4 $version_header = "crypto/opensslv.h";
5 open(IN, "$version_header") or die "Couldn't open $version_header: $!";
6 while (<IN>) {
7   if (/^#define[\s\t]+OPENSSL_VERSION_NUMBER[\s\t]+0x(\d)(\d{2})(\d{2})(\d{2})/)
8   {
9     # die "OpenSSL version detected: $1.$2.$3.$4\n";
10     #$nlmvernum = "$1,$2,$3";
11     $nlmvernum = "$1,".($2*10+$3).",".($4*1);
12     #$nlmverstr = "$1.".($2*1).".".($3*1).($4?(chr(96+$4)):"");
13     break;
14   }
15 }
16 close(IN) or die "Couldn't close $version_header: $!";
17
18 $readme_file = "README";
19 open(IN, $readme_file) or die "Couldn't open $readme_file: $!";
20 while (<IN>) {
21   if (/^[\s\t]+OpenSSL[\s\t]+(\d)\.(\d{1,2})\.(\d{1,2})([a-z])(.*)/)
22   {
23     #$nlmvernum = "$1,$2,$3";
24     #$nlmvernum = "$1,".($2*10+$3).",".($4*1);
25     $nlmverstr = "$1.$2.$3$4$5";
26   }
27   elsif (/^[\s\t]+(Copyright \(c\) \d{4}\-\d{4} The OpenSSL Project)$/)
28   {
29     $nlmcpystr = $1;
30   }
31   break if ($nlmvernum && $nlmcpystr);
32 }
33 close(IN) or die "Couldn't close $readme_file: $!";
34
35 # Define stacksize here
36 $nlmstack = "32768";
37
38 # some default settings here in case we failed to find them in README
39 $nlmvernum = "1,0,0" if (!$nlmvernum);
40 $nlmverstr = "OpenSSL" if (!$nlmverstr);
41 $nlmcpystr = "Copyright (c) 1998-now The OpenSSL Project" if (!$nlmcpystr);
42
43 # die "OpenSSL copyright: $nlmcpystr\nOpenSSL verstring: $nlmverstr\nOpenSSL vernumber: $nlmvernum\n";
44
45 # The import files and other misc imports needed to link
46 @misc_imports = ("GetProcessSwitchCount", "RunningProcess",
47                  "GetSuperHighResolutionTimer");
48 if ($LIBC)
49 {
50    @import_files = ("libc.imp");
51    @module_files = ("libc");
52    $libarch = "LIBC";
53 }
54 else
55 {
56    # clib build
57    @import_files = ("clib.imp");
58    push(@import_files, "socklib.imp") if ($BSDSOCK);
59    @module_files = ("clib");
60    # push(@misc_imports, "_rt_modu64%16", "_rt_divu64%16");
61    $libarch = "CLIB";
62 }
63 if ($BSDSOCK)
64 {
65    $libarch .= "-BSD";
66 }
67 else
68 {
69    $libarch .= "-WS2";
70    push(@import_files, "ws2nlm.imp");
71 }
72
73 # The "IMPORTS" environment variable must be set and point to the location
74 # where import files (*.imp) can be found.
75 # Example:  set IMPORTS=c:\ndk\nwsdk\imports
76 $import_path = $ENV{"IMPORTS"} || die ("IMPORTS environment variable not set\n");
77
78
79 # The "PRELUDE" environment variable must be set and point to the location
80 # and name of the prelude source to link with ( nwpre.obj is recommended ).
81 # Example: set PRELUDE=c:\codewar\novell support\metrowerks support\libraries\runtime\nwpre.obj
82 $prelude = $ENV{"PRELUDE"} || die ("PRELUDE environment variable not set\n");
83
84 # The "INCLUDES" environment variable must be set and point to the location
85 # where import files (*.imp) can be found.
86 $include_path = $ENV{"INCLUDE"} || die ("INCLUDES environment variable not set\n");
87 $include_path =~ s/\\/\//g;
88 $include_path = join(" -I", split(/;/, $include_path));
89
90 # check for gcc compiler
91 $gnuc = $ENV{"GNUC"};
92
93 #$ssl=   "ssleay32";
94 #$crypto="libeay32";
95
96 if ($gnuc)
97 {
98    # C compiler
99    $cc='gcc';
100    # Linker
101    $link='nlmconv';
102    # librarian
103    $mklib='ar';
104    $o='/';
105    # cp command
106    $cp='cp -af';
107    # rm command
108    $rm='rm -f';
109    # mv command
110    $mv='mv -f';
111    # mkdir command
112    $mkdir='gmkdir';
113    #$ranlib='ranlib';
114 }
115 else
116 {
117    # C compiler
118    $cc='mwccnlm';
119    # Linker
120    $link='mwldnlm';
121    # librarian
122    $mklib='mwldnlm';
123    # Path separator
124    $o='\\';
125    # cp command
126    $cp='copy >nul:';
127    # rm command
128    $rm='del /f /q';
129 }
130
131 # assembler
132 if ($nw_nasm)
133 {
134    if ($gnuc)
135    {
136       $asm="nasmw -s -f elf";
137    }
138    else
139    {
140       $asm="nasmw -s -f coff -d __coff__";
141    }
142    $afile="-o ";
143    $asm.=" -g" if $debug;
144 }
145 elsif ($nw_mwasm)
146 {
147    $asm="mwasmnlm -maxerrors 20";
148    $afile="-o ";
149    $asm.=" -g" if $debug;
150 }
151 elsif ($nw_masm)
152 {
153 # masm assembly settings - it should be possible to use masm but haven't
154 # got it working.
155 # $asm='ml /Cp /coff /c /Cx';
156 # $asm.=" /Zi" if $debug;
157 # $afile='/Fo';
158    die("Support for masm assembler not yet functional\n");
159 }
160 else
161 {
162    $asm="";
163    $afile="";
164 }
165
166
167
168 if ($gnuc)
169 {
170    # compile flags for GNUC
171    # additional flags based upon debug | non-debug
172    if ($debug)
173    {
174       $cflags="-g -DDEBUG";
175    }
176    else
177    {
178       $cflags="-O2";
179    }
180    $cflags.=" -nostdinc -I$include_path \\
181          -fno-builtin -fpcc-struct-return -fno-strict-aliasing \\
182          -funsigned-char -Wall -Wno-unused -Wno-uninitialized";
183
184    # link flags
185    $lflags="-T";
186 }
187 else
188 {
189    # compile flags for CodeWarrior
190    # additional flags based upon debug | non-debug
191    if ($debug)
192    {
193       $cflags="-opt off -g -sym internal -DDEBUG";
194    }
195    else
196    {
197    # CodeWarrior compiler has a problem with optimizations for floating
198    # points - no optimizations until further investigation
199    #      $cflags="-opt all";
200    }
201
202    # NOTES: Several c files in the crypto subdirectory include headers from
203    #        their local directories.  Metrowerks wouldn't find these h files
204    #        without adding individual include directives as compile flags
205    #        or modifying the c files.  Instead of adding individual include
206    #        paths for each subdirectory a recursive include directive
207    #        is used ( -ir crypto ).
208    #
209    #        A similar issue exists for the engines and apps subdirectories.
210    #
211    #        Turned off the "possible" warnings ( -w nopossible ).  Metrowerks
212    #        complained a lot about various stuff.  May want to turn back
213    #        on for further development.
214    $cflags.=" -nostdinc -ir crypto -ir engines -ir apps -I$include_path \\
215          -msgstyle gcc -align 4 -processor pentium -char unsigned \\
216          -w on -w nolargeargs -w nopossible -w nounusedarg -w nounusedexpr \\
217          -w noimplicitconv -relax_pointers -nosyspath -maxerrors 20";
218
219    # link flags
220    $lflags="-msgstyle gcc -zerobss -nostdlib -sym internal -commandfile";
221 }
222
223 # common defines
224 $cflags.=" -DL_ENDIAN -DOPENSSL_SYSNAME_NETWARE -U_WIN32";
225
226 # If LibC build add in NKS_LIBC define and set the entry/exit
227 # routines - The default entry/exit routines are for CLib and don't exist
228 # in LibC
229 if ($LIBC)
230 {
231    $cflags.=" -DNETWARE_LIBC";
232    $nlmstart = "_LibCPrelude";
233    $nlmexit = "_LibCPostlude";
234    @nlm_flags = ("pseudopreemption", "flag_on 64");
235 }
236 else
237 {
238    $cflags.=" -DNETWARE_CLIB";
239    $nlmstart = "_Prelude";
240    $nlmexit = "_Stop";
241 }
242
243 # If BSD Socket support is requested, set a define for the compiler
244 if ($BSDSOCK)
245 {
246    $cflags.=" -DNETWARE_BSDSOCK";
247    if (!$LIBC)
248    {
249       $cflags.=" -DNETDB_USE_INTERNET";
250    }
251 }
252
253
254 # linking stuff
255 # for the output directories use the mk1mf.pl values with "_nw" appended
256 if ($shlib)
257 {
258    if ($LIBC)
259    {
260       $out_def.="_nw_libc_nlm";
261       $tmp_def.="_nw_libc_nlm";
262       $inc_def.="_nw_libc_nlm";
263    }
264    else  # NETWARE_CLIB
265    {
266       $out_def.="_nw_clib_nlm";
267       $tmp_def.="_nw_clib_nlm";
268       $inc_def.="_nw_clib_nlm";
269    }
270 }
271 else
272 {
273    if ($gnuc) # GNUC Tools
274    {
275       $libp=".a";
276       $shlibp=".a";
277       $lib_flags="-cr";
278    }
279    else       # CodeWarrior
280    {
281       $libp=".lib";
282       $shlibp=".lib";
283       $lib_flags="-nodefaults -type library -o";
284    }
285    if ($LIBC)
286    {
287       $out_def.="_nw_libc";
288       $tmp_def.="_nw_libc";
289       $inc_def.="_nw_libc";
290    }
291    else  # NETWARE_CLIB
292    {
293       $out_def.="_nw_clib";
294       $tmp_def.="_nw_clib";
295       $inc_def.="_nw_clib";
296    }
297 }
298
299 # used by mk1mf.pl
300 $obj='.o';
301 $ofile='-o ';
302 $efile='';
303 $exep='.nlm';
304 $ex_libs='';
305
306 if (!$no_asm)
307 {
308    $bn_asm_obj="\$(OBJ_D)${o}bn-nw${obj}";
309    $bn_asm_src="crypto${o}bn${o}asm${o}bn-nw.asm";
310    $bnco_asm_obj="\$(OBJ_D)${o}co-nw${obj}";
311    $bnco_asm_src="crypto${o}bn${o}asm${o}co-nw.asm";
312    $aes_asm_obj="\$(OBJ_D)${o}a-nw${obj}";
313    $aes_asm_src="crypto${o}aes${o}asm${o}a-nw.asm";
314    $des_enc_obj="\$(OBJ_D)${o}d-nw${obj} \$(OBJ_D)${o}y-nw${obj}";
315    $des_enc_src="crypto${o}des${o}asm${o}d-nw.asm crypto${o}des${o}asm${o}y-nw.asm";
316    $bf_enc_obj="\$(OBJ_D)${o}b-nw${obj}";
317    $bf_enc_src="crypto${o}bf${o}asm${o}b-nw.asm";
318    $cast_enc_obj="\$(OBJ_D)${o}c-nw${obj}";
319    $cast_enc_src="crypto${o}cast${o}asm${o}c-nw.asm";
320    $rc4_enc_obj="\$(OBJ_D)${o}r4-nw${obj}";
321    $rc4_enc_src="crypto${o}rc4${o}asm${o}r4-nw.asm";
322    $rc5_enc_obj="\$(OBJ_D)${o}r5-nw${obj}";
323    $rc5_enc_src="crypto${o}rc5${o}asm${o}r5-nw.asm";
324    $md5_asm_obj="\$(OBJ_D)${o}m5-nw${obj}";
325    $md5_asm_src="crypto${o}md5${o}asm${o}m5-nw.asm";
326    $sha1_asm_obj="\$(OBJ_D)${o}s1-nw${obj}";
327    $sha1_asm_src="crypto${o}sha${o}asm${o}s1-nw.asm";
328    $rmd160_asm_obj="\$(OBJ_D)${o}rm-nw${obj}";
329    $rmd160_asm_src="crypto${o}ripemd${o}asm${o}rm-nw.asm";
330    $whirlpool_asm_obj="\$(OBJ_D)${o}wp-nw${obj}";
331    $whirlpool_asm_src="crypto${o}whrlpool${o}asm${o}wp-nw.asm";
332    $cpuid_asm_obj="\$(OBJ_D)${o}x86cpuid-nw${obj}";
333    $cpuid_asm_src="crypto${o}x86cpuid-nw.asm";
334    $cflags.=" -DOPENSSL_CPUID_OBJ -DBN_ASM -DOPENSSL_BN_ASM_PART_WORDS -DMD5_ASM -DSHA1_ASM -DWHIRLPOOL_ASM";
335    $cflags.=" -DAES_ASM -DRMD160_ASM";
336 }
337 else
338 {
339    $bn_asm_obj='';
340    $bn_asm_src='';
341    $bnco_asm_obj='';
342    $bnco_asm_src='';
343    $aes_asm_obj='';
344    $aes_asm_src='';
345    $des_enc_obj='';
346    $des_enc_src='';
347    $bf_enc_obj='';
348    $bf_enc_src='';
349    $cast_enc_obj='';
350    $cast_enc_src='';
351    $rc4_enc_obj='';
352    $rc4_enc_src='';
353    $rc5_enc_obj='';
354    $rc5_enc_src='';
355    $md5_asm_obj='';
356    $md5_asm_src='';
357    $sha1_asm_obj='';
358    $sha1_asm_src='';
359    $rmd160_asm_obj='';
360    $rmd160_asm_src='';
361    $whirlpool_asm_obj='';
362    $whirlpool_asm_src='';
363    $cpuid_asm_obj='';
364    $cpuid_asm_src='';
365 }
366
367 # create the *.def linker command files in \openssl\netware\ directory
368 sub do_def_file
369 {
370    # strip off the leading path
371    my($target) = bname(shift);
372    my($i);
373
374    if ($target =~ /(.*).nlm/)
375    {
376       $target = $1;
377    }
378
379    # special case for openssl - the mk1mf.pl defines E_EXE = openssl
380    if ($target =~ /E_EXE/)
381    {
382       $target =~ s/\$\(E_EXE\)/openssl/;
383    }
384
385    # Note: originally tried to use full path ( \openssl\netware\$target.def )
386    # Metrowerks linker choked on this with an assertion failure. bug???
387    #
388    my($def_file) = "netware${o}$target.def";
389
390    open(DEF_OUT, ">$def_file") || die("unable to open file $def_file\n");
391
392    print( DEF_OUT "# command file generated by netware.pl for NLM target.\n" );
393    print( DEF_OUT "# do not edit this file - all your changes will be lost!!\n" );
394    print( DEF_OUT "#\n");
395    print( DEF_OUT "DESCRIPTION \"$target ($libarch) - OpenSSL $nlmverstr\"\n");
396    print( DEF_OUT "COPYRIGHT \"$nlmcpystr\"\n");
397    print( DEF_OUT "VERSION $nlmvernum\n");
398    print( DEF_OUT "STACK $nlmstack\n");
399    print( DEF_OUT "START $nlmstart\n");
400    print( DEF_OUT "EXIT $nlmexit\n");
401
402    # special case for openssl
403    if ($target eq "openssl")
404    {
405       print( DEF_OUT "SCREENNAME \"OpenSSL $nlmverstr\"\n");
406    }
407    else
408    {
409       print( DEF_OUT "SCREENNAME \"DEFAULT\"\n");
410    }
411
412    foreach $i (@misc_imports)
413    {
414       print( DEF_OUT "IMPORT $i\n");
415    }
416
417    foreach $i (@import_files)
418    {
419       print( DEF_OUT "IMPORT \@$import_path${o}$i\n");
420    }
421
422    foreach $i (@module_files)
423    {
424       print( DEF_OUT "MODULE $i\n");
425    }
426
427    foreach $i (@nlm_flags)
428    {
429       print( DEF_OUT "$i\n");
430    }
431
432    if ($gnuc)
433    {
434       if ($target =~ /openssl/)
435       {
436          print( DEF_OUT "INPUT ${tmp_def}${o}openssl${obj}\n");
437          print( DEF_OUT "INPUT ${tmp_def}${o}openssl${libp}\n");
438       }
439       else
440       {
441          print( DEF_OUT "INPUT ${tmp_def}${o}${target}${obj}\n");
442       }
443       print( DEF_OUT "INPUT $prelude\n");
444       print( DEF_OUT "INPUT ${out_def}${o}${ssl}${libp} ${out_def}${o}${crypto}${libp}\n");
445       print( DEF_OUT "OUTPUT $target.nlm\n");
446    }
447
448    close(DEF_OUT);
449    return($def_file);
450 }
451
452 sub do_lib_rule
453 {
454    my($objs,$target,$name,$shlib)=@_;
455    my($ret);
456
457    $ret.="$target: $objs\n";
458    if (!$shlib)
459    {
460       $ret.="\t\@echo Building Lib: $name\n";
461       $ret.="\t\$(MKLIB) $lib_flags $target $objs\n";
462       $ret.="\t\@echo .\n"
463    }
464    else
465    {
466       die( "Building as NLM not currently supported!" );
467    }
468
469    $ret.="\n";
470    return($ret);
471 }
472
473 sub do_link_rule
474 {
475    my($target,$files,$dep_libs,$libs)=@_;
476    my($ret);
477    my($def_file) = do_def_file($target);
478
479    $ret.="$target: $files $dep_libs\n";
480
481    # NOTE:  When building the test nlms no screen name is given
482    #  which causes the console screen to be used.  By using the console
483    #  screen there is no "<press any key to continue>" message which
484    #  requires user interaction.  The test script ( do_tests.pl ) needs
485    #  to be able to run the tests without requiring user interaction.
486    #
487    #  However, the sample program "openssl.nlm" is used by the tests and is
488    #  a interactive sample so a screen is desired when not be run by the
489    #  tests.  To solve the problem, two versions of the program are built:
490    #    openssl2 - no screen used by tests
491    #    openssl - default screen - use for normal interactive modes
492    #
493
494    # special case for openssl - the mk1mf.pl defines E_EXE = openssl
495    if ($target =~ /E_EXE/)
496    {
497       my($target2) = $target;
498
499       $target2 =~ s/\(E_EXE\)/\(E_EXE\)2/;
500
501       # openssl2
502       my($def_file2) = do_def_file($target2);
503
504       if ($gnuc)
505       {
506          $ret.="\t\$(MKLIB) $lib_flags \$(TMP_D)${o}\$(E_EXE).a \$(filter-out \$(TMP_D)${o}\$(E_EXE)${obj},$files)\n";
507          $ret.="\t\$(LINK) \$(LFLAGS) $def_file2\n";
508          $ret.="\t\@$mv \$(E_EXE)2.nlm \$(TEST_D)\n";
509       }
510       else
511       {
512          $ret.="\t\$(LINK) \$(LFLAGS) $def_file2 $files \"$prelude\" $libs -o $target2\n";
513       }
514    }
515    if ($gnuc)
516    {
517       $ret.="\t\$(LINK) \$(LFLAGS) $def_file\n";
518       $ret.="\t\@$mv \$(\@F) \$(TEST_D)\n";
519    }
520    else
521    {
522       $ret.="\t\$(LINK) \$(LFLAGS) $def_file $files \"$prelude\" $libs -o $target\n";
523    }
524
525    $ret.="\n";
526    return($ret);
527
528 }
529
530 1;