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.
28 * Mountain View, California 94043
32 * From @(#)rpc_main.c 1.30 89/03/30 (C) 1987 SMI;
34 const char main_rcsid
[] =
38 * rpc_main.c, Top level of the RPC protocol compiler.
46 #include <sys/types.h>
47 #include <sys/param.h>
51 #include "rpc_parse.h"
56 #define EXTEND 1 /* alias for TRUE */
57 #define DONT_EXTEND 0 /* alias for FALSE */
61 int cflag
; /* xdr C routines */
62 int hflag
; /* header file */
63 int lflag
; /* client side stubs */
64 int mflag
; /* server side stubs */
65 int nflag
; /* netid flag */
66 int sflag
; /* server stubs for the given transport */
67 int tflag
; /* dispatch Table file */
68 int Ssflag
; /* produce server sample code */
69 int Scflag
; /* produce client sample code */
70 int makefileflag
; /* Generate a template Makefile */
71 const char *infile
; /* input module name */
72 const char *outfile
; /* output module name */
76 static const char *cmdname
;
78 #define SVR4_CPP "/usr/ccs/lib/cpp"
79 #define SUNOS_CPP "/lib/cpp"
81 static const char *svcclosetime
= "120";
82 static int cppDefined
= 0; /* explicit path for C preprocessor */
83 static const char *CPP
= SUNOS_CPP
;
84 static char CPPFLAGS
[] = "-C";
87 static const char *allv
[] =
89 "rpcgen", "-s", "udp", "-s", "tcp",
91 static int allc
= sizeof (allv
) / sizeof (allv
[0]);
92 static const char *allnv
[] =
94 "rpcgen", "-s", "netpath",
96 static int allnc
= sizeof (allnv
) / sizeof (allnv
[0]);
99 * machinations for handling expanding argument list
101 static void addarg (const char *); /* add another argument to the list */
102 static void putarg (int, const char *); /* put argument at specified location */
103 static void clear_args (void); /* clear argument list */
104 static void checkfiles (const char *, const char *);
105 /* check if out file already exists */
107 static void clear_args (void);
108 static char *extendfile (const char *file
, const char *ext
);
109 static void open_output (const char *infile
, const char *outfile
);
110 static void add_warning (void);
111 static void clear_args (void);
112 static void find_cpp (void);
113 static void open_input (const char *infile
, const char *define
);
114 static int check_nettype (const char *name
, const char *list_to_check
[]);
115 static void c_output (const char *infile
, const char *define
,
116 int extend
, const char *outfile
);
117 static void h_output (const char *infile
, const char *define
,
118 int extend
, const char *outfile
);
119 static void s_output (int argc
, const char *argv
[], const char *infile
,
120 const char *define
, int extend
,
121 const char *outfile
, int nomain
, int netflag
);
122 static void l_output (const char *infile
, const char *define
,
123 int extend
, const char *outfile
);
124 static void t_output (const char *infile
, const char *define
,
125 int extend
, const char *outfile
);
126 static void svc_output (const char *infile
, const char *define
,
127 int extend
, const char *outfile
);
128 static void clnt_output (const char *infile
, const char *define
,
129 int extend
, const char *outfile
);
130 static void mkfile_output (struct commandline
*cmd
);
131 static int do_registers (int argc
, const char *argv
[]);
132 static void addarg (const char *cp
);
133 static void putarg (int whereto
, const char *cp
);
134 static void checkfiles (const char *infile
, const char *outfile
);
135 static int parseargs (int argc
, const char *argv
[], struct commandline
*cmd
);
136 static void usage (void);
137 static void options_usage (void);
138 static void c_initialize (void);
139 static char *generate_guard (const char *pathname
);
142 #define ARGLISTLEN 20
145 static const char *arglist
[ARGLISTLEN
];
146 static int argcount
= FIXEDARGS
;
149 int nonfatalerrors
; /* errors */
150 int inetdflag
/* = 1 */ ; /* Support for inetd *//* is now the default */
151 int pmflag
; /* Support for port monitors */
152 int logflag
; /* Use syslog instead of fprintf for errors */
153 int tblflag
; /* Support for dispatch table file */
154 int mtflag
; /* Support for MT */
157 /*length at which to start doing an inline */
159 int inlineflag
= INLINE
; /* length at which to start doing an inline. 3 = default
160 if 0, no xdr_inline code */
162 int indefinitewait
; /* If started by port monitors, hang till it wants */
163 int exitnow
; /* If started by port monitors, exit after the call */
164 int timerflag
; /* TRUE if !indefinite && !exitnow */
165 int newstyle
; /* newstyle of passing arguments (by value) */
166 #ifdef __GNU_LIBRARY__
167 int Cflag
= 1; /* ANSI C syntax */
169 int Cflag
= 0; /* ANSI C/C++ syntax */
171 int CCflag
= 0; /* C++ files */
172 static int allfiles
; /* generate all files */
173 #ifdef __GNU_LIBRARY__
174 int tirpcflag
= 0; /* generating code for tirpc, by default */
176 int tirpcflag
= 1; /* generating code for tirpc, by default */
178 xdrfunc
*xdrfunc_head
= NULL
; /* xdr function list */
179 xdrfunc
*xdrfunc_tail
= NULL
; /* xdr function list */
182 main (int argc
, const char *argv
[])
184 struct commandline cmd
;
186 (void) memset ((char *) &cmd
, 0, sizeof (struct commandline
));
188 if (!parseargs (argc
, argv
, &cmd
))
191 if (cmd
.cflag
|| cmd
.hflag
|| cmd
.lflag
|| cmd
.tflag
|| cmd
.sflag
||
192 cmd
.mflag
|| cmd
.nflag
|| cmd
.Ssflag
|| cmd
.Scflag
)
194 checkfiles (cmd
.infile
, cmd
.outfile
);
197 checkfiles (cmd
.infile
, NULL
);
200 c_output (cmd
.infile
, "-DRPC_XDR", DONT_EXTEND
, cmd
.outfile
);
202 h_output (cmd
.infile
, "-DRPC_HDR", DONT_EXTEND
, cmd
.outfile
);
204 l_output (cmd
.infile
, "-DRPC_CLNT", DONT_EXTEND
, cmd
.outfile
);
205 else if (cmd
.sflag
|| cmd
.mflag
|| (cmd
.nflag
))
206 s_output (argc
, argv
, cmd
.infile
, "-DRPC_SVC", DONT_EXTEND
,
207 cmd
.outfile
, cmd
.mflag
, cmd
.nflag
);
209 t_output (cmd
.infile
, "-DRPC_TBL", DONT_EXTEND
, cmd
.outfile
);
211 svc_output (cmd
.infile
, "-DRPC_SERVER", DONT_EXTEND
, cmd
.outfile
);
213 clnt_output (cmd
.infile
, "-DRPC_CLIENT", DONT_EXTEND
, cmd
.outfile
);
214 else if (cmd
.makefileflag
)
215 mkfile_output (&cmd
);
218 /* the rescans are required, since cpp may effect input */
219 c_output (cmd
.infile
, "-DRPC_XDR", EXTEND
, "_xdr.c");
221 h_output (cmd
.infile
, "-DRPC_HDR", EXTEND
, ".h");
223 l_output (cmd
.infile
, "-DRPC_CLNT", EXTEND
, "_clnt.c");
225 if (inetdflag
|| !tirpcflag
)
226 s_output (allc
, allv
, cmd
.infile
, "-DRPC_SVC", EXTEND
,
227 "_svc.c", cmd
.mflag
, cmd
.nflag
);
229 s_output (allnc
, allnv
, cmd
.infile
, "-DRPC_SVC",
230 EXTEND
, "_svc.c", cmd
.mflag
, cmd
.nflag
);
234 t_output (cmd
.infile
, "-DRPC_TBL", EXTEND
, "_tbl.i");
239 svc_output (cmd
.infile
, "-DRPC_SERVER", EXTEND
, "_server.c");
241 clnt_output (cmd
.infile
, "-DRPC_CLIENT", EXTEND
, "_client.c");
243 if (allfiles
|| (cmd
.makefileflag
== 1))
246 mkfile_output (&cmd
);
249 exit (nonfatalerrors
);
254 * add extension to filename
257 extendfile (const char *file
, const char *ext
)
262 res
= alloc (strlen (file
) + strlen (ext
) + 1);
265 p
= strrchr (file
, '.');
267 p
= file
+ strlen (file
);
269 strcpy (res
+ (p
- file
), ext
);
274 * Open output file with given extension
277 open_output (const char *infile
, const char *outfile
)
285 if (infile
!= NULL
&& streq (outfile
, infile
))
287 fprintf (stderr
, _ ("%s: output would overwrite %s\n"), cmdname
,
291 fout
= fopen (outfile
, "w");
294 fprintf (stderr
, _ ("%s: unable to open "), cmdname
);
298 record_open (outfile
);
301 /* Close the output file and check for write errors. */
303 close_output (const char *outfile
)
305 if (fclose (fout
) == EOF
)
307 fprintf (stderr
, _("%s: while writing output: "), cmdname
);
308 perror (outfile
?: "<stdout>");
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 */
327 for (i
= FIXEDARGS
; i
< ARGLISTLEN
; ++i
)
329 argcount
= FIXEDARGS
;
332 /* make sure that a CPP exists */
338 if (stat (CPP
, &buf
) < 0)
339 { /* /lib/cpp or explicit cpp does not exist */
342 fprintf (stderr
, _ ("cannot find C preprocessor: %s \n"), CPP
);
346 { /* try the other one */
348 if (stat (CPP
, &buf
) < 0)
349 { /* can't find any cpp */
350 fputs (_ ("cannot find any C preprocessor (cpp)\n"), stdout
);
358 * Open input file with given define for C-preprocessor
361 open_input (const char *infile
, const char *define
)
365 infilename
= (infile
== NULL
) ? "<stdin>" : infile
;
377 putarg (1, CPPFLAGS
);
381 addarg ((char *) NULL
);
385 execv (arglist
[0], (char **) arglist
);
393 fin
= fdopen (pd
[0], "r");
396 fprintf (stderr
, "%s: ", cmdname
);
402 /* Close the connection to the C-preprocessor and check for successfull
410 /* Check the termination status. */
411 if (waitpid (cpp_pid
, &status
, 0) < 0)
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
));
422 fprintf (stderr
, _("%s: C preprocessor failed with exit code %d\n"),
423 cmdname
, WEXITSTATUS (status
));
428 /* valid tirpc nettypes */
429 static const char *valid_ti_nettypes
[] =
443 /* valid inetd nettypes */
444 static const char *valid_i_nettypes
[] =
452 check_nettype (const char *name
, const char *list_to_check
[])
455 for (i
= 0; list_to_check
[i
] != NULL
; i
++)
457 if (strcmp (name
, list_to_check
[i
]) == 0)
462 fprintf (stderr
, _ ("illegal nettype :`%s'\n"), name
);
467 * Compile into an XDR routine output file
471 c_output (const char *infile
, const char *define
, int extend
,
476 const char *outfilename
;
480 open_input (infile
, define
);
481 outfilename
= extend
? extendfile (infile
, outfile
) : outfile
;
482 open_output (infile
, outfilename
);
484 if (infile
&& (include
= extendfile (infile
, ".h")))
486 fprintf (fout
, "#include \"%s\"\n", include
);
488 /* .h file already contains rpc/rpc.h */
491 fprintf (fout
, "#include <rpc/rpc.h>\n");
493 while ((def
= get_definition ()) != NULL
)
496 if (extend
&& tell
== ftell (fout
))
497 unlink (outfilename
);
499 close_output (outfilename
);
506 /* add all the starting basic types */
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\
521 xdrproc_t xdr_arg;\n\
523 xdrproc_t xdr_res;\n\
529 generate_guard (const char *pathname
)
531 const char *filename
;
534 filename
= strrchr (pathname
, '/'); /* find last component */
535 filename
= ((filename
== NULL
) ? pathname
: filename
+ 1);
536 guard
= strdup (filename
);
537 /* convert to upper case */
542 *tmp
= toupper (*tmp
);
546 guard
= extendfile (guard
, "_H_RPCGEN");
551 * Compile into an XDR header file
556 h_output (const char *infile
, const char *define
, int extend
,
561 const char *ifilename
;
562 const char *outfilename
;
567 open_input (infile
, define
);
568 outfilename
= extend
? extendfile (infile
, outfile
) : outfile
;
569 open_output (infile
, outfilename
);
571 ifilename
= (infile
== NULL
) ? "STDIN" : infile
;
572 guard
= generate_guard (outfilename
? outfilename
: ifilename
);
574 fprintf (fout
, "#ifndef _%s\n#define _%s\n\n", guard
,
577 fprintf (fout
, "#include <rpc/rpc.h>\n\n");
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");
593 /* print data definitions */
594 while ((def
= get_definition ()) != NULL
)
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");
612 fprintf (fout
, "\n#ifdef __cplusplus\n");
613 fprintf (fout
, "extern \"C\" {\n");
614 fprintf (fout
, "#endif\n");
618 xdrfuncp
= xdrfunc_head
;
619 while (xdrfuncp
!= NULL
)
621 print_xdr_func_def (xdrfuncp
->name
,
622 xdrfuncp
->pointerp
, 2);
623 xdrfuncp
= xdrfuncp
->next
;
630 for (i
= 1; i
< 3; ++i
)
633 fprintf (fout
, "\n#if defined(__STDC__) || defined(__cplusplus)\n");
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
);
655 fprintf (fout
, rpcgen_table_dcl
);
660 fprintf (fout
, "\n#ifdef __cplusplus\n");
661 fprintf (fout
, "}\n");
662 fprintf (fout
, "#endif\n");
665 fprintf (fout
, "\n#endif /* !_%s */\n", guard
);
667 close_output (outfilename
);
671 * Compile into an RPC service
674 s_output (int argc
, const char *argv
[], const char *infile
, const char *define
,
675 int extend
, const char *outfile
, int nomain
, int netflag
)
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
);
686 if (infile
&& (include
= extendfile (infile
, ".h")))
688 fprintf (fout
, "#include \"%s\"\n", include
);
692 fprintf (fout
, "#include <rpc/rpc.h>\n");
694 fprintf (fout
, "#include <stdio.h>\n");
695 fprintf (fout
, "#include <stdlib.h>\n");
698 fprintf (fout
, "#include <rpc/pmap_clnt.h>\n");
699 fprintf (fout
, "#include <string.h>\n");
701 if (strcmp (svcclosetime
, "-1") == 0)
703 else if (strcmp (svcclosetime
, "0") == 0)
705 else if (inetdflag
|| pmflag
)
707 fprintf (fout
, "#include <signal.h>\n");
711 if (!tirpcflag
&& inetdflag
)
712 #ifdef __GNU_LIBRARY__
713 fprintf (fout
, "#include <sys/ioctl.h> /* ioctl, TIOCNOTTY */\n");
715 fprintf (fout
, "#include <sys/ttycom.h>/* TIOCNOTTY */\n");
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");
725 fprintf (fout
, "#ifdef __cplusplus\n");
726 fprintf (fout
, "#include <sysent.h> /* getdtablesize, open */\n");
727 fprintf (fout
, "#endif /* __cplusplus */\n");
729 fprintf (fout
, "#include <unistd.h> /* setsid */\n");
732 #ifdef __GNU_LIBRARY__
733 if (tirpcflag
&& !(Cflag
&& (inetdflag
|| pmflag
)))
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");
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");
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");
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");
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
);
787 write_most (infile
, netflag
, nomain
);
790 if (!do_registers (argc
, argv
))
793 unlink (outfilename
);
799 close_output (outfilename
);
803 * generate client side stubs
806 l_output (const char *infile
, const char *define
, int extend
,
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
);
819 fprintf (fout
, "#include <memory.h> /* for memset */\n");
820 if (infile
&& (include
= extendfile (infile
, ".h")))
822 fprintf (fout
, "#include \"%s\"\n", include
);
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
);
838 close_output (outfilename
);
842 * generate the dispatch table
845 t_output (const char *infile
, const char *define
, int extend
,
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
);
856 while ((def
= get_definition ()) != NULL
)
858 foundprogram
|= (def
->def_kind
== DEF_PROGRAM
);
860 if (extend
&& !foundprogram
)
862 unlink (outfilename
);
867 close_output (outfilename
);
870 /* sample routine for the server template */
872 svc_output (const char *infile
, const char *define
, int extend
,
877 const char *outfilename
;
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
);
888 if (infile
&& (include
= extendfile (infile
, ".h")))
890 fprintf (fout
, "#include \"%s\"\n", include
);
894 fprintf (fout
, "#include <rpc/rpc.h>\n");
897 while ((def
= get_definition ()) != NULL
)
899 write_sample_svc (def
);
901 if (extend
&& tell
== ftell (fout
))
903 unlink (outfilename
);
906 close_output (outfilename
);
910 /* sample main routine for client */
912 clnt_output (const char *infile
, const char *define
, int extend
,
917 const char *outfilename
;
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
);
929 if (infile
&& (include
= extendfile (infile
, ".h")))
931 fprintf (fout
, "#include \"%s\"\n", include
);
935 fprintf (fout
, "#include <rpc/rpc.h>\n");
937 while ((def
= get_definition ()) != NULL
)
939 has_program
+= write_sample_clnt (def
);
943 write_sample_clnt_main ();
945 if (extend
&& tell
== ftell (fout
))
947 unlink (outfilename
);
950 close_output (outfilename
);
954 file_name (const char *file
, const char *ext
)
957 temp
= extendfile (file
, ext
);
959 if (access (temp
, F_OK
) != -1)
962 return ((char *) " ");
966 mkfile_output (struct commandline
*cmd
)
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");
979 servername
= extendfile (cmd
->infile
, "_server.c");
980 clientname
= extendfile (cmd
->infile
, "_client.c");
987 servprogname
= extendfile (cmd
->infile
, "_server");
988 clntprogname
= extendfile (cmd
->infile
, "_client");
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
));
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");
1029 fprintf (fout
, "\nCPPFLAGS += -D_REENTRANT\nCFLAGS += -g \nLDLIBS \
1030 += -lnsl -lpthread \n ");
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) \
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.
1060 do_registers (int argc
, const char *argv
[])
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
))
1072 write_inetd_register (argv
[i
+ 1]);
1079 for (i
= 1; i
< argc
; i
++)
1080 if (streq (argv
[i
], "-s"))
1082 if (!check_nettype (argv
[i
+ 1], valid_ti_nettypes
))
1084 write_nettype_register (argv
[i
+ 1]);
1087 else if (streq (argv
[i
], "-n"))
1089 write_netid_register (argv
[i
+ 1]);
1097 * Add another argument to the arg list
1100 addarg (const char *cp
)
1102 if (argcount
>= ARGLISTLEN
)
1104 fprintf (stderr
, _("rpcgen: too many defines\n"));
1108 arglist
[argcount
++] = cp
;
1112 putarg (int whereto
, const char *cp
)
1114 if (whereto
>= ARGLISTLEN
)
1116 fprintf (stderr
, _("rpcgen: arglist coding error\n"));
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
1130 checkfiles (const char *infile
, const char *outfile
)
1134 if (infile
) /* infile ! = NULL */
1135 if (stat (infile
, &buf
) < 0)
1142 if (stat (outfile
, &buf
) < 0)
1143 return; /* file does not exist */
1147 _("file `%s' already exists and may be overwritten\n"),
1155 * Parse command line arguments
1158 parseargs (int argc
, const char *argv
[], struct commandline
*cmd
)
1163 char flag
[(1 << 8 * sizeof (char))];
1167 cmd
->infile
= cmd
->outfile
= NULL
;
1185 for (i
= 1; i
< argc
; i
++)
1187 if (argv
[i
][0] != '-')
1192 _("Cannot specify more than one input file!\n"));
1195 cmd
->infile
= argv
[i
];
1199 for (j
= 1; argv
[i
][j
] != 0; j
++)
1217 /* sample flag: Ss or Sc.
1218 Ss means set flag['S'];
1219 Sc means set flag['C'];
1220 Sm means set flag['M']; */
1221 c
= argv
[i
][++j
]; /* get next char */
1235 case 'C': /* ANSI C syntax */
1239 #ifdef __GNU_LIBRARY__
1240 case 'k': /* K&R C syntax */
1245 case 'b': /* turn TIRPC flag off for
1246 generating backward compatible
1251 #ifdef __GNU_LIBRARY__
1252 case '5': /* turn TIRPC flag on for
1253 generating SysVr4 compatible
1272 svcclosetime
= argv
[i
];
1285 inlineflag
= atoi (argv
[i
]);
1290 if (argv
[i
][j
- 1] != '-' ||
1291 argv
[i
][j
+ 1] != 0)
1302 if (!streq (argv
[i
], "udp") &&
1303 !streq (argv
[i
], "tcp"))
1310 cmd
->outfile
= argv
[i
];
1314 if (argv
[i
][j
- 1] != '-')
1322 size_t len
= strlen (argv
[i
]);
1323 pathbuf
= malloc (len
+ 5);
1324 if (pathbuf
== NULL
)
1329 stpcpy (stpcpy (pathbuf
,
1346 cmd
->cflag
= flag
['c'];
1347 cmd
->hflag
= flag
['h'];
1348 cmd
->lflag
= flag
['l'];
1349 cmd
->mflag
= flag
['m'];
1350 cmd
->nflag
= flag
['n'];
1351 cmd
->sflag
= flag
['s'];
1352 cmd
->tflag
= flag
['t'];
1353 cmd
->Ssflag
= flag
['S'];
1354 cmd
->Scflag
= flag
['C'];
1355 cmd
->makefileflag
= flag
['M'];
1359 pmflag
= inetdflag
? 0 : 1; /* pmflag or inetdflag is always TRUE */
1360 if ((inetdflag
&& cmd
->nflag
))
1361 { /* netid not allowed with inetdflag */
1362 fprintf (stderr
, _("Cannot use netid flag with inetd flag!\n"));
1368 pmflag
= 0; /* set pmflag only in tirpcmode */
1369 #ifndef __GNU_LIBRARY__
1370 inetdflag
= 1; /* inetdflag is TRUE by default */
1373 { /* netid needs TIRPC */
1374 f_print (stderr
, _("Cannot use netid flag without TIRPC!\n"));
1379 if (newstyle
&& (tblflag
|| cmd
->tflag
))
1381 f_print (stderr
, _("Cannot use table flags with newstyle!\n"));
1385 /* check no conflicts with file generation flags */
1386 nflags
= cmd
->cflag
+ cmd
->hflag
+ cmd
->lflag
+ cmd
->mflag
+
1387 cmd
->sflag
+ cmd
->nflag
+ cmd
->tflag
+ cmd
->Ssflag
+ cmd
->Scflag
;
1391 if (cmd
->outfile
!= NULL
|| cmd
->infile
== NULL
)
1396 else if (cmd
->infile
== NULL
&&
1397 (cmd
->Ssflag
|| cmd
->Scflag
|| cmd
->makefileflag
))
1400 _("\"infile\" is required for template generation flags.\n"));
1405 fprintf (stderr
, _("Cannot have more than one file generation flag!\n"));
1414 fprintf (stderr
, _("usage: %s infile\n"), cmdname
);
1415 fprintf (stderr
, _("\t%s [-abkCLNTM][-Dname[=value]] [-i size] \
1416 [-I [-K seconds]] [-Y path] infile\n"), cmdname
);
1417 fprintf (stderr
, _("\t%s [-c | -h | -l | -m | -t | -Sc | -Ss | -Sm] \
1418 [-o outfile] [infile]\n"), cmdname
);
1419 fprintf (stderr
, _("\t%s [-s nettype]* [-o outfile] [infile]\n"), cmdname
);
1420 fprintf (stderr
, _("\t%s [-n netid]* [-o outfile] [infile]\n"), cmdname
);
1426 options_usage (void)
1428 f_print (stderr
, "options:\n");
1429 f_print (stderr
, "-a\t\tgenerate all files, including samples\n");
1430 f_print (stderr
, "-b\t\tbackward compatibility mode (generates code for SunOS 4.1)\n");
1431 f_print (stderr
, "-c\t\tgenerate XDR routines\n");
1432 f_print (stderr
, "-C\t\tANSI C mode\n");
1433 f_print (stderr
, "-Dname[=value]\tdefine a symbol (same as #define)\n");
1434 f_print (stderr
, "-h\t\tgenerate header file\n");
1435 f_print (stderr
, "-i size\t\tsize at which to start generating inline code\n");
1436 f_print (stderr
, "-I\t\tgenerate code for inetd support in server (for SunOS 4.1)\n");
1437 f_print (stderr
, "-K seconds\tserver exits after K seconds of inactivity\n");
1438 f_print (stderr
, "-l\t\tgenerate client side stubs\n");
1439 f_print (stderr
, "-L\t\tserver errors will be printed to syslog\n");
1440 f_print (stderr
, "-m\t\tgenerate server side stubs\n");
1441 f_print (stderr
, "-M\t\tgenerate MT-safe code\n");
1442 f_print (stderr
, "-n netid\tgenerate server code that supports named netid\n");
1443 f_print (stderr
, "-N\t\tsupports multiple arguments and call-by-value\n");
1444 f_print (stderr
, "-o outfile\tname of the output file\n");
1445 f_print (stderr
, "-s nettype\tgenerate server code that supports named nettype\n");
1446 f_print (stderr
, "-Sc\t\tgenerate sample client code that uses remote procedures\n");
1447 f_print (stderr
, "-Ss\t\tgenerate sample server code that defines remote procedures\n");
1448 f_print (stderr
, "-Sm \t\tgenerate makefile template \n");
1449 f_print (stderr
, "-t\t\tgenerate RPC dispatch table\n");
1450 f_print (stderr
, "-T\t\tgenerate code to support RPC dispatch tables\n");
1451 f_print (stderr
, "-Y path\t\tdirectory name to find C preprocessor (cpp)\n");