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 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596
|
--
-- $Id$
--
-- Authenticate against names and passwords in SYS_USERS, using HP_SECURITY for level
--
-- This file is part of the OpenLink Software Virtuoso Open-Source (VOS)
-- project.
--
-- Copyright (C) 1998-2012 OpenLink Software
--
-- This project is free software; you can redistribute it and/or modify it
-- under the terms of the GNU General Public License as published by the
-- Free Software Foundation; only version 2 of the License, dated June 1991.
--
-- This program is distributed in the hope that it will be useful, but
-- WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-- General Public License for more details.
--
-- You should have received a copy of the GNU General Public License along
-- with this program; if not, write to the Free Software Foundation, Inc.,
-- 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
--
--
create procedure
DB.DBA.HP_AUTH_SQL_USER (in realm varchar)
{
declare _u_name, _u_password varchar;
declare _u_group, _u_id, allow_basic integer;
declare sec, lev varchar;
declare _user varchar;
declare ses_dta, lines, auth any;
lines := http_request_header ();
sec := http_map_get ('security_level');
if (isstring (sec))
sec := ucase (sec);
if (sec = 'DIGEST')
allow_basic := 0;
else
allow_basic := 1;
auth := DB.DBA.vsp_auth_vec (lines);
if (0 <> auth)
{
lev := get_keyword ('authtype', auth, '');
if (allow_basic = 0 and 'basic' = lev)
goto nf;
_user := get_keyword ('username', auth, '');
if ('' = _user)
return 0;
whenever not found goto nf;
select U_NAME, U_PASSWORD, U_GROUP, U_ID
into _u_name, _u_password, _u_group, _u_id from DB.DBA.SYS_USERS
where U_NAME = _user and U_ACCOUNT_DISABLED = 0 and U_SQL_ENABLE = 1 and U_IS_ROLE = 0;
if (1 = DB.DBA.vsp_auth_verify_pass (auth, _u_name,
get_keyword ('realm', auth, ''),
get_keyword ('uri', auth, ''),
get_keyword ('nonce', auth, ''),
get_keyword ('nc', auth, ''),
get_keyword ('cnonce', auth, ''),
get_keyword ('qop', auth, ''),
_u_password))
{
connection_set ('SPARQLUserId', _u_name);
if (http_map_get ('persist_ses_vars'))
{
declare vars any;
declare sid varchar;
vars := null;
sid := http_param ('sid');
vars := coalesce ((select deserialize (ASES_VARS) from DB.DBA.ADMIN_SESSION where ASES_ID = sid),
null);
if (sid is not null and vars is null or isarray (vars))
connection_vars_set (vars);
if (sid is not null and connection_get ('sid') is null)
{
connection_set ('sid', sid);
}
}
return 1;
}
}
nf:
DB.DBA.vsp_auth_get (realm, http_path (),
md5 (datestring (now ())),
md5 ('eEsSlLAaf'),
'false', lines, allow_basic);
return 0;
}
;
-- Authenticate against SYS_DAV_USER, using HP_SECURITY for level, in the context of DAV
-- administration pages accessed through regular HTTP
create procedure
DB.DBA.HP_AUTH_DAV_ADMIN (in realm varchar)
{
declare _u_name, _u_pwd varchar;
declare _u_group, _u_id, allow_basic integer;
declare sec, lev varchar;
declare _user varchar;
declare ses_dta, lines, auth any;
lines := http_request_header ();
sec := http_map_get ('security_level');
if (isstring (sec))
sec := ucase (sec);
if (sec = 'DIGEST')
allow_basic := 0;
else
allow_basic := 1;
auth := DB.DBA.vsp_auth_vec (lines);
if (0 <> auth)
{
lev := get_keyword ('authtype', auth, '');
if (allow_basic = 0 and 'basic' = lev)
goto nf;
_user := get_keyword ('username', auth, '');
if ('' = _user)
return 0;
whenever not found goto nf;
select U_NAME, pwd_magic_calc (U_NAME, U_PWD, 1), U_GROUP, U_ID
into _u_name, _u_pwd, _u_group, _u_id from WS.WS.SYS_DAV_USER
where U_NAME = _user and U_ACCOUNT_DISABLED = 0;
if (DB.DBA.vsp_auth_verify_pass (auth, _u_name,
get_keyword ('realm', auth, ''),
get_keyword ('uri', auth, ''),
get_keyword ('nonce', auth, ''),
get_keyword ('nc', auth, ''),
get_keyword ('cnonce', auth, ''),
get_keyword ('qop', auth, ''),
_u_pwd))
{
if (http_map_get ('persist_ses_vars'))
{
declare vars any;
declare sid varchar;
vars := null;
sid := http_param ('sid');
vars := coalesce ((select deserialize (ASES_VARS) from DB.DBA.ADMIN_SESSION where ASES_ID = sid),
null);
if (vars is null or isarray (vars))
connection_vars_set (vars);
if (connection_get ('sid') is null)
{
connection_set ('sid', sid);
}
}
return (_u_id);
}
}
nf:
DB.DBA.vsp_auth_get (realm, '/admin/admin_dav',
md5 (datestring (now ())),
md5 ('vVAadAnIimMDdaNnimda'),
'false', lines, allow_basic);
return 0;
}
;
-- Ibid but in the context of DAV protocol requests.
create procedure
DB.DBA.HP_AUTH_DAV_PROTOCOL (in realm varchar)
{
declare _u_name, _u_password, _perms varchar;
declare _u_id, _u_group, req_user, req_group, what integer;
declare auth any;
declare _user, lev varchar;
declare our_auth_vec, lines, sec, path, req_perms, req_meth, cmp_perms, def_page varchar;
declare _method, allow_basic, authenticated integer;
declare c cursor for select 1, COL_OWNER, COL_GROUP, COL_PERMS
from WS.WS.SYS_DAV_COL where WS.WS.COL_PATH (COL_ID) = path;
declare r cursor for select 2, RES_OWNER, RES_GROUP, RES_PERMS
from WS.WS.SYS_DAV_RES where RES_FULL_PATH = path;
authenticated := 0;
lines := http_request_header ();
path := http_physical_path ();
if (isarray (lines))
{
req_meth := aref (lines, 0);
if (strchr (req_meth, ' ') is not null)
req_meth := lower (substring (req_meth, 1, strchr (req_meth, ' ')));
}
if (req_meth = 'get' or
req_meth = 'post' or
req_meth = 'options' or
req_meth = 'propfind' or
req_meth = 'head' or
req_meth = 'trace' or
req_meth = 'copy')
cmp_perms := '1__';
else if (req_meth = 'mkcol' or req_meth = 'put')
{
if (length (path) > 1 and strrchr (substring (path, 1, length(path) - 1), '/') is not null)
path := substring (path, 1, strrchr (substring (path, 1, length(path) - 1), '/') + 1);
cmp_perms := '11_';
}
else
cmp_perms := '11_';
what := 0;
whenever not found goto fr;
open c (prefetch 1);
fetch c into what, req_user, req_group, req_perms;
def_page := http_map_get ('default_page');
if (isstring (def_page))
{
path := concat (path, def_page);
what := 0;
}
fr:
close c;
if (not what)
{
whenever not found goto fe;
open r (prefetch 1);
fetch r into what, req_user, req_group, req_perms;
fe:
close r;
}
sec := http_map_get ('security_level');
if (isstring (sec))
sec := ucase (sec);
if (sec = 'DIGEST')
allow_basic := 0;
else
allow_basic := 1;
auth := DB.DBA.vsp_auth_vec (lines);
if (0 <> auth)
{
lev := get_keyword ('authtype', auth, '');
if (allow_basic = 0 and 'basic' = lev)
goto nf;
_user := get_keyword ('username', auth);
if (_user = '' or isnull (_user))
{
goto nf;
}
whenever not found goto nf;
select U_NAME, pwd_magic_calc (U_NAME, U_PWD, 1), U_GROUP, U_ID, U_METHODS, U_DEF_PERMS
into _u_name, _u_password, _u_group, _u_id, _method, _perms from WS.WS.SYS_DAV_USER
where U_NAME = _user and U_ACCOUNT_DISABLED = 0 with (exclusive, prefetch 1);
if (_u_password is null)
goto nf;
if (DB.DBA.vsp_auth_verify_pass (auth, _u_name,
coalesce(get_keyword ('realm', auth), ''),
coalesce(get_keyword ('uri', auth), ''),
coalesce(get_keyword ('nonce', auth), ''),
coalesce(get_keyword ('nc', auth),''),
coalesce(get_keyword ('cnonce', auth), ''),
coalesce(get_keyword ('qop', auth), ''),
_u_password))
{
update WS.WS.SYS_DAV_USER set U_LOGIN_TIME = now () where U_NAME = _user;
if (http_map_get ('persist_ses_vars'))
{
declare vars any;
declare sid varchar;
vars := null;
sid := http_param ('sid');
vars := coalesce ((select deserialize (ASES_VARS) from DB.DBA.ADMIN_SESSION where ASES_ID = sid),
null);
if (vars is null or isarray (vars))
connection_vars_set (vars);
if (connection_get ('sid') is null)
{
connection_set ('sid', sid);
}
}
if (connection_get ('DAVUserID') <> _u_id)
connection_set ('DAVUserID', _u_id);
authenticated := 1;
}
}
-- Check permissions
if (authenticated and _u_id = 1)
return 1;
else if (not authenticated and req_perms like concat ('______', cmp_perms, '%'))
return -1;
else if (authenticated and
((_u_id = req_user and req_perms like concat (cmp_perms, '%')) or
(req_group = _u_group and req_perms like concat ('___', cmp_perms, '%')) or
(req_perms like concat ('______', cmp_perms, '%'))))
return (_u_id);
else if (authenticated)
{
http_request_status ('HTTP/1.1 403 Forbidden');
http ( concat ('<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">',
'<HTML><HEAD>',
'<TITLE>403 Forbidden</TITLE>',
'</HEAD><BODY><H1>Forbidden</H1>',
'Access to the resource is forbidden.</BODY></HTML>'));
return 0;
}
-- End check permissions
nf:
DB.DBA.vsp_auth_get (realm, '/DAV',
md5 (datestring(now())),
md5 ('opaakki'),
'false', lines, allow_basic);
return 0;
}
;
create procedure
DB.DBA.HP_SES_VARS_STORE ()
{
declare vars any;
declare sid varchar;
if (http_map_get ('persist_ses_vars') and connection_is_dirty ())
{
vars := connection_vars ();
connection_vars_set (null);
sid := get_keyword ('sid', vars, null);
if (sid is not null)
update DB.DBA.ADMIN_SESSION set ASES_VARS = serialize (vars) where ASES_ID = sid;
}
}
;
grant execute on DB.DBA.HP_SES_VARS_STORE to public
;
create procedure WS.WS.VSP_DEFINE (in path varchar, in _uid varchar)
{
declare x, y, stat, msg, st varchar;
declare str varchar;
if (strstr (path, '..'))
signal ('22023', 'Path contains ..', 'HT051');
str := string_output ();
http ('create procedure WS.WS."', str);
http (path, str);
http ('" (in path varchar, in params varchar, in lines varchar) { ?>', str);
st := NULL;
DB.DBA.expand_includes (path, str, 0, NULL, st);
http ('<?vsp }', str);
stat := '00000';
str := string_output_string (str);
__set_user_id (_uid);
exec (str, stat, msg, vector (), 0, x, y);
if (stat <> '00000')
signal (stat, msg);
registry_set (path, file_stat (concat (http_root (), path)));
__pop_user_id ();
return 1;
}
;
-- The HTTP sessions table
CREATE TABLE WS.WS.SESSION (
S_ID varchar, -- session id
S_EXPIRE datetime, -- when it expires
S_VARS long varchar, -- serialized value of session variables
S_REQUEST_UNDER_RELOGIN long varchar, -- serialized value of request status upon re-login detected
S_REALM varchar, -- authentication realm
S_IS_DIGEST integer, -- flag for digest authentication
S_DOMAIN varchar, -- authentication domain
S_NONCE varchar, -- nonce value
S_OPAQUE varchar, -- opaque value
S_STALE varchar, -- stale value
S_QOP varchar, -- qop value
S_ALGORITHM varchar, -- algorithm name
S_NC integer, -- nonce count
primary key (S_REALM, S_ID)
)
;
-- post-processing function for web applications
-- checks if the session variables changed in the HTTP request
-- and is allowed persistent session variables
-- if the above is true then store session variables in the session table
--!AWK PUBLIC
CREATE PROCEDURE WS.WS.SESSION_SAVE ()
{
declare sid varchar; -- session id
declare vars any; -- session variables array
-- retrieve all session variables
vars := connection_vars ();
-- check is persistent storage
if (http_map_get ('persist_ses_vars') and connection_is_dirty ())
{
-- retrieve session id from session variables
sid := get_keyword ('sid', vars, null);
-- store session variables in session table
if (sid is not null)
update WS.WS.SESSION set S_VARS = serialize (vars) where S_ID = sid;
}
-- reset the session variables to this connection, to avoid usage from another connection
connection_vars_set (NULL);
}
;
-- terminate the session and redirect to a specified URI
--!AWK PUBLIC
CREATE PROCEDURE WS.WS.SESSION_TERMINATE (in url varchar)
{
-- remove session entry from the session table
delete from WS.WS.SESSION where S_ID = connection_get ('sid');
-- do the redirect response and header line
http_request_status ('HTTP/1.1 302 Found');
http_header (sprintf ('Location: %s\r\n', url));
}
;
-- digest authentication hook
-- start a session and redirect to the default page
--!AWK PUBLIC
CREATE PROCEDURE WS.WS.DIGEST_AUTH (in realm varchar)
{
declare auth_vec, lines, vars, server_nc any;
declare passwd, sid, old_sid varchar;
declare client_nc, nonce varchar;
declare user_check varchar;
declare opts, public_pages, req_path any;
opts := http_map_get ('auth_opts');
if (isarray (opts))
{
declare i, l integer;
public_pages := split_and_decode (get_keyword ('public_pages', opts, ''), 0, ',=,');
req_path := split_and_decode (http_path (), 0, '\0\0/');
l := length (public_pages); i := 0;
while (i < l)
{
if (trim(public_pages[i]) = req_path [length (req_path) - 1] or req_path [length (req_path) - 1] = '')
return 1;
i := i + 1;
}
}
lines := http_request_header();
auth_vec := DB.DBA.vsp_auth_vec (lines);
old_sid := null;
if (0 <> auth_vec)
{
declare usp any;
if ('digest' <> lower (get_keyword ('authtype' , auth_vec, ''))
or '' = get_keyword ('username' , auth_vec, ''))
goto nf;
sid := get_keyword ('opaque', auth_vec, '');
if (sid = '')
sid := get_keyword ('nonce', auth_vec, '');
server_nc := coalesce ((select S_NC from WS.WS.SESSION where S_ID = sid), 0);
server_nc := sprintf ('%08x', server_nc);
client_nc := lower (get_keyword ('nc', auth_vec, '0'));
usp := http_map_get ('auth_opts');
if (not isarray(usp))
signal ('22023', 'The authentication hook needs a authentication option "users_proc" to be set to the function for user account checking.', 'HT055');
user_check := get_keyword ('users_proc', usp, null);
if (user_check is null)
goto nf;
call (user_check) (get_keyword ('username' , auth_vec), passwd);
if (passwd is null)
goto nf;
if (server_nc = client_nc and 1 = DB.DBA.vsp_auth_verify_pass (auth_vec,
get_keyword ('username' , auth_vec),
get_keyword ('realm', auth_vec, ''),
get_keyword ('uri', auth_vec, ''),
get_keyword ('nonce', auth_vec, ''),
get_keyword ('nc', auth_vec, ''),
get_keyword ('cnonce', auth_vec, ''),
get_keyword ('qop', auth_vec, ''),
passwd))
{
vars := coalesce ((select deserialize (S_VARS) from WS.WS.SESSION where S_ID = sid), NULL);
connection_vars_set (vars);
if (exists (select 1 from WS.WS.SESSION where S_ID = sid and S_EXPIRE <= now ()))
{
delete from WS.WS.SESSION where S_ID = sid and S_EXPIRE <= now ();
old_sid := sid;
goto nf;
}
update WS.WS.SESSION set S_EXPIRE = dateadd ('minute', 10, now ()), S_NC = S_NC + 1 where S_ID = sid;
return 1;
}
}
nf:
sid := md5 (concat (datestring (now ()), http_client_ip (), http_path ()));
nonce := sid;
vars := vector ('sid', sid);
if (old_sid is not null)
{
connection_set ('sid', sid);
vars := connection_vars ();
connection_vars_set (NULL);
}
insert into WS.WS.SESSION (S_REALM, S_ID, S_EXPIRE, S_VARS,
S_DOMAIN, S_NC, S_OPAQUE, S_NONCE, S_STALE, S_ALGORITHM)
values (http_path (), sid, dateadd ('minute', 10, now ()), serialize (vars),
http_path (), 1, sid, nonce, 'false', 'MD5');
DB.DBA.vsp_auth_get (realm, http_map_get ('domain'), nonce, sid, 'false', lines, 0);
http ('<HTML><BODY><p>Authorization failed (401)</p></BODY></HTML>');
return 0;
}
;
create procedure
DB.DBA.HP_AUTH_SPARQL_USER (in realm varchar)
{
declare _u_name, _u_password varchar;
declare allow_basic integer;
declare sec, lev varchar;
declare _user varchar;
declare lines, auth any;
lines := http_request_header ();
sec := http_map_get ('security_level');
if (isstring (sec))
sec := lower (sec);
if (sec = 'digest')
allow_basic := 0;
else
allow_basic := 1;
auth := DB.DBA.vsp_auth_vec (lines);
if (0 <> auth)
{
lev := get_keyword ('authtype', auth, '');
if (allow_basic = 0 and 'basic' = lev)
goto nf;
_user := get_keyword ('username', auth, '');
if ('' = _user)
return 0;
whenever not found goto nf;
select U_NAME, U_PASSWORD
into _u_name, _u_password from DB.DBA.SYS_USERS
where U_NAME = _user and U_IS_ROLE = 0 and U_SQL_ENABLE = 1 with (prefetch 1);
if (1 = DB.DBA.vsp_auth_verify_pass (auth, _u_name,
get_keyword ('realm', auth, ''),
get_keyword ('uri', auth, ''),
get_keyword ('nonce', auth, ''),
get_keyword ('nc', auth, ''),
get_keyword ('cnonce', auth, ''),
get_keyword ('qop', auth, ''),
_u_password))
{
connection_set ('SPARQLUserId', _u_name);
commit work;
return 1;
}
}
nf:
DB.DBA.vsp_auth_get (realm, http_path (),
md5 (datestring (now ())),
md5 ('secret'),
'false', lines, allow_basic);
return 0;
}
;
|