#include <sys/types.h>
#include <sys/stat.h>
#include <stddef.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
static const struct {
char *name;
u_int32_t flag;
int invert;
} mapping[] = {
{ "nosappnd", SF_APPEND, 0 },
{ "nosappend", SF_APPEND, 0 },
{ "noarch", SF_ARCHIVED, 0 },
{ "noarchived", SF_ARCHIVED, 0 },
{ "noschg", SF_IMMUTABLE, 0 },
{ "noschange", SF_IMMUTABLE, 0 },
{ "nosimmutable", SF_IMMUTABLE, 0 },
#ifdef __FreeBSD__
{ "nosunlnk", SF_NOUNLINK, 0 },
{ "nosunlink", SF_NOUNLINK, 0 },
#endif
{ "nouappnd", UF_APPEND, 0 },
{ "nouappend", UF_APPEND, 0 },
{ "nouchg", UF_IMMUTABLE, 0 },
{ "nouchange", UF_IMMUTABLE, 0 },
{ "nouimmutable", UF_IMMUTABLE, 0 },
{ "nodump", UF_NODUMP, 1 },
{ "noopaque", UF_OPAQUE, 0 },
#ifdef __FreeBSD__
{ "nouunlnk", UF_NOUNLINK, 0 },
{ "nouunlink", UF_NOUNLINK, 0 }
#endif
};
#define longestflaglen 12
#define nmappings (sizeof(mapping) / sizeof(mapping[0]))
char *
fflagstostr(u_int32_t flags)
{
char *string;
char *sp, *dp;
u_int32_t setflags;
int i;
if ((string = calloc(nmappings, longestflaglen + 1)) == NULL)
return (NULL);
setflags = flags;
dp = string;
for (i = 0; i < nmappings; i++) {
if (setflags & mapping[i].flag) {
if (dp > string)
*dp++ = ',';
for (sp = mapping[i].invert ? mapping[i].name :
mapping[i].name + 2; *sp; *dp++ = *sp++) ;
setflags &= ~mapping[i].flag;
}
}
*dp = '\0';
return (string);
}
int
strtofflags(char **stringp, u_int32_t *setp, u_int32_t *clrp)
{
char *string, *p;
int i;
if (setp)
*setp = 0;
if (clrp)
*clrp = 0;
string = *stringp;
while ((p = strsep(&string, "\t ,")) != NULL) {
*stringp = p;
if (*p == '\0')
continue;
for (i = 0; i < nmappings; i++) {
if (strcmp(p, mapping[i].name + 2) == 0) {
if (mapping[i].invert) {
if (clrp)
*clrp |= mapping[i].flag;
} else {
if (setp)
*setp |= mapping[i].flag;
}
break;
} else if (strcmp(p, mapping[i].name) == 0) {
if (mapping[i].invert) {
if (setp)
*setp |= mapping[i].flag;
} else {
if (clrp)
*clrp |= mapping[i].flag;
}
break;
}
}
if (i == nmappings)
return 1;
}
return 0;
}