* sysdeps/unix/sysv/linux/m68k/semtimedop.S: New file.
[glibc/pb-stable.git] / sunrpc / rpc_main.c
blob656f8ae5023f9fc0a0b23ff56993dc8fffae415d
1 /*
2 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
3 * unrestricted use provided that this legend is included on all tape
4 * media and as a part of the software program in whole or part. Users
5 * may copy or modify Sun RPC without charge, but are not authorized
6 * to license or distribute it to anyone else except as part of a product or
7 * program developed by the user or with the express written consent of
8 * Sun Microsystems, Inc.
10 * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
11 * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
12 * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
14 * Sun RPC is provided with no support and without any obligation on the
15 * part of Sun Microsystems, Inc. to assist in its use, correction,
16 * modification or enhancement.
18 * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
19 * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
20 * OR ANY PART THEREOF.
22 * In no event will Sun Microsystems, Inc. be liable for any lost revenue
23 * or profits or other special, indirect and consequential damages, even if
24 * Sun has been advised of the possibility of such damages.
26 * Sun Microsystems, Inc.
27 * 2550 Garcia Avenue
28 * Mountain View, California 94043
32 * From @(#)rpc_main.c 1.30 89/03/30 (C) 1987 SMI;
34 const char main_rcsid[] =
35 "$Id$";
38 * rpc_main.c, Top level of the RPC protocol compiler.
41 #include <errno.h>
42 #include <stdio.h>
43 #include <string.h>
44 #include <unistd.h>
45 #include <libintl.h>
46 #include <ctype.h>
47 #include <sys/types.h>
48 #include <sys/param.h>
49 #include <sys/file.h>
50 #include <sys/stat.h>
51 #include <sys/wait.h>
52 #include "rpc_parse.h"
53 #include "rpc_util.h"
54 #include "rpc_scan.h"
55 #include "proto.h"
57 #define EXTEND 1 /* alias for TRUE */
58 #define DONT_EXTEND 0 /* alias for FALSE */
60 struct commandline
62 int cflag; /* xdr C routines */
63 int hflag; /* header file */
64 int lflag; /* client side stubs */
65 int mflag; /* server side stubs */
66 int nflag; /* netid flag */
67 int sflag; /* server stubs for the given transport */
68 int tflag; /* dispatch Table file */
69 int Ssflag; /* produce server sample code */
70 int Scflag; /* produce client sample code */
71 int makefileflag; /* Generate a template Makefile */
72 const char *infile; /* input module name */
73 const char *outfile; /* output module name */
77 static const char *cmdname;
79 #define SVR4_CPP "/usr/ccs/lib/cpp"
80 #define SUNOS_CPP "/lib/cpp"
82 static const char *svcclosetime = "120";
83 static int cppDefined; /* explicit path for C preprocessor */
84 static const char *CPP = SUNOS_CPP;
85 static const char CPPFLAGS[] = "-C";
86 static char *pathbuf;
87 static int cpp_pid;
88 static const char *allv[] =
90 "rpcgen", "-s", "udp", "-s", "tcp"
92 static int allc = sizeof (allv) / sizeof (allv[0]);
93 static const char *allnv[] =
95 "rpcgen", "-s", "netpath",
97 static int allnc = sizeof (allnv) / sizeof (allnv[0]);
100 * machinations for handling expanding argument list
102 static void addarg (const char *); /* add another argument to the list */
103 static void putarg (int, const char *); /* put argument at specified location */
104 static void clear_args (void); /* clear argument list */
105 static void checkfiles (const char *, const char *);
106 /* check if out file already exists */
108 static void clear_args (void);
109 static char *extendfile (const char *file, const char *ext);
110 static void open_output (const char *infile, const char *outfile);
111 static void add_warning (void);
112 static void clear_args (void);
113 static void find_cpp (void);
114 static void open_input (const char *infile, const char *define);
115 static int check_nettype (const char *name, const char *list_to_check[]);
116 static void c_output (const char *infile, const char *define,
117 int extend, const char *outfile);
118 static void h_output (const char *infile, const char *define,
119 int extend, const char *outfile);
120 static void s_output (int argc, const char *argv[], const char *infile,
121 const char *define, int extend,
122 const char *outfile, int nomain, int netflag);
123 static void l_output (const char *infile, const char *define,
124 int extend, const char *outfile);
125 static void t_output (const char *infile, const char *define,
126 int extend, const char *outfile);
127 static void svc_output (const char *infile, const char *define,
128 int extend, const char *outfile);
129 static void clnt_output (const char *infile, const char *define,
130 int extend, const char *outfile);
131 static void mkfile_output (struct commandline *cmd);
132 static int do_registers (int argc, const char *argv[]);
133 static void addarg (const char *cp);
134 static void putarg (int whereto, const char *cp);
135 static void checkfiles (const char *infile, const char *outfile);
136 static int parseargs (int argc, const char *argv[], struct commandline *cmd);
137 static void usage (void) __attribute__ ((noreturn));
138 static void options_usage (void) __attribute__ ((noreturn));
139 static void c_initialize (void);
140 static char *generate_guard (const char *pathname);
143 #define ARGLISTLEN 20
144 #define FIXEDARGS 2
146 static const char *arglist[ARGLISTLEN];
147 static int argcount = FIXEDARGS;
150 int nonfatalerrors; /* errors */
151 int inetdflag /* = 1 */ ; /* Support for inetd *//* is now the default */
152 int pmflag; /* Support for port monitors */
153 int logflag; /* Use syslog instead of fprintf for errors */
154 int tblflag; /* Support for dispatch table file */
155 int mtflag; /* Support for MT */
157 #define INLINE 3
158 /*length at which to start doing an inline */
160 int inlineflag = INLINE; /* length at which to start doing an inline. 3 = default
161 if 0, no xdr_inline code */
163 int indefinitewait; /* If started by port monitors, hang till it wants */
164 int exitnow; /* If started by port monitors, exit after the call */
165 int timerflag; /* TRUE if !indefinite && !exitnow */
166 int newstyle; /* newstyle of passing arguments (by value) */
167 #ifdef __GNU_LIBRARY__
168 int Cflag = 1; /* ANSI C syntax */
169 #else
170 int Cflag; /* ANSI C/C++ syntax */
171 #endif
172 int CCflag; /* C++ files */
173 static int allfiles; /* generate all files */
174 #ifdef __GNU_LIBRARY__
175 int tirpcflag; /* generating code for tirpc, by default */
176 #else
177 int tirpcflag = 1; /* generating code for tirpc, by default */
178 #endif
179 xdrfunc *xdrfunc_head; /* xdr function list */
180 xdrfunc *xdrfunc_tail; /* xdr function list */
183 main (int argc, const char *argv[])
185 struct commandline cmd;
187 (void) memset ((char *) &cmd, 0, sizeof (struct commandline));
188 clear_args ();
189 if (!parseargs (argc, argv, &cmd))
190 usage ();
192 if (cmd.cflag || cmd.hflag || cmd.lflag || cmd.tflag || cmd.sflag ||
193 cmd.mflag || cmd.nflag || cmd.Ssflag || cmd.Scflag)
195 checkfiles (cmd.infile, cmd.outfile);
197 else
198 checkfiles (cmd.infile, NULL);
200 if (cmd.cflag)
201 c_output (cmd.infile, "-DRPC_XDR", DONT_EXTEND, cmd.outfile);
202 else if (cmd.hflag)
203 h_output (cmd.infile, "-DRPC_HDR", DONT_EXTEND, cmd.outfile);
204 else if (cmd.lflag)
205 l_output (cmd.infile, "-DRPC_CLNT", DONT_EXTEND, cmd.outfile);
206 else if (cmd.sflag || cmd.mflag || (cmd.nflag))
207 s_output (argc, argv, cmd.infile, "-DRPC_SVC", DONT_EXTEND,
208 cmd.outfile, cmd.mflag, cmd.nflag);
209 else if (cmd.tflag)
210 t_output (cmd.infile, "-DRPC_TBL", DONT_EXTEND, cmd.outfile);
211 else if (cmd.Ssflag)
212 svc_output (cmd.infile, "-DRPC_SERVER", DONT_EXTEND, cmd.outfile);
213 else if (cmd.Scflag)
214 clnt_output (cmd.infile, "-DRPC_CLIENT", DONT_EXTEND, cmd.outfile);
215 else if (cmd.makefileflag)
216 mkfile_output (&cmd);
217 else
219 /* the rescans are required, since cpp may effect input */
220 c_output (cmd.infile, "-DRPC_XDR", EXTEND, "_xdr.c");
221 reinitialize ();
222 h_output (cmd.infile, "-DRPC_HDR", EXTEND, ".h");
223 reinitialize ();
224 l_output (cmd.infile, "-DRPC_CLNT", EXTEND, "_clnt.c");
225 reinitialize ();
226 if (inetdflag || !tirpcflag)
227 s_output (allc, allv, cmd.infile, "-DRPC_SVC", EXTEND,
228 "_svc.c", cmd.mflag, cmd.nflag);
229 else
230 s_output (allnc, allnv, cmd.infile, "-DRPC_SVC",
231 EXTEND, "_svc.c", cmd.mflag, cmd.nflag);
232 if (tblflag)
234 reinitialize ();
235 t_output (cmd.infile, "-DRPC_TBL", EXTEND, "_tbl.i");
237 if (allfiles)
239 reinitialize ();
240 svc_output (cmd.infile, "-DRPC_SERVER", EXTEND, "_server.c");
241 reinitialize ();
242 clnt_output (cmd.infile, "-DRPC_CLIENT", EXTEND, "_client.c");
244 if (allfiles || (cmd.makefileflag == 1))
246 reinitialize ();
247 mkfile_output (&cmd);
251 return nonfatalerrors;
255 * add extension to filename
257 static char *
258 extendfile (const char *file, const char *ext)
260 char *res;
261 const char *p;
263 res = alloc (strlen (file) + strlen (ext) + 1);
264 if (res == NULL)
265 abort ();
266 p = strrchr (file, '.');
267 if (p == NULL)
268 p = file + strlen (file);
269 strcpy (res, file);
270 strcpy (res + (p - file), ext);
271 return res;
275 * Open output file with given extension
277 static void
278 open_output (const char *infile, const char *outfile)
280 if (outfile == NULL)
282 fout = stdout;
283 return;
286 if (infile != NULL && streq (outfile, infile))
288 fprintf (stderr, _ ("%s: output would overwrite %s\n"), cmdname,
289 infile);
290 crash ();
292 fout = fopen (outfile, "w");
293 if (fout == NULL)
295 fprintf (stderr, _ ("%s: unable to open %s: %m\n"), cmdname, outfile);
296 crash ();
298 record_open (outfile);
301 /* Close the output file and check for write errors. */
302 static void
303 close_output (const char *outfile)
305 if (fclose (fout) == EOF)
307 fprintf (stderr, _("%s: while writing output %s: %m"), cmdname,
308 outfile ?: "<stdout>");
309 crash ();
313 static void
314 add_warning (void)
316 fprintf (fout, "/*\n");
317 fprintf (fout, " * Please do not edit this file.\n");
318 fprintf (fout, " * It was generated using rpcgen.\n");
319 fprintf (fout, " */\n\n");
322 /* clear list of arguments */
323 static void
324 clear_args (void)
326 int i;
327 for (i = FIXEDARGS; i < ARGLISTLEN; ++i)
328 arglist[i] = NULL;
329 argcount = FIXEDARGS;
332 /* make sure that a CPP exists */
333 static void
334 find_cpp (void)
336 struct stat buf;
338 if (stat (CPP, &buf) < 0)
339 { /* /lib/cpp or explicit cpp does not exist */
340 if (cppDefined)
342 fprintf (stderr, _ ("cannot find C preprocessor: %s \n"), CPP);
343 crash ();
345 else
346 { /* try the other one */
347 CPP = SVR4_CPP;
348 if (stat (CPP, &buf) < 0)
349 { /* can't find any cpp */
350 fputs (_ ("cannot find any C preprocessor (cpp)\n"), stdout);
351 crash ();
358 * Open input file with given define for C-preprocessor
360 static void
361 open_input (const char *infile, const char *define)
363 int pd[2];
365 infilename = (infile == NULL) ? "<stdin>" : infile;
366 if (pipe (pd) != 0)
368 perror ("pipe");
369 exit (1);
371 cpp_pid = fork ();
372 switch (cpp_pid)
374 case 0:
375 find_cpp ();
376 putarg (0, CPP);
377 putarg (1, CPPFLAGS);
378 addarg (define);
379 if (infile)
380 addarg (infile);
381 addarg ((char *) NULL);
382 close (1);
383 dup2 (pd[1], 1);
384 close (pd[0]);
385 execv (arglist[0], (char **) arglist);
386 perror ("execv");
387 exit (1);
388 case -1:
389 perror ("fork");
390 exit (1);
392 close (pd[1]);
393 fin = fdopen (pd[0], "r");
394 if (fin == NULL)
396 fprintf (stderr, "%s: ", cmdname);
397 perror (infilename);
398 crash ();
402 /* Close the connection to the C-preprocessor and check for successfull
403 termination. */
404 static void
405 close_input (void)
407 int status;
409 fclose (fin);
410 /* Check the termination status. */
411 if (waitpid (cpp_pid, &status, 0) < 0)
413 perror ("waitpid");
414 crash ();
416 if (WIFSIGNALED (status) || WEXITSTATUS (status) != 0)
418 if (WIFSIGNALED (status))
419 fprintf (stderr, _("%s: C preprocessor failed with signal %d\n"),
420 cmdname, WTERMSIG (status));
421 else
422 fprintf (stderr, _("%s: C preprocessor failed with exit code %d\n"),
423 cmdname, WEXITSTATUS (status));
424 crash ();
428 /* valid tirpc nettypes */
429 static const char *valid_ti_nettypes[] =
431 "netpath",
432 "visible",
433 "circuit_v",
434 "datagram_v",
435 "circuit_n",
436 "datagram_n",
437 "udp",
438 "tcp",
439 "raw",
440 NULL
443 /* valid inetd nettypes */
444 static const char *valid_i_nettypes[] =
446 "udp",
447 "tcp",
448 NULL
451 static int
452 check_nettype (const char *name, const char *list_to_check[])
454 int i;
455 for (i = 0; list_to_check[i] != NULL; i++)
457 if (strcmp (name, list_to_check[i]) == 0)
459 return 1;
462 fprintf (stderr, _ ("illegal nettype :`%s'\n"), name);
463 return 0;
467 * Compile into an XDR routine output file
470 static void
471 c_output (const char *infile, const char *define, int extend,
472 const char *outfile)
474 definition *def;
475 char *include;
476 const char *outfilename;
477 long tell;
479 c_initialize ();
480 open_input (infile, define);
481 outfilename = extend ? extendfile (infile, outfile) : outfile;
482 open_output (infile, outfilename);
483 add_warning ();
484 if (infile && (include = extendfile (infile, ".h")))
486 fprintf (fout, "#include \"%s\"\n", include);
487 free (include);
488 /* .h file already contains rpc/rpc.h */
490 else
491 fprintf (fout, "#include <rpc/rpc.h>\n");
492 tell = ftell (fout);
493 while ((def = get_definition ()) != NULL)
494 emit (def);
496 if (extend && tell == ftell (fout))
497 unlink (outfilename);
498 close_input ();
499 close_output (outfilename);
502 void
503 c_initialize (void)
506 /* add all the starting basic types */
508 add_type (1, "int");
509 add_type (1, "long");
510 add_type (1, "short");
511 add_type (1, "bool");
513 add_type (1, "u_int");
514 add_type (1, "u_long");
515 add_type (1, "u_short");
519 char rpcgen_table_dcl[] = "struct rpcgen_table {\n\
520 char *(*proc)();\n\
521 xdrproc_t xdr_arg;\n\
522 unsigned len_arg;\n\
523 xdrproc_t xdr_res;\n\
524 unsigned len_res;\n\
525 };\n";
528 static char *
529 generate_guard (const char *pathname)
531 const char *filename;
532 char *guard, *tmp;
534 filename = strrchr (pathname, '/'); /* find last component */
535 filename = ((filename == NULL) ? pathname : filename + 1);
536 guard = strdup (filename);
537 /* convert to upper case */
538 tmp = guard;
539 while (*tmp)
541 if (islower (*tmp))
542 *tmp = toupper (*tmp);
543 tmp++;
546 guard = extendfile (guard, "_H_RPCGEN");
547 return guard;
551 * Compile into an XDR header file
555 static void
556 h_output (const char *infile, const char *define, int extend,
557 const char *outfile)
559 xdrfunc *xdrfuncp;
560 definition *def;
561 const char *ifilename;
562 const char *outfilename;
563 long tell;
564 char *guard;
565 list *l;
567 open_input (infile, define);
568 outfilename = extend ? extendfile (infile, outfile) : outfile;
569 open_output (infile, outfilename);
570 add_warning ();
571 ifilename = (infile == NULL) ? "STDIN" : infile;
572 guard = generate_guard (outfilename ? outfilename : ifilename);
574 fprintf (fout, "#ifndef _%s\n#define _%s\n\n", guard,
575 guard);
577 fprintf (fout, "#include <rpc/rpc.h>\n\n");
579 if (mtflag)
581 fprintf (fout, "#include <pthread.h>\n");
584 /* put the C++ support */
585 if (Cflag && !CCflag)
587 fprintf (fout, "\n#ifdef __cplusplus\n");
588 fprintf (fout, "extern \"C\" {\n");
589 fprintf (fout, "#endif\n\n");
592 tell = ftell (fout);
593 /* print data definitions */
594 while ((def = get_definition ()) != NULL)
596 print_datadef (def);
599 /* print function declarations.
600 Do this after data definitions because they might be used as
601 arguments for functions */
602 for (l = defined; l != NULL; l = l->next)
604 print_funcdef (l->val);
606 /* Now print all xdr func declarations */
607 if (xdrfunc_head != NULL)
609 fprintf (fout, "\n/* the xdr functions */\n");
610 if (CCflag)
612 fprintf (fout, "\n#ifdef __cplusplus\n");
613 fprintf (fout, "extern \"C\" {\n");
614 fprintf (fout, "#endif\n");
616 if (!Cflag)
618 xdrfuncp = xdrfunc_head;
619 while (xdrfuncp != NULL)
621 print_xdr_func_def (xdrfuncp->name,
622 xdrfuncp->pointerp, 2);
623 xdrfuncp = xdrfuncp->next;
626 else
628 int i;
630 for (i = 1; i < 3; ++i)
632 if (i == 1)
633 fprintf (fout, "\n#if defined(__STDC__) || defined(__cplusplus)\n");
634 else
635 fprintf (fout, "\n#else /* K&R C */\n");
637 xdrfuncp = xdrfunc_head;
638 while (xdrfuncp != NULL)
640 print_xdr_func_def (xdrfuncp->name,
641 xdrfuncp->pointerp, i);
642 xdrfuncp = xdrfuncp->next;
645 fprintf (fout, "\n#endif /* K&R C */\n");
649 if (extend && tell == ftell (fout))
651 unlink (outfilename);
653 else if (tblflag)
655 fprintf (fout, rpcgen_table_dcl);
658 if (Cflag)
660 fprintf (fout, "\n#ifdef __cplusplus\n");
661 fprintf (fout, "}\n");
662 fprintf (fout, "#endif\n");
665 fprintf (fout, "\n#endif /* !_%s */\n", guard);
666 close_input ();
667 close_output (outfilename);
671 * Compile into an RPC service
673 static void
674 s_output (int argc, const char *argv[], const char *infile, const char *define,
675 int extend, const char *outfile, int nomain, int netflag)
677 char *include;
678 definition *def;
679 int foundprogram = 0;
680 const char *outfilename;
682 open_input (infile, define);
683 outfilename = extend ? extendfile (infile, outfile) : outfile;
684 open_output (infile, outfilename);
685 add_warning ();
686 if (infile && (include = extendfile (infile, ".h")))
688 fprintf (fout, "#include \"%s\"\n", include);
689 free (include);
691 else
692 fprintf (fout, "#include <rpc/rpc.h>\n");
694 fprintf (fout, "#include <stdio.h>\n");
695 fprintf (fout, "#include <stdlib.h>\n");
696 if (Cflag)
698 fprintf (fout, "#include <rpc/pmap_clnt.h>\n");
699 fprintf (fout, "#include <string.h>\n");
701 if (strcmp (svcclosetime, "-1") == 0)
702 indefinitewait = 1;
703 else if (strcmp (svcclosetime, "0") == 0)
704 exitnow = 1;
705 else if (inetdflag || pmflag)
707 fprintf (fout, "#include <signal.h>\n");
708 timerflag = 1;
711 if (!tirpcflag && inetdflag)
712 #ifdef __GNU_LIBRARY__
713 fprintf (fout, "#include <sys/ioctl.h> /* ioctl, TIOCNOTTY */\n");
714 #else
715 fprintf (fout, "#include <sys/ttycom.h>/* TIOCNOTTY */\n");
716 #endif
717 if (Cflag && (inetdflag || pmflag))
719 #ifdef __GNU_LIBRARY__
720 fprintf (fout, "#include <sys/types.h> /* open */\n");
721 fprintf (fout, "#include <sys/stat.h> /* open */\n");
722 fprintf (fout, "#include <fcntl.h> /* open */\n");
723 fprintf (fout, "#include <unistd.h> /* getdtablesize */\n");
724 #else
725 fprintf (fout, "#ifdef __cplusplus\n");
726 fprintf (fout, "#include <sysent.h> /* getdtablesize, open */\n");
727 fprintf (fout, "#endif /* __cplusplus */\n");
728 if (tirpcflag)
729 fprintf (fout, "#include <unistd.h> /* setsid */\n");
730 #endif
732 #ifdef __GNU_LIBRARY__
733 if (tirpcflag && !(Cflag && (inetdflag || pmflag)))
734 #else
735 if (tirpcflag)
736 #endif
737 fprintf (fout, "#include <sys/types.h>\n");
739 fprintf (fout, "#include <memory.h>\n");
740 #ifndef __GNU_LIBRARY__
741 fprintf (fout, "#include <stropts.h>\n");
742 #endif
743 if (inetdflag || !tirpcflag)
745 fprintf (fout, "#include <sys/socket.h>\n");
746 fprintf (fout, "#include <netinet/in.h>\n");
749 if ((netflag || pmflag) && tirpcflag && !nomain)
751 fprintf (fout, "#include <netconfig.h>\n");
753 if ( /*timerflag && */ tirpcflag)
754 fprintf (fout, "#include <sys/resource.h> /* rlimit */\n");
755 if (logflag || inetdflag || pmflag)
757 #ifdef __GNU_LIBRARY__
758 fprintf (fout, "#include <syslog.h>\n");
759 #else
760 fprintf (fout, "#ifdef SYSLOG\n");
761 fprintf (fout, "#include <syslog.h>\n");
762 fprintf (fout, "#else\n");
763 fprintf (fout, "#define LOG_ERR 1\n");
764 fprintf (fout, "#define openlog(a, b, c)\n");
765 fprintf (fout, "#endif\n");
766 #endif
769 /* for ANSI-C */
770 if (Cflag)
771 fprintf (fout, "\n#ifndef SIG_PF\n#define SIG_PF void(*)(int)\n#endif\n");
773 #ifndef __GNU_LIBRARY__
774 fprintf (fout, "\n#ifdef DEBUG\n#define RPC_SVC_FG\n#endif\n");
775 #endif
776 if (timerflag)
777 fprintf (fout, "\n#define _RPCSVC_CLOSEDOWN %s\n", svcclosetime);
778 while ((def = get_definition ()) != NULL)
780 foundprogram |= (def->def_kind == DEF_PROGRAM);
782 if (extend && !foundprogram)
784 unlink (outfilename);
785 return;
787 write_most (infile, netflag, nomain);
788 if (!nomain)
790 if (!do_registers (argc, argv))
792 if (outfilename)
793 unlink (outfilename);
794 usage ();
796 write_rest ();
798 close_input ();
799 close_output (outfilename);
803 * generate client side stubs
805 static void
806 l_output (const char *infile, const char *define, int extend,
807 const char *outfile)
809 char *include;
810 definition *def;
811 int foundprogram = 0;
812 const char *outfilename;
814 open_input (infile, define);
815 outfilename = extend ? extendfile (infile, outfile) : outfile;
816 open_output (infile, outfilename);
817 add_warning ();
818 if (Cflag)
819 fprintf (fout, "#include <memory.h> /* for memset */\n");
820 if (infile && (include = extendfile (infile, ".h")))
822 fprintf (fout, "#include \"%s\"\n", include);
823 free (include);
825 else
826 fprintf (fout, "#include <rpc/rpc.h>\n");
827 while ((def = get_definition ()) != NULL)
829 foundprogram |= (def->def_kind == DEF_PROGRAM);
831 if (extend && !foundprogram)
833 unlink (outfilename);
834 return;
836 write_stubs ();
837 close_input ();
838 close_output (outfilename);
842 * generate the dispatch table
844 static void
845 t_output (const char *infile, const char *define, int extend,
846 const char *outfile)
848 definition *def;
849 int foundprogram = 0;
850 const char *outfilename;
852 open_input (infile, define);
853 outfilename = extend ? extendfile (infile, outfile) : outfile;
854 open_output (infile, outfilename);
855 add_warning ();
856 while ((def = get_definition ()) != NULL)
858 foundprogram |= (def->def_kind == DEF_PROGRAM);
860 if (extend && !foundprogram)
862 unlink (outfilename);
863 return;
865 write_tables ();
866 close_input ();
867 close_output (outfilename);
870 /* sample routine for the server template */
871 static void
872 svc_output (const char *infile, const char *define, int extend,
873 const char *outfile)
875 definition *def;
876 char *include;
877 const char *outfilename;
878 long tell;
880 open_input (infile, define);
881 outfilename = extend ? extendfile (infile, outfile) : outfile;
882 checkfiles (infile, outfilename);
883 /*check if outfile already exists.
884 if so, print an error message and exit */
885 open_output (infile, outfilename);
886 add_sample_msg ();
888 if (infile && (include = extendfile (infile, ".h")))
890 fprintf (fout, "#include \"%s\"\n", include);
891 free (include);
893 else
894 fprintf (fout, "#include <rpc/rpc.h>\n");
896 tell = ftell (fout);
897 while ((def = get_definition ()) != NULL)
899 write_sample_svc (def);
901 if (extend && tell == ftell (fout))
903 unlink (outfilename);
905 close_input ();
906 close_output (outfilename);
910 /* sample main routine for client */
911 static void
912 clnt_output (const char *infile, const char *define, int extend,
913 const char *outfile)
915 definition *def;
916 char *include;
917 const char *outfilename;
918 long tell;
919 int has_program = 0;
921 open_input (infile, define);
922 outfilename = extend ? extendfile (infile, outfile) : outfile;
923 checkfiles (infile, outfilename);
924 /*check if outfile already exists.
925 if so, print an error message and exit */
927 open_output (infile, outfilename);
928 add_sample_msg ();
929 if (infile && (include = extendfile (infile, ".h")))
931 fprintf (fout, "#include \"%s\"\n", include);
932 free (include);
934 else
935 fprintf (fout, "#include <rpc/rpc.h>\n");
936 tell = ftell (fout);
937 while ((def = get_definition ()) != NULL)
939 has_program += write_sample_clnt (def);
942 if (has_program)
943 write_sample_clnt_main ();
945 if (extend && tell == ftell (fout))
947 unlink (outfilename);
949 close_input ();
950 close_output (outfilename);
953 static char *
954 file_name (const char *file, const char *ext)
956 char *temp;
957 temp = extendfile (file, ext);
959 if (access (temp, F_OK) != -1)
960 return (temp);
961 else
962 return ((char *) " ");
965 static void
966 mkfile_output (struct commandline *cmd)
968 char *mkfilename;
969 const char *clientname, *clntname, *xdrname, *hdrname;
970 const char *servername, *svcname, *servprogname, *clntprogname;
972 svcname = file_name (cmd->infile, "_svc.c");
973 clntname = file_name (cmd->infile, "_clnt.c");
974 xdrname = file_name (cmd->infile, "_xdr.c");
975 hdrname = file_name (cmd->infile, ".h");
977 if (allfiles)
979 servername = extendfile (cmd->infile, "_server.c");
980 clientname = extendfile (cmd->infile, "_client.c");
982 else
984 servername = " ";
985 clientname = " ";
987 servprogname = extendfile (cmd->infile, "_server");
988 clntprogname = extendfile (cmd->infile, "_client");
990 if (allfiles)
992 char *cp, *temp;
994 mkfilename = alloc (strlen ("Makefile.") + strlen (cmd->infile) + 1);
995 temp = rindex (cmd->infile, '.');
996 cp = stpcpy (mkfilename, "Makefile.");
997 strncpy (cp, cmd->infile, (temp - cmd->infile));
999 else
1000 mkfilename = (char *) cmd->outfile;
1002 checkfiles (NULL, mkfilename);
1003 open_output (NULL, mkfilename);
1005 fprintf (fout, "\n# This is a template Makefile generated by rpcgen\n");
1007 f_print (fout, "\n# Parameters\n\n");
1009 f_print (fout, "CLIENT = %s\nSERVER = %s\n\n", clntprogname, servprogname);
1010 f_print (fout, "SOURCES_CLNT.c = \nSOURCES_CLNT.h = \n");
1011 f_print (fout, "SOURCES_SVC.c = \nSOURCES_SVC.h = \n");
1012 f_print (fout, "SOURCES.x = %s\n\n", cmd->infile);
1013 f_print (fout, "TARGETS_SVC.c = %s %s %s \n",
1014 svcname, servername, xdrname);
1015 f_print (fout, "TARGETS_CLNT.c = %s %s %s \n",
1016 clntname, clientname, xdrname);
1017 f_print (fout, "TARGETS = %s %s %s %s %s %s\n\n",
1018 hdrname, xdrname, clntname,
1019 svcname, clientname, servername);
1021 f_print (fout, "OBJECTS_CLNT = $(SOURCES_CLNT.c:%%.c=%%.o) \
1022 $(TARGETS_CLNT.c:%%.c=%%.o)");
1024 f_print (fout, "\nOBJECTS_SVC = $(SOURCES_SVC.c:%%.c=%%.o) \
1025 $(TARGETS_SVC.c:%%.c=%%.o)");
1027 f_print (fout, "\n# Compiler flags \n");
1028 if (mtflag)
1029 fprintf (fout, "\nCPPFLAGS += -D_REENTRANT\nCFLAGS += -g \nLDLIBS \
1030 += -lnsl -lpthread \n ");
1031 else
1032 f_print (fout, "\nCFLAGS += -g \nLDLIBS += -lnsl\n");
1033 f_print (fout, "RPCGENFLAGS = \n");
1035 f_print (fout, "\n# Targets \n\n");
1037 f_print (fout, "all : $(CLIENT) $(SERVER)\n\n");
1038 f_print (fout, "$(TARGETS) : $(SOURCES.x) \n");
1039 f_print (fout, "\trpcgen $(RPCGENFLAGS) $(SOURCES.x)\n\n");
1040 f_print (fout, "$(OBJECTS_CLNT) : $(SOURCES_CLNT.c) $(SOURCES_CLNT.h) \
1041 $(TARGETS_CLNT.c) \n\n");
1043 f_print (fout, "$(OBJECTS_SVC) : $(SOURCES_SVC.c) $(SOURCES_SVC.h) \
1044 $(TARGETS_SVC.c) \n\n");
1045 f_print (fout, "$(CLIENT) : $(OBJECTS_CLNT) \n");
1046 f_print (fout, "\t$(LINK.c) -o $(CLIENT) $(OBJECTS_CLNT) \
1047 $(LDLIBS) \n\n");
1048 f_print (fout, "$(SERVER) : $(OBJECTS_SVC) \n");
1049 f_print (fout, "\t$(LINK.c) -o $(SERVER) $(OBJECTS_SVC) $(LDLIBS)\n\n ");
1050 f_print (fout, "clean:\n\t $(RM) core $(TARGETS) $(OBJECTS_CLNT) \
1051 $(OBJECTS_SVC) $(CLIENT) $(SERVER)\n\n");
1052 close_output (mkfilename);
1056 * Perform registrations for service output
1057 * Return 0 if failed; 1 otherwise.
1059 static int
1060 do_registers (int argc, const char *argv[])
1062 int i;
1064 if (inetdflag || !tirpcflag)
1066 for (i = 1; i < argc; i++)
1068 if (streq (argv[i], "-s"))
1070 if (!check_nettype (argv[i + 1], valid_i_nettypes))
1071 return 0;
1072 write_inetd_register (argv[i + 1]);
1073 i++;
1077 else
1079 for (i = 1; i < argc; i++)
1080 if (streq (argv[i], "-s"))
1082 if (!check_nettype (argv[i + 1], valid_ti_nettypes))
1083 return 0;
1084 write_nettype_register (argv[i + 1]);
1085 i++;
1087 else if (streq (argv[i], "-n"))
1089 write_netid_register (argv[i + 1]);
1090 i++;
1093 return 1;
1097 * Add another argument to the arg list
1099 static void
1100 addarg (const char *cp)
1102 if (argcount >= ARGLISTLEN)
1104 fprintf (stderr, _("rpcgen: too many defines\n"));
1105 crash ();
1106 /*NOTREACHED */
1108 arglist[argcount++] = cp;
1111 static void
1112 putarg (int whereto, const char *cp)
1114 if (whereto >= ARGLISTLEN)
1116 fprintf (stderr, _("rpcgen: arglist coding error\n"));
1117 crash ();
1118 /*NOTREACHED */
1120 arglist[whereto] = cp;
1124 * if input file is stdin and an output file is specified then complain
1125 * if the file already exists. Otherwise the file may get overwritten
1126 * If input file does not exist, exit with an error
1129 static void
1130 checkfiles (const char *infile, const char *outfile)
1132 struct stat buf;
1134 if (infile) /* infile ! = NULL */
1135 if (stat (infile, &buf) < 0)
1137 perror (infile);
1138 crash ();
1140 if (outfile)
1142 if (stat (outfile, &buf) < 0)
1143 return; /* file does not exist */
1144 else
1146 fprintf (stderr,
1147 /* TRANS: the file will not be removed; this is an
1148 TRANS: informative message. */
1149 _("file `%s' already exists and may be overwritten\n"),
1150 outfile);
1151 crash ();
1157 * Parse command line arguments
1159 static int
1160 parseargs (int argc, const char *argv[], struct commandline *cmd)
1162 int i;
1163 int j;
1164 int c;
1165 char flag[(1 << 8 * sizeof (char))];
1166 int nflags;
1168 cmdname = argv[0];
1169 cmd->infile = cmd->outfile = NULL;
1170 if (argc < 2)
1172 return (0);
1174 allfiles = 0;
1175 flag['c'] = 0;
1176 flag['h'] = 0;
1177 flag['l'] = 0;
1178 flag['m'] = 0;
1179 flag['o'] = 0;
1180 flag['s'] = 0;
1181 flag['n'] = 0;
1182 flag['t'] = 0;
1183 flag['S'] = 0;
1184 flag['C'] = 0;
1185 flag['M'] = 0;
1187 for (i = 1; i < argc; i++)
1189 if (argv[i][0] != '-')
1191 if (cmd->infile)
1193 fprintf (stderr,
1194 _("Cannot specify more than one input file!\n"));
1195 return 0;
1197 cmd->infile = argv[i];
1199 else
1201 for (j = 1; argv[i][j] != 0; j++)
1203 c = argv[i][j];
1204 switch (c)
1206 case 'a':
1207 allfiles = 1;
1208 break;
1209 case 'c':
1210 case 'h':
1211 case 'l':
1212 case 'm':
1213 case 't':
1214 if (flag[c])
1215 return 0;
1216 flag[c] = 1;
1217 break;
1218 case 'S':
1219 /* sample flag: Ss or Sc.
1220 Ss means set flag['S'];
1221 Sc means set flag['C'];
1222 Sm means set flag['M']; */
1223 c = argv[i][++j]; /* get next char */
1224 if (c == 's')
1225 c = 'S';
1226 else if (c == 'c')
1227 c = 'C';
1228 else if (c == 'm')
1229 c = 'M';
1230 else
1231 return 0;
1233 if (flag[c])
1234 return 0;
1235 flag[c] = 1;
1236 break;
1237 case 'C': /* ANSI C syntax */
1238 Cflag = 1;
1239 break;
1241 #ifdef __GNU_LIBRARY__
1242 case 'k': /* K&R C syntax */
1243 Cflag = 0;
1244 break;
1246 #endif
1247 case 'b': /* turn TIRPC flag off for
1248 generating backward compatible
1250 tirpcflag = 0;
1251 break;
1253 #ifdef __GNU_LIBRARY__
1254 case '5': /* turn TIRPC flag on for
1255 generating SysVr4 compatible
1257 tirpcflag = 1;
1258 break;
1259 #endif
1260 case 'I':
1261 inetdflag = 1;
1262 break;
1263 case 'N':
1264 newstyle = 1;
1265 break;
1266 case 'L':
1267 logflag = 1;
1268 break;
1269 case 'K':
1270 if (++i == argc)
1272 return (0);
1274 svcclosetime = argv[i];
1275 goto nextarg;
1276 case 'T':
1277 tblflag = 1;
1278 break;
1279 case 'M':
1280 mtflag = 1;
1281 break;
1282 case 'i':
1283 if (++i == argc)
1285 return (0);
1287 inlineflag = atoi (argv[i]);
1288 goto nextarg;
1289 case 'n':
1290 case 'o':
1291 case 's':
1292 if (argv[i][j - 1] != '-' ||
1293 argv[i][j + 1] != 0)
1295 return (0);
1297 flag[c] = 1;
1298 if (++i == argc)
1300 return (0);
1302 if (c == 's')
1304 if (!streq (argv[i], "udp") &&
1305 !streq (argv[i], "tcp"))
1306 return 0;
1308 else if (c == 'o')
1310 if (cmd->outfile)
1311 return 0;
1312 cmd->outfile = argv[i];
1314 goto nextarg;
1315 case 'D':
1316 if (argv[i][j - 1] != '-')
1317 return 0;
1318 addarg (argv[i]);
1319 goto nextarg;
1320 case 'Y':
1321 if (++i == argc)
1322 return 0;
1324 size_t len = strlen (argv[i]);
1325 pathbuf = malloc (len + 5);
1326 if (pathbuf == NULL)
1328 perror (cmdname);
1329 crash ();
1331 stpcpy (stpcpy (pathbuf,
1332 argv[i]),
1333 "/cpp");
1334 CPP = pathbuf;
1335 cppDefined = 1;
1336 goto nextarg;
1339 default:
1340 return 0;
1343 nextarg:
1348 cmd->cflag = flag['c'];
1349 cmd->hflag = flag['h'];
1350 cmd->lflag = flag['l'];
1351 cmd->mflag = flag['m'];
1352 cmd->nflag = flag['n'];
1353 cmd->sflag = flag['s'];
1354 cmd->tflag = flag['t'];
1355 cmd->Ssflag = flag['S'];
1356 cmd->Scflag = flag['C'];
1357 cmd->makefileflag = flag['M'];
1359 #ifndef _RPC_THREAD_SAFE_
1360 if (mtflag || newstyle)
1362 /* glibc doesn't support these flags. */
1363 f_print (stderr,
1364 _("This implementation doesn't support newstyle or MT-safe code!\n"));
1365 return (0);
1367 #endif
1368 if (tirpcflag)
1370 pmflag = inetdflag ? 0 : 1; /* pmflag or inetdflag is always TRUE */
1371 if ((inetdflag && cmd->nflag))
1372 { /* netid not allowed with inetdflag */
1373 fprintf (stderr, _("Cannot use netid flag with inetd flag!\n"));
1374 return 0;
1377 else
1378 { /* 4.1 mode */
1379 pmflag = 0; /* set pmflag only in tirpcmode */
1380 #ifndef __GNU_LIBRARY__
1381 inetdflag = 1; /* inetdflag is TRUE by default */
1382 #endif
1383 if (cmd->nflag)
1384 { /* netid needs TIRPC */
1385 f_print (stderr, _("Cannot use netid flag without TIRPC!\n"));
1386 return (0);
1390 if (newstyle && (tblflag || cmd->tflag))
1392 f_print (stderr, _("Cannot use table flags with newstyle!\n"));
1393 return (0);
1396 /* check no conflicts with file generation flags */
1397 nflags = cmd->cflag + cmd->hflag + cmd->lflag + cmd->mflag +
1398 cmd->sflag + cmd->nflag + cmd->tflag + cmd->Ssflag + cmd->Scflag;
1400 if (nflags == 0)
1402 if (cmd->outfile != NULL || cmd->infile == NULL)
1404 return (0);
1407 else if (cmd->infile == NULL &&
1408 (cmd->Ssflag || cmd->Scflag || cmd->makefileflag))
1410 fprintf (stderr,
1411 _("\"infile\" is required for template generation flags.\n"));
1412 return 0;
1414 if (nflags > 1)
1416 fprintf (stderr, _("Cannot have more than one file generation flag!\n"));
1417 return 0;
1419 return 1;
1422 static void
1423 usage (void)
1425 fprintf (stderr, _("usage: %s infile\n"), cmdname);
1426 fprintf (stderr, _("\t%s [-abkCLNTM][-Dname[=value]] [-i size] \
1427 [-I [-K seconds]] [-Y path] infile\n"), cmdname);
1428 fprintf (stderr, _("\t%s [-c | -h | -l | -m | -t | -Sc | -Ss | -Sm] \
1429 [-o outfile] [infile]\n"), cmdname);
1430 fprintf (stderr, _("\t%s [-s nettype]* [-o outfile] [infile]\n"), cmdname);
1431 fprintf (stderr, _("\t%s [-n netid]* [-o outfile] [infile]\n"), cmdname);
1432 options_usage ();
1433 exit (1);
1436 static void
1437 options_usage (void)
1439 f_print (stderr, "options:\n");
1440 f_print (stderr, "-a\t\tgenerate all files, including samples\n");
1441 f_print (stderr, "-b\t\tbackward compatibility mode (generates code for SunOS 4.1)\n");
1442 f_print (stderr, "-c\t\tgenerate XDR routines\n");
1443 f_print (stderr, "-C\t\tANSI C mode\n");
1444 f_print (stderr, "-Dname[=value]\tdefine a symbol (same as #define)\n");
1445 f_print (stderr, "-h\t\tgenerate header file\n");
1446 f_print (stderr, "-i size\t\tsize at which to start generating inline code\n");
1447 f_print (stderr, "-I\t\tgenerate code for inetd support in server (for SunOS 4.1)\n");
1448 f_print (stderr, "-K seconds\tserver exits after K seconds of inactivity\n");
1449 f_print (stderr, "-l\t\tgenerate client side stubs\n");
1450 f_print (stderr, "-L\t\tserver errors will be printed to syslog\n");
1451 f_print (stderr, "-m\t\tgenerate server side stubs\n");
1452 f_print (stderr, "-M\t\tgenerate MT-safe code\n");
1453 f_print (stderr, "-n netid\tgenerate server code that supports named netid\n");
1454 f_print (stderr, "-N\t\tsupports multiple arguments and call-by-value\n");
1455 f_print (stderr, "-o outfile\tname of the output file\n");
1456 f_print (stderr, "-s nettype\tgenerate server code that supports named nettype\n");
1457 f_print (stderr, "-Sc\t\tgenerate sample client code that uses remote procedures\n");
1458 f_print (stderr, "-Ss\t\tgenerate sample server code that defines remote procedures\n");
1459 f_print (stderr, "-Sm \t\tgenerate makefile template \n");
1460 f_print (stderr, "-t\t\tgenerate RPC dispatch table\n");
1461 f_print (stderr, "-T\t\tgenerate code to support RPC dispatch tables\n");
1462 f_print (stderr, "-Y path\t\tdirectory name to find C preprocessor (cpp)\n");
1464 exit (1);