2 * Copyright (c) 2000 Silicon Graphics, Inc. All Rights Reserved.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of version 2 of the GNU General Public License as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it would be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12 * Further, this software is distributed without any warranty that it is
13 * free of the rightful claim of any third person regarding infringement
14 * or the like. Any license provided herein, whether implied or
15 * otherwise, applies only to this software file. Patent licenses, if
16 * any, provided herein do not apply to combinations of this program with
17 * other software, or any other product whatsoever.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write the Free Software Foundation, Inc., 59
21 * Temple Place - Suite 330, Boston MA 02111-1307, USA.
23 * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
24 * Mountain View, CA 94043, or:
28 * For further information regarding this notice, see:
30 * http://oss.sgi.com/projects/GenInfo/NoticeExplan/
32 /**************************************************************
34 * OS Testing - Silicon Graphics, Inc.
36 * FUNCTION NAME : parse_open_flags
39 * FUNCTION TITLE : converts open flag symbols into bitmask
40 * converts open flag bitmask into symbols
43 * int parse_open_flags(symbols, badname)
47 * char *openflags2symbols(openflags, sep, mode)
52 * AUTHOR : Richard Logan
54 * CO-PILOT(s) : Dean Roehrich
56 * INITIAL RELEASE : UNICOS 8.0
59 * The parse_open_flags function can be used to convert
60 * a list of comma separated open(2) flag symbols (i.e. O_TRUNC)
61 * into the bitmask that can be used by open(2).
62 * If a symbol is unknown and <badname> is not NULL, <badname>
63 * will updated to point that symbol in <string>.
64 * Parse_open_flags will return -1 on this error.
65 * Otherwise parse_open_flags will return the open flag bitmask.
66 * If parse_open_flags returns, <string> will left unchanged.
68 * The openflags2symbols function attempts to convert open flag
69 * bits into human readable symbols (i.e. O_TRUNC). If there
70 * are more than one symbol, the <sep> string will be placed as
71 * a separator between symbols. Commonly used separators would
72 * be a comma "," or pipe "|". If <mode> is one and not all
73 * <openflags> bits can be converted to symbols, the "UNKNOWN"
74 * symbol will be added to return string.
75 * Openflags2symbols will return the indentified symbols.
76 * If no symbols are recognized the return value will be a empty
77 * string or the "UNKNOWN" symbol.
79 * SPECIAL REQUIREMENTS
83 * This should contain the description, author, and date of any
84 * "interesting" modifications (i.e. info should helpful in
85 * maintaining/enhancing this module).
86 * username description
87 * ----------------------------------------------------------------
88 * rrl This code was first created during the beginning
89 * of the SFS testing days. I think that was in 1993.
90 * This code was updated in 05/96.
91 * (05/96) openflags2symbols was written.
94 * Currently (05/96) all known symbols are coded into openflags2symbols.
95 * If new open flags are added this code will have to updated
96 * to know about them or they will not be recognized.
98 **************************************************************/
103 #include <sys/param.h>
104 #include <string.h> /* strcat */
105 #include "open_flags.h"
107 #define UNKNOWN_SYMBOL "UNKNOWN"
109 static char Open_symbols
[512]; /* space for openflags2symbols return value */
116 static struct open_flag_t Open_flags
[] = {
117 { "O_RDONLY", O_RDONLY
},
118 { "O_WRONLY", O_WRONLY
},
119 { "O_RDWR", O_RDWR
},
120 { "O_SYNC", O_SYNC
},
121 { "O_CREAT", O_CREAT
},
122 { "O_TRUNC", O_TRUNC
},
123 { "O_EXCL", O_EXCL
},
124 { "O_APPEND", O_APPEND
},
125 { "O_NONBLOCK", O_NONBLOCK
},
127 { "O_NOCTTY", O_NOCTTY
},
130 { "O_DSYNC", O_DSYNC
},
133 { "O_RSYNC", O_RSYNC
},
136 { "O_ASYNC", O_ASYNC
},
139 { "O_PTYIGN", O_PTYIGN
},
142 { "O_NDELAY", O_NDELAY
},
154 { "O_PLACE", O_PLACE
},
157 { "O_RESTART", O_RESTART
},
160 { "O_SFSXOP", O_SFSXOP
},
163 { "O_SFS_DEFER_TM", O_SFS_DEFER_TM
},
166 { "O_WELLFORMED", O_WELLFORMED
},
169 { "O_LDRAW", O_LDRAW
},
175 { "O_PARALLEL", O_PARALLEL
},
176 { "O_FSA", O_PARALLEL
|O_WELLFORMED
|O_RAW
}, /* short cut */
177 #endif /* O_PARALLEL */
179 { "O_LARGEFILE", O_LARGEFILE
},
182 { "O_DIRECT", O_DIRECT
},
185 { "O_PRIV", O_PRIV
},
191 parse_open_flags(char *string
, char **badname
)
205 for(; ((*cc
!= ',') && (*cc
!= '\0')); cc
++);
211 for(ind
=0; ind
< sizeof(Open_flags
)/sizeof(struct open_flag_t
); ind
++) {
212 if ( strcmp(name
, Open_flags
[ind
].symbol
) == 0 ) {
213 bits
|= Open_flags
[ind
].flag
;
219 *cc
= savecc
; /* restore string */
221 if ( found
== 0 ) { /* invalid name */
222 if ( badname
!= NULL
)
227 if ( savecc
== '\0' )
236 } /* end of parse_open_flags */
240 openflags2symbols(int openflags
, char *sep
, int mode
)
244 int bits
= openflags
;
247 Open_symbols
[0]='\0';
249 size
=sizeof(Open_flags
)/sizeof(struct open_flag_t
);
252 * Deal with special case of O_RDONLY. If O_WRONLY nor O_RDWR
253 * bits are not set, assume O_RDONLY.
256 if ( (bits
& (O_WRONLY
| O_RDWR
)) == 0 ) {
257 strcat(Open_symbols
, "O_RDONLY");
262 * Loop through all but O_RDONLY elments of Open_flags
264 for(ind
=1; ind
< size
; ind
++) {
266 if ( (bits
& Open_flags
[ind
].flag
) == Open_flags
[ind
].flag
) {
268 strcat(Open_symbols
, sep
);
270 strcat(Open_symbols
, Open_flags
[ind
].symbol
);
273 /* remove flag bits from bits */
274 bits
= bits
& (~Open_flags
[ind
].flag
);
279 * If not all bits were identified and mode was equal to 1,
280 * added UNKNOWN_SYMBOL to return string
282 if ( bits
&& mode
== 1 ) { /* not all bits were identified */
284 strcat(Open_symbols
, sep
);
285 strcat(Open_symbols
, UNKNOWN_SYMBOL
);
290 } /* end of openflags2symbols */
296 * The following code provides a UNIT test main for
297 * parse_open_flags and openflags2symbols functions.
310 printf("Usage: %s openflagsbits\n\t%s symbols\n", argv
[0], argv
[0]);
314 if ( sscanf(argv
[1], "%i", &bits
) == 1 ) {
315 printf("openflags2symbols(%#o, \",\", 1) returned %s\n",
316 bits
, openflags2symbols(bits
, ",", 1));
319 ret
=parse_open_flags(argv
[1], &err
);
321 printf("parse_open_flags(%s, &err) returned -1, err = %s\n",
324 printf("parse_open_flags(%s, &err) returned %#o\n", argv
[0], ret
);
330 #endif /* end of UNIT_TEST */