]> git.ipfire.org Git - thirdparty/squid.git/blob - src/auth/Config.h
Merged from parent (trunk r11240, circa 3.2.0.5+)
[thirdparty/squid.git] / src / auth / Config.h
1 /*
2 * $Id$
3 *
4 *
5 * SQUID Web Proxy Cache http://www.squid-cache.org/
6 * ----------------------------------------------------------
7 *
8 * Squid is the result of efforts by numerous individuals from
9 * the Internet community; see the CONTRIBUTORS file for full
10 * details. Many organizations have provided support for Squid's
11 * development; see the SPONSORS file for full details. Squid is
12 * Copyrighted (C) 2001 by the Regents of the University of
13 * California; see the COPYRIGHT file for full details. Squid
14 * incorporates software developed and/or copyrighted by other
15 * sources; see the CREDITS file for full details.
16 *
17 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation; either version 2 of the License, or
20 * (at your option) any later version.
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26 *
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
29 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
30 *
31 */
32 #ifndef SQUID_AUTHCONFIG_H
33 #define SQUID_AUTHCONFIG_H
34
35 #if USE_AUTH
36
37 #include "auth/UserRequest.h"
38 #include "HelperChildConfig.h"
39
40 class StoreEntry;
41 class HttpReply;
42 class HttpRequest;
43 class wordlist;
44
45 /* for http_hdr_type parameters-by-value */
46 #include "HttpHeader.h"
47
48
49 /**
50 \ingroup AuthAPI
51 \par
52 * I am the configuration for an auth scheme.
53 * Currently each scheme has only one instance of me,
54 * but this may change.
55 \par
56 * This class is treated like a ref counted class.
57 * If the children ever stop being singletons, implement the
58 * ref counting...
59 */
60 class AuthConfig
61 {
62
63 public:
64 static AuthUserRequest::Pointer CreateAuthUser(const char *proxy_auth);
65
66 static AuthConfig *Find(const char *proxy_auth);
67 AuthConfig() : authenticateChildren(20), authenticate(NULL) {}
68
69 virtual ~AuthConfig() {}
70
71 /**
72 * Used by squid to determine whether the auth module has successfully initialised itself with the current configuration.
73 *
74 \retval true Authentication Module loaded and running.
75 \retval false No Authentication Module loaded.
76 */
77 virtual bool active() const = 0;
78
79 /**
80 * new decode API: virtual factory pattern
81 \par
82 * Responsible for decoding the passed authentication header, creating or
83 * linking to a AuthUser object and for storing any needed details to complete
84 * authentication in AuthUserRequest::authenticate().
85 *
86 \param proxy_auth Login Pattern to parse.
87 \retval * Details needed to authenticate.
88 */
89 virtual AuthUserRequest::Pointer decode(char const *proxy_auth) = 0;
90
91 /**
92 * squid is finished with this config, release any unneeded resources.
93 * If a singleton, delete will not occur. if not a singleton (future),
94 * delete will occur when no references are held.
95 *
96 \todo we need a 'done for reconfigure' and a 'done permanently' concept.
97 */
98 virtual void done() = 0;
99
100 /**
101 * The configured function is used to see if the auth module has been given valid
102 * parameters and is able to handle authentication requests.
103 *
104 \retval true Authentication Module configured ready for use.
105 \retval false Not configured or Configuration Error.
106 * No other module functions except Shutdown/Dump/Parse/FreeConfig will be called by Squid.
107 */
108 virtual bool configured() const = 0;
109
110 /**
111 * Shutdown just the auth helpers.
112 * For use by log rotate etc. where auth needs to stay running, with the helpers restarted.
113 */
114 virtual void rotateHelpers(void) = 0;
115
116 /**
117 * Responsible for writing to the StoreEntry the configuration parameters that a user
118 * would put in a config file to recreate the running configuration.
119 */
120 virtual void dump(StoreEntry *, const char *, AuthConfig *) = 0;
121
122 /** add headers as needed when challenging for auth */
123 virtual void fixHeader(AuthUserRequest::Pointer, HttpReply *, http_hdr_type, HttpRequest *) = 0;
124 /** prepare to handle requests */
125 virtual void init(AuthConfig *) = 0;
126 /** expose any/all statistics to a CacheManager */
127 virtual void registerWithCacheManager(void);
128 /** parse config options */
129 virtual void parse(AuthConfig *, int, char *) = 0;
130 /** the http string id */
131 virtual const char * type() const = 0;
132
133 public:
134 HelperChildConfig authenticateChildren;
135 wordlist *authenticate;
136 };
137
138 namespace Auth
139 {
140
141 typedef Vector<AuthConfig *> authConfig;
142
143 extern authConfig TheConfig;
144
145 } // namespace Auth
146
147 #endif /* USE_AUTH */
148 #endif /* SQUID_AUTHCONFIG_H */