Use C99 initialisations for iterators
[exim.git] / src / src / auths / check_serv_cond.c
1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
4
5 /* Copyright (c) University of Cambridge 1995 - 2012 */
6 /* See the file NOTICE for conditions of use and distribution. */
7
8 #include "../exim.h"
9
10 /* This module contains the function server_condition(), which is used
11 by all authenticators. */
12
13
14 /*************************************************
15 * Check server_condition *
16 *************************************************/
17
18 /* This function is called from the server code of all authenticators. For
19 plaintext and gsasl, it is always called: the argument cannot be empty, because
20 for those, setting server_condition is what enables it as a server
21 authenticator. For all the other authenticators, this function is called after
22 they have authenticated, to enable additional authorization to be done.
23
24 Argument: the authenticator's instance block
25
26 Returns:
27 OK NULL argument, or success
28 DEFER couldn't complete the check
29 FAIL authentication failed
30 */
31
32 int
33 auth_check_serv_cond(auth_instance *ablock)
34 {
35 return auth_check_some_cond(ablock,
36 US"server_condition", ablock->server_condition, OK);
37 }
38
39
40 /*************************************************
41 * Check some server condition *
42 *************************************************/
43
44 /* This underlies server_condition, but is also used for some more generic
45 checks.
46
47 Arguments:
48 ablock the authenticator's instance block
49 label debugging label naming the string checked
50 condition the condition string to be expanded and checked
51 unset value to return on NULL condition
52
53 Returns:
54 OK success (or unset=OK)
55 DEFER couldn't complete the check
56 FAIL authentication failed
57 */
58
59 int
60 auth_check_some_cond(auth_instance *ablock,
61 uschar *label, uschar *condition, int unset)
62 {
63 uschar *cond;
64
65 HDEBUG(D_auth)
66 {
67 debug_printf("%s authenticator %s:\n", ablock->name, label);
68 for (int i = 0; i < AUTH_VARS; i++)
69 {
70 if (auth_vars[i] != NULL)
71 debug_printf(" $auth%d = %s\n", i + 1, auth_vars[i]);
72 }
73 for (int i = 1; i <= expand_nmax; i++)
74 debug_printf(" $%d = %.*s\n", i, expand_nlength[i], expand_nstring[i]);
75 debug_print_string(ablock->server_debug_string); /* customized debug */
76 }
77
78 /* For the plaintext authenticator, server_condition is never NULL. For the
79 rest, an unset condition lets everything through. */
80
81 /* For server_condition, an unset condition lets everything through.
82 For plaintext/gsasl authenticators, it will have been pre-checked to prevent
83 this. We return the unset scenario value given to us, which for
84 server_condition will be OK and otherwise will typically be FAIL. */
85
86 if (condition == NULL) return unset;
87 cond = expand_string(condition);
88
89 HDEBUG(D_auth)
90 {
91 if (cond == NULL)
92 debug_printf("expansion failed: %s\n", expand_string_message);
93 else
94 debug_printf("expanded string: %s\n", cond);
95 }
96
97 /* A forced expansion failure causes authentication to fail. Other expansion
98 failures yield DEFER, which will cause a temporary error code to be returned to
99 the AUTH command. The problem is at the server end, so the client should try
100 again later. */
101
102 if (cond == NULL)
103 {
104 if (f.expand_string_forcedfail) return FAIL;
105 auth_defer_msg = expand_string_message;
106 return DEFER;
107 }
108
109 /* Return FAIL for empty string, "0", "no", and "false"; return OK for
110 "1", "yes", and "true"; return DEFER for anything else, with the string
111 available as an error text for the user. */
112
113 if (*cond == 0 ||
114 Ustrcmp(cond, "0") == 0 ||
115 strcmpic(cond, US"no") == 0 ||
116 strcmpic(cond, US"false") == 0)
117 return FAIL;
118
119 if (Ustrcmp(cond, "1") == 0 ||
120 strcmpic(cond, US"yes") == 0 ||
121 strcmpic(cond, US"true") == 0)
122 return OK;
123
124 auth_defer_msg = cond;
125 auth_defer_user_msg = string_sprintf(": %s", cond);
126 return DEFER;
127 }
128
129 /* End of check_serv_cond.c */