SG(request_info).post_data = NULL;
SG(request_info).current_user = NULL;
SG(request_info).current_user_length = 0;
+ SG(request_info).auth_user = SG(request_info).auth_password = NULL;
if (SG(request_info).request_method && !strcmp(SG(request_info).request_method, "HEAD")) {
SG(request_info).headers_only = 1;
if (SG(request_info).post_data) {
efree(SG(request_info).post_data);
}
+ if (SG(request_info).auth_user) {
+ efree(SG(request_info).auth_user);
+ }
+ if (SG(request_info).auth_password) {
+ efree(SG(request_info).auth_password);
+ }
if (SG(request_info).current_user) {
efree(SG(request_info).current_user);
}
#define ISAPI_SERVER_VAR_BUF_SIZE 1024
#define ISAPI_POST_DATA_BUF 1024
-int IWasLoaded=0;
+static int isapi_globals_id=-1;
static char *isapi_server_variables[] = {
"ALL_HTTP",
};
+typedef struct _php_isapi_globals {
+ char *auth_user;
+ char *auth_password;
+} php_isapi_globals;
+
+
BOOL WINAPI GetFilterVersion(PHTTP_FILTER_VERSION pFilterVersion)
{
+ isapi_globals_id = ts_allocate_id(sizeof(php_isapi_globals), NULL, NULL);
pFilterVersion->dwFilterVersion = HTTP_FILTER_REVISION;
strcpy(pFilterVersion->lpszFilterDesc, sapi_module.name);
pFilterVersion->dwFlags= (SF_NOTIFY_AUTHENTICATION | SF_NOTIFY_PREPROC_HEADERS);
DWORD WINAPI HttpFilterProc(PHTTP_FILTER_CONTEXT pfc, DWORD notificationType, LPVOID pvNotification)
{
- SLS_FETCH();
+ php_isapi_globals *isapi_globals = ts_resource(isapi_globals_id);
switch (notificationType) {
case SF_NOTIFY_PREPROC_HEADERS:
- SG(request_info).auth_user = NULL;
- SG(request_info).auth_password = NULL;
+ isapi_globals->auth_user = NULL;
+ isapi_globals->auth_password = NULL;
break;
case SF_NOTIFY_AUTHENTICATION: {
char *auth_user = ((HTTP_FILTER_AUTHENT *) pvNotification)->pszUser;
char *auth_password = ((HTTP_FILTER_AUTHENT *) pvNotification)->pszPassword;
if (auth_user && auth_user[0]) {
- SG(request_info).auth_user = estrdup(auth_user);
+ isapi_globals->auth_user = estrdup(auth_user);
}
if (auth_password && auth_password[0]) {
- SG(request_info).auth_password = estrdup(auth_password);
+ isapi_globals->auth_password = estrdup(auth_password);
}
auth_user[0] = 0;
auth_password[0] = 0;
*path_end = '\\';
}
}
+ if (isapi_globals_id!=-1) { /* we have valid ISAPI Filter information */
+ php_isapi_globals *isapi_globals = ts_resource(isapi_globals_id);
+
+ SG(request_info).auth_user = isapi_globals->auth_user;
+ SG(request_info).auth_password = isapi_globals->auth_password;
+ }
}
if (sapi_module.startup) {
sapi_module.startup(&sapi_module);
}
- IWasLoaded = 1;
break;
case DLL_THREAD_ATTACH:
break;