/*
* Copyright (c) 2014 Gary Mills
* Copyright 2014 Garrett D'Amore <garrett@damore.org>
* Copyright 2011, Nexenta Systems, Inc. All rights reserved.
* Copyright (c) 1994 Powerdog Industries. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer
* distribution.
*
* THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation
* are those of the authors and should not be interpreted as representing
* official policies, either expressed or implied, of Powerdog Industries.
*/
#include "lint.h"
#include <time.h>
#include <ctype.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <pthread.h>
#include <alloca.h>
#include <locale.h>
#include "timelocal.h"
#include "localeimpl.h"
#define asizeof(a) (sizeof (a) / sizeof ((a)[0]))
static char *
{
char c;
const char *ptr;
recurse = 1;
while (*ptr != 0) {
if (*buf == 0)
break;
c = *ptr++;
if (c != '%') {
if (isspace(c))
buf++;
else if (c != *buf++)
return (NULL);
continue;
}
Ealternative = 0;
Oalternative = 0;
c = *ptr++;
switch (c) {
case 0:
case '%':
if (*buf++ != '%')
return (NULL);
break;
case '+':
return (NULL);
break;
case 'C':
return (NULL);
/* XXX This will break for 3-digit centuries. */
len = 2;
i *= 10;
i += *buf - '0';
len--;
}
if (i < 19)
return (NULL);
break;
case 'c':
return (NULL);
break;
case 'D':
return (NULL);
break;
case 'E':
if (Ealternative || Oalternative)
break;
Ealternative++;
goto label;
case 'O':
if (Ealternative || Oalternative)
break;
Oalternative++;
goto label;
case 'F':
return (NULL);
break;
case 'R':
return (NULL);
break;
case 'r':
return (NULL);
break;
case 'T':
return (NULL);
break;
case 'X':
return (NULL);
break;
case 'x':
return (NULL);
break;
case 'j':
return (NULL);
len = 3;
i *= 10;
i += *buf - '0';
len--;
}
if (i < 1 || i > 366)
return (NULL);
break;
case 'M':
case 'S':
break;
return (NULL);
len = 2;
i *= 10;
i += *buf - '0';
len--;
}
if (c == 'M') {
if (i > 59)
return (NULL);
} else {
if (i > 60)
return (NULL);
}
break;
case 'H':
case 'I':
case 'k':
case 'l':
/*
* Of these, %l is the only specifier explicitly
* documented as not being zero-padded. However,
* there is no harm in allowing zero-padding.
*
* XXX The %l specifier may gobble one too many
* digits if used incorrectly.
*/
return (NULL);
len = 2;
i *= 10;
i += *buf - '0';
len--;
}
if (c == 'H' || c == 'k') {
if (i > 23)
return (NULL);
} else if (i > 12)
return (NULL);
break;
case 'p':
/*
* XXX This is bogus if parsed before hour-related
* specifiers.
*/
return (NULL);
break;
}
return (NULL);
break;
}
return (NULL);
case 'A':
case 'a':
0)
break;
break;
}
return (NULL);
break;
case 'U':
case 'W':
/*
* XXX This is bogus, as we can not assume any valid
* information present in the tm structure at this
* point to calculate a real value, so just check the
* range for now.
*/
return (NULL);
len = 2;
i *= 10;
i += *buf - '0';
len--;
}
if (i > 53)
return (NULL);
break;
case 'w':
return (NULL);
i = *buf - '0';
if (i > 6)
return (NULL);
break;
case 'd':
case 'e':
/*
* The %e format has a space before single digits
* which we need to skip.
*/
buf++;
/*
* The %e specifier is explicitly documented as not
* being zero-padded but there is no harm in allowing
* such padding.
*
* XXX The %e specifier may gobble one too many
* digits if used incorrectly.
*/
return (NULL);
len = 2;
i *= 10;
i += *buf - '0';
len--;
}
if (i > 31)
return (NULL);
break;
case 'B':
case 'b':
case 'h':
break;
}
/*
* Try the abbreviated month name if the full name
* wasn't found.
*/
len) == 0)
break;
}
}
return (NULL);
break;
case 'm':
return (NULL);
len = 2;
i *= 10;
i += *buf - '0';
len--;
}
if (i < 1 || i > 12)
return (NULL);
break;
case 's':
{
char *cp;
int sverrno;
time_t t;
errno = 0;
return (NULL);
}
}
break;
case 'Y':
case 'y':
break;
return (NULL);
i *= 10;
i += *buf - '0';
len--;
}
if (c == 'Y')
i -= 1900;
if (c == 'y' && i < 69)
i += 100;
if (i < 0)
return (NULL);
break;
case 'Z':
{
char *zonestr;
++cp;
tzset();
} else {
return (NULL);
}
}
}
break;
case 'z':
{
if (*buf != '+') {
if (*buf == '-')
sign = -1;
else
return (NULL);
}
buf++;
i = 0;
return (NULL);
i *= 10;
i += *buf - '0';
buf++;
}
}
break;
case 'n':
case 't':
buf++;
break;
}
}
if (!recurse) {
(void) localtime_r(&t, tm);
}
}
return ((char *)buf);
}
char *
{
int flags = 0;
}
/*
* This is used by Solaris, and is a variant that does not clear the
* incoming tm. It is triggered by -D_STRPTIME_DONTZERO.
*/
char *
{
int flags = 0;
}
/*
* strptime_l is an extension that seems natural, and indeed, MacOS X
* includes it within their <xlocale.h> and it is part of GNU libc as well.
* For now we restrict it to the cases where strict namespaces are not
* included. We expect to see it in a future version of POSIX. locale_t is
* not a restrict, since the spec for it doesn't assume its a pointer. We
* therefore pass it analagously to the way strftime_l is specified.
*
* We are not providing a non-zeroing version at this time.
*/
char *
{
int flags = 0;
}