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 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* soup-auth-domain-basic.c: HTTP Basic Authentication (server-side)
*
* Copyright (C) 2007 Novell, Inc.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <string.h>
#include "soup-auth-domain-basic.h"
#include "soup.h"
/**
* SECTION:soup-auth-domain-basic
* @short_description: Server-side "Basic" authentication
*
* #SoupAuthDomainBasic handles the server side of HTTP "Basic" (ie,
* cleartext password) authentication.
**/
enum {
PROP_0,
PROP_AUTH_CALLBACK,
PROP_AUTH_DATA,
LAST_PROP
};
typedef struct {
SoupAuthDomainBasicAuthCallback auth_callback;
gpointer auth_data;
GDestroyNotify auth_dnotify;
} SoupAuthDomainBasicPrivate;
G_DEFINE_TYPE_WITH_PRIVATE (SoupAuthDomainBasic, soup_auth_domain_basic, SOUP_TYPE_AUTH_DOMAIN)
static void
soup_auth_domain_basic_init (SoupAuthDomainBasic *basic)
{
}
static void
soup_auth_domain_basic_finalize (GObject *object)
{
SoupAuthDomainBasicPrivate *priv =
soup_auth_domain_basic_get_instance_private (SOUP_AUTH_DOMAIN_BASIC (object));
if (priv->auth_dnotify)
priv->auth_dnotify (priv->auth_data);
G_OBJECT_CLASS (soup_auth_domain_basic_parent_class)->finalize (object);
}
static void
soup_auth_domain_basic_set_property (GObject *object, guint prop_id,
const GValue *value, GParamSpec *pspec)
{
SoupAuthDomainBasicPrivate *priv =
soup_auth_domain_basic_get_instance_private (SOUP_AUTH_DOMAIN_BASIC (object));
switch (prop_id) {
case PROP_AUTH_CALLBACK:
priv->auth_callback = g_value_get_pointer (value);
break;
case PROP_AUTH_DATA:
if (priv->auth_dnotify) {
priv->auth_dnotify (priv->auth_data);
priv->auth_dnotify = NULL;
}
priv->auth_data = g_value_get_pointer (value);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
soup_auth_domain_basic_get_property (GObject *object, guint prop_id,
GValue *value, GParamSpec *pspec)
{
SoupAuthDomainBasicPrivate *priv =
soup_auth_domain_basic_get_instance_private (SOUP_AUTH_DOMAIN_BASIC (object));
switch (prop_id) {
case PROP_AUTH_CALLBACK:
g_value_set_pointer (value, priv->auth_callback);
break;
case PROP_AUTH_DATA:
g_value_set_pointer (value, priv->auth_data);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
/**
* soup_auth_domain_basic_new:
* @optname1: name of first option, or %NULL
* @...: option name/value pairs
*
* Creates a #SoupAuthDomainBasic. You must set the
* %SOUP_AUTH_DOMAIN_REALM parameter, to indicate the realm name to be
* returned with the authentication challenge to the client. Other
* parameters are optional.
*
* Return value: the new #SoupAuthDomain
**/
SoupAuthDomain *
soup_auth_domain_basic_new (const char *optname1, ...)
{
SoupAuthDomain *domain;
va_list ap;
va_start (ap, optname1);
domain = (SoupAuthDomain *)g_object_new_valist (SOUP_TYPE_AUTH_DOMAIN_BASIC,
optname1, ap);
va_end (ap);
g_return_val_if_fail (soup_auth_domain_get_realm (domain) != NULL, NULL);
return domain;
}
/**
* SoupAuthDomainBasicAuthCallback:
* @domain: (type SoupAuthDomainBasic): the domain
* @msg: the message being authenticated
* @username: the username provided by the client
* @password: the password provided by the client
* @user_data: the data passed to soup_auth_domain_basic_set_auth_callback()
*
* Callback used by #SoupAuthDomainBasic for authentication purposes.
* The application should verify that @username and @password and valid
* and return %TRUE or %FALSE.
*
* If you are maintaining your own password database (rather than
* using the password to authenticate against some other system like
* PAM or a remote server), you should make sure you know what you are
* doing. In particular, don't store cleartext passwords, or
* easily-computed hashes of cleartext passwords, even if you don't
* care that much about the security of your server, because users
* will frequently use the same password for multiple sites, and so
* compromising any site with a cleartext (or easily-cracked) password
* database may give attackers access to other more-interesting sites
* as well.
*
* Return value: %TRUE if @username and @password are valid
**/
/**
* soup_auth_domain_basic_set_auth_callback:
* @domain: (type SoupAuthDomainBasic): the domain
* @callback: the callback
* @user_data: data to pass to @auth_callback
* @dnotify: destroy notifier to free @user_data when @domain
* is destroyed
*
* Sets the callback that @domain will use to authenticate incoming
* requests. For each request containing authorization, @domain will
* invoke the callback, and then either accept or reject the request
* based on @callback's return value.
*
* You can also set the auth callback by setting the
* %SOUP_AUTH_DOMAIN_BASIC_AUTH_CALLBACK and
* %SOUP_AUTH_DOMAIN_BASIC_AUTH_DATA properties, which can also be
* used to set the callback at construct time.
**/
void
soup_auth_domain_basic_set_auth_callback (SoupAuthDomain *domain,
SoupAuthDomainBasicAuthCallback callback,
gpointer user_data,
GDestroyNotify dnotify)
{
SoupAuthDomainBasicPrivate *priv =
soup_auth_domain_basic_get_instance_private (SOUP_AUTH_DOMAIN_BASIC (domain));
if (priv->auth_dnotify)
priv->auth_dnotify (priv->auth_data);
priv->auth_callback = callback;
priv->auth_data = user_data;
priv->auth_dnotify = dnotify;
g_object_notify (G_OBJECT (domain), SOUP_AUTH_DOMAIN_BASIC_AUTH_CALLBACK);
g_object_notify (G_OBJECT (domain), SOUP_AUTH_DOMAIN_BASIC_AUTH_DATA);
}
static void
pw_free (char *pw)
{
memset (pw, 0, strlen (pw));
g_free (pw);
}
static gboolean
parse_basic (SoupMessage *msg, const char *header,
char **username, char **password)
{
char *decoded, *colon;
gsize len, plen;
if (!header || (strncmp (header, "Basic ", 6) != 0))
return FALSE;
decoded = (char *)g_base64_decode (header + 6, &len);
if (!decoded)
return FALSE;
colon = memchr (decoded, ':', len);
if (!colon) {
pw_free (decoded);
return FALSE;
}
*colon = '\0';
plen = len - (colon - decoded) - 1;
*password = g_strndup (colon + 1, plen);
memset (colon + 1, 0, plen);
*username = decoded;
return TRUE;
}
static char *
soup_auth_domain_basic_accepts (SoupAuthDomain *domain, SoupMessage *msg,
const char *header)
{
SoupAuthDomainBasicPrivate *priv =
soup_auth_domain_basic_get_instance_private (SOUP_AUTH_DOMAIN_BASIC (domain));
char *username, *password;
gboolean ok = FALSE;
if (!parse_basic (msg, header, &username, &password))
return NULL;
if (priv->auth_callback) {
ok = priv->auth_callback (domain, msg, username, password,
priv->auth_data);
} else {
ok = soup_auth_domain_try_generic_auth_callback (
domain, msg, username);
}
pw_free (password);
if (ok)
return username;
else {
g_free (username);
return NULL;
}
}
static char *
soup_auth_domain_basic_challenge (SoupAuthDomain *domain, SoupMessage *msg)
{
GString *challenge;
challenge = g_string_new ("Basic ");
soup_header_g_string_append_param (challenge, "realm", soup_auth_domain_get_realm (domain));
return g_string_free (challenge, FALSE);
}
static gboolean
soup_auth_domain_basic_check_password (SoupAuthDomain *domain,
SoupMessage *msg,
const char *username,
const char *password)
{
const char *header;
char *msg_username, *msg_password;
gboolean ok;
header = soup_message_headers_get_one (msg->request_headers,
"Authorization");
if (!parse_basic (msg, header, &msg_username, &msg_password))
return FALSE;
ok = (!strcmp (username, msg_username) &&
!strcmp (password, msg_password));
g_free (msg_username);
pw_free (msg_password);
return ok;
}
static void
soup_auth_domain_basic_class_init (SoupAuthDomainBasicClass *basic_class)
{
SoupAuthDomainClass *auth_domain_class =
SOUP_AUTH_DOMAIN_CLASS (basic_class);
GObjectClass *object_class = G_OBJECT_CLASS (basic_class);
auth_domain_class->accepts = soup_auth_domain_basic_accepts;
auth_domain_class->challenge = soup_auth_domain_basic_challenge;
auth_domain_class->check_password = soup_auth_domain_basic_check_password;
object_class->finalize = soup_auth_domain_basic_finalize;
object_class->set_property = soup_auth_domain_basic_set_property;
object_class->get_property = soup_auth_domain_basic_get_property;
/**
* SOUP_AUTH_DOMAIN_BASIC_AUTH_CALLBACK:
*
* Alias for the #SoupAuthDomainBasic:auth-callback property.
* (The #SoupAuthDomainBasicAuthCallback.)
**/
/**
* SoupAuthDomainBasic:auth-callback: (type SoupAuthDomainBasicAuthCallback)
*
* The #SoupAuthDomainBasicAuthCallback
*/
g_object_class_install_property (
object_class, PROP_AUTH_CALLBACK,
g_param_spec_pointer (SOUP_AUTH_DOMAIN_BASIC_AUTH_CALLBACK,
"Authentication callback",
"Password-checking callback",
G_PARAM_READWRITE |
G_PARAM_STATIC_STRINGS));
/**
* SOUP_AUTH_DOMAIN_BASIC_AUTH_DATA:
*
* Alias for the #SoupAuthDomainBasic:auth-data property.
* (The data to pass to the #SoupAuthDomainBasicAuthCallback.)
**/
/**
* SoupAuthDomainBasic:auth-data:
*
* The data to pass to the #SoupAuthDomainBasicAuthCallback
*/
g_object_class_install_property (
object_class, PROP_AUTH_DATA,
g_param_spec_pointer (SOUP_AUTH_DOMAIN_BASIC_AUTH_DATA,
"Authentication callback data",
"Data to pass to authentication callback",
G_PARAM_READWRITE |
G_PARAM_STATIC_STRINGS));
}
|