File: authoption.c

package info (click to toggle)
courier-authlib 0.72.6-3
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 17,844 kB
  • sloc: ansic: 25,772; cpp: 12,475; sh: 5,588; makefile: 938; perl: 761
file content (80 lines) | stat: -rw-r--r-- 1,371 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
** Copyright 2002-2009 Double Precision, Inc.  See COPYING for
** distribution information.
*/

#if	HAVE_CONFIG_H
#include	"courier_auth_config.h"
#endif
#include	<stdio.h>
#include	<stdlib.h>
#include	<string.h>
#include	<errno.h>
#include	<pwd.h>
#if	HAVE_UNISTD_H
#include	<unistd.h>
#endif

#include	"auth.h"



int auth_getoptionenvint(const char *keyword)
{
	char *p = auth_getoptionenv(keyword);
	int i;

	if (!p) return 0;

	i = atoi(p);

	if (i == 0 && strchr("tTyY", *p))
		i=1;   /* Convert 'true', 'TRUE', 'yes', 'YES' to 1 */
	free(p);
	return i;
}

char *auth_getoptionenv(const char *keyword)
{
	return auth_getoption(getenv("OPTIONS"), keyword);
}

char *auth_getoption(const char *options, const char *keyword)
{
	size_t keyword_l=strlen(keyword);
	char *p;

	while (options)
	{
		if (strncmp(options, keyword, keyword_l) == 0)
		{
			if (options[keyword_l] == 0 ||
			    options[keyword_l] == ',')
				return strdup("");

			if (options[keyword_l] == '=')
			{
				options += keyword_l;
				++options;

				for (keyword_l=0;
				     options[keyword_l] &&
					     options[keyword_l] != ',';
				     ++keyword_l)
					;

				if (!(p=malloc(keyword_l+1)))
					return NULL;
				memcpy(p, options, keyword_l);
				p[keyword_l]=0;
				return p;
			}
		}

		options=strchr(options, ',');
		if (options)
			++options;
	}
	errno=ENOENT;
	return NULL;
}