1*f7055df5Smillert /* $OpenBSD: util.c,v 1.13 2015/03/15 00:41:28 millert Exp $ */
2df930be7Sderaadt /* $NetBSD: util.c,v 1.4 1995/03/26 04:55:35 glass Exp $ */
3df930be7Sderaadt
4df930be7Sderaadt /*-
5df930be7Sderaadt * Copyright (c) 1988, 1993, 1994
6df930be7Sderaadt * The Regents of the University of California. All rights reserved.
7df930be7Sderaadt *
8df930be7Sderaadt * Redistribution and use in source and binary forms, with or without
9df930be7Sderaadt * modification, are permitted provided that the following conditions
10df930be7Sderaadt * are met:
11df930be7Sderaadt * 1. Redistributions of source code must retain the above copyright
12df930be7Sderaadt * notice, this list of conditions and the following disclaimer.
13df930be7Sderaadt * 2. Redistributions in binary form must reproduce the above copyright
14df930be7Sderaadt * notice, this list of conditions and the following disclaimer in the
15df930be7Sderaadt * documentation and/or other materials provided with the distribution.
16f75387cbSmillert * 3. Neither the name of the University nor the names of its contributors
17df930be7Sderaadt * may be used to endorse or promote products derived from this software
18df930be7Sderaadt * without specific prior written permission.
19df930be7Sderaadt *
20df930be7Sderaadt * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21df930be7Sderaadt * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22df930be7Sderaadt * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23df930be7Sderaadt * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24df930be7Sderaadt * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25df930be7Sderaadt * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26df930be7Sderaadt * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27df930be7Sderaadt * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28df930be7Sderaadt * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29df930be7Sderaadt * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30df930be7Sderaadt * SUCH DAMAGE.
31df930be7Sderaadt */
32df930be7Sderaadt
33df930be7Sderaadt #include <sys/types.h>
34df930be7Sderaadt
35df930be7Sderaadt #include <ctype.h>
36df930be7Sderaadt #include <pwd.h>
37df930be7Sderaadt #include <stdio.h>
38df930be7Sderaadt #include <stdlib.h>
39df930be7Sderaadt #include <string.h>
40df930be7Sderaadt #include <time.h>
41df930be7Sderaadt #include <unistd.h>
42df930be7Sderaadt
43df930be7Sderaadt #include "chpass.h"
44df930be7Sderaadt
45df930be7Sderaadt char *
ttoa(char * buf,size_t len,time_t tval)46f57b352eSderaadt ttoa(char *buf, size_t len, time_t tval)
47df930be7Sderaadt {
48df930be7Sderaadt if (tval) {
499f52c269Sderaadt struct tm *tp = localtime(&tval);
509f52c269Sderaadt
519f52c269Sderaadt (void) strftime(buf, len, "%B %d, %Y", tp);
529f52c269Sderaadt buf[len - 1] = '\0';
53f57b352eSderaadt } else if (len > 0)
549f52c269Sderaadt *buf = '\0';
559f52c269Sderaadt return (buf);
56df930be7Sderaadt }
57df930be7Sderaadt
58df930be7Sderaadt int
atot(char * p,time_t * store)59f57b352eSderaadt atot(char *p, time_t *store)
60df930be7Sderaadt {
619f52c269Sderaadt struct tm tm;
62f57b352eSderaadt char *t;
63df930be7Sderaadt
64df930be7Sderaadt if (!*p) {
65df930be7Sderaadt *store = 0;
66df930be7Sderaadt return (0);
67df930be7Sderaadt }
689f52c269Sderaadt (void) memset(&tm, 0, sizeof(tm));
699f52c269Sderaadt for (t = p; (t = strchr(t, ',')) != NULL; t++)
709f52c269Sderaadt *t = ' ';
719f52c269Sderaadt t = strptime(p, "%B %d %Y", &tm);
729f52c269Sderaadt if (t == NULL || (*t != '\0' && *t != '\n'))
739f52c269Sderaadt return 1;
749dd94cc7Sguenther tm.tm_isdst = -1;
759f52c269Sderaadt *store = mktime(&tm);
769f52c269Sderaadt if (*store == (time_t) -1)
779f52c269Sderaadt return 1;
78df930be7Sderaadt return (0);
79df930be7Sderaadt }
80df930be7Sderaadt
81a0bffbc0Smillert int
ok_shell(char * name,char ** out)82a0bffbc0Smillert ok_shell(char *name, char **out)
83df930be7Sderaadt {
84df930be7Sderaadt char *p, *sh;
85df930be7Sderaadt
86df930be7Sderaadt setusershell();
879f52c269Sderaadt while ((sh = getusershell()) != NULL) {
88df930be7Sderaadt if (!strcmp(name, sh))
89a0bffbc0Smillert break;
90df930be7Sderaadt /* allow just shell name, but use "real" path */
91df930be7Sderaadt if ((p = strrchr(sh, '/')) && strcmp(name, p + 1) == 0)
92a0bffbc0Smillert break;
93df930be7Sderaadt }
94a0bffbc0Smillert if (sh && out)
95a0bffbc0Smillert *out = strdup(sh);
96a0bffbc0Smillert endusershell();
97a0bffbc0Smillert return (sh != NULL);
98df930be7Sderaadt }
99