]> andersk Git - moira.git/blame - server/qrtn.pc
remove some unused code (setup_akum), uppercasify ahal/dhal
[moira.git] / server / qrtn.pc
CommitLineData
7ac48069 1/* $Id$
2 *
3 * Query-processing routines
b070f8a1 4 *
7ac48069 5 * Copyright (C) 1987-1998 by the Massachusetts Institute of Technology
6 * For copying and distribution information, please see the file
7 * <mit-copyright.h>.
5eaef520 8 *
b070f8a1 9 */
10
b070f8a1 11#include <mit-copyright.h>
b070f8a1 12#include "mr_server.h"
7ac48069 13#include "qrtn.h"
03c05291 14#include "query.h"
7ac48069 15
85330553 16#include <stdio.h>
7ac48069 17#include <stdlib.h>
18#include <string.h>
19
048b1b94 20EXEC SQL INCLUDE sqlca; /* SQL Communications Area */
21EXEC SQL INCLUDE sqlda; /* SQL Descriptor Area */
7ac48069 22
23RCSID("$Header$");
048b1b94 24
03c05291 25SQLDA *mr_sqlda;
5eaef520 26EXEC SQL BEGIN DECLARE SECTION;
1741dca0 27int mr_sig_length;
048b1b94 28char stmt_buf[MR_STMTBUF_LEN];
5eaef520 29EXEC SQL END DECLARE SECTION;
b070f8a1 30
30cf9ed3 31char *Argv[QMAXARGS];
03c05291 32extern char *table_name[];
33extern char *sqlbuffer[QMAXARGS];
b070f8a1 34
03c05291 35int dbms_errno = 0;
b070f8a1 36int mr_errcode = 0;
5eaef520 37EXEC SQL BEGIN DECLARE SECTION;
048b1b94 38int query_timeout = 30;
923a939b 39char *database = "moira";
048b1b94 40EXEC SQL END DECLARE SECTION;
b070f8a1 41extern char *whoami;
42extern FILE *journal;
43
03c05291 44int mr_verify_query(client *cl, struct query *q, int argc, char *argv_ro[]);
29028043 45int do_retrieve(struct query *q, char *pqual,
7ac48069 46 int (*action)(int, char *[], void *), void *actarg);
03c05291 47int do_update(struct query *q, char *argv[], char *qual,
7ac48069 48 int (*action)(int, char *[], void *), void *actarg);
03c05291 49int do_append(struct query *q, char *argv[], char *pqual,
7ac48069 50 int (*action)(int, char *[], void *), void *actarg);
03c05291 51int do_delete(struct query *q, char *qual,
7ac48069 52 int (*action)(int, char *[], void *), void *actarg);
03c05291 53void build_sql_stmt(char *result_buf, char *cmd, char *targetlist,
54 char *argv[], char *qual);
03c05291 55
7ac48069 56SQLDA *mr_alloc_sqlda(void);
57void sqlglm(char *, int *, int *);
45bf7573 58
048b1b94 59/*
03c05291 60 * dbmserr: Called when the DBMS indicates an error.
b070f8a1 61 */
62
03c05291 63void dbmserr(void)
b070f8a1 64{
5eaef520 65 EXEC SQL BEGIN DECLARE SECTION;
66 char err_msg[256];
67 EXEC SQL END DECLARE SECTION;
68 int bufsize = 256, msglength = 0;
69
70 dbms_errno = -sqlca.sqlcode;
71 mr_errcode = MR_DBMS_ERR;
72 com_err(whoami, MR_DBMS_ERR, " code %d\n", dbms_errno);
73 sqlglm(err_msg, &bufsize, &msglength);
74 err_msg[msglength] = 0;
75 com_err(whoami, 0, "SQL error text = %s", err_msg);
76 critical_alert("MOIRA", "Moira server encountered DBMS ERROR %d\n%s",
77 dbms_errno, err_msg);
b070f8a1 78}
79
45bf7573 80/* This is declarative, not executed. Applies from here on, in this file. */
03c05291 81EXEC SQL WHENEVER SQLERROR DO dbmserr();
048b1b94 82
03c05291 83int mr_open_database(void)
b070f8a1 84{
44d12d58 85 int i;
5eaef520 86 static first_open = 1;
b070f8a1 87
5eaef520 88 if (first_open)
89 {
90 first_open = 0;
b070f8a1 91
5eaef520 92 /* initialize local argv */
93 for (i = 0; i < 16; i++)
e688520a 94 Argv[i] = xmalloc(MAX_FIELD_WIDTH);
b070f8a1 95
5eaef520 96 mr_sqlda = mr_alloc_sqlda();
c9a214e4 97
5eaef520 98 incremental_init();
99 flush_cache();
b070f8a1 100 }
b070f8a1 101
5eaef520 102 dbms_errno = 0;
103 mr_errcode = 0;
03c05291 104
5eaef520 105 /* open the database */
106 EXEC SQL CONNECT :database IDENTIFIED BY :database;
1741dca0 107
5eaef520 108 if (dbms_errno)
109 return mr_errcode;
1741dca0 110
5eaef520 111 EXEC SQL SELECT data_length INTO :mr_sig_length FROM user_tab_columns
112 WHERE table_name = 'USERS' and column_name = 'SIGNATURE';
113 EXEC SQL COMMIT WORK;
114 if (dbms_errno)
115 return mr_errcode;
116
117 return MR_SUCCESS;
b070f8a1 118}
119
03c05291 120void mr_close_database(void)
b070f8a1 121{
5eaef520 122 flush_cache();
123 EXEC SQL COMMIT RELEASE;
b070f8a1 124}
125
5eaef520 126int mr_check_access(client *cl, char *name, int argc, char *argv_ro[])
b070f8a1 127{
5eaef520 128 struct query *q;
b070f8a1 129
5eaef520 130 dbms_errno = 0;
131 mr_errcode = 0;
b070f8a1 132
85330553 133 q = get_query_by_name(name);
5eaef520 134 if (!q)
135 return MR_NO_HANDLE;
b070f8a1 136
5eaef520 137 return mr_verify_query(cl, q, argc, argv_ro);
b070f8a1 138}
139
5eaef520 140int mr_process_query(client *cl, char *name, int argc, char *argv_ro[],
7ac48069 141 int (*action)(int, char *[], void *), void *actarg)
b070f8a1 142{
44d12d58 143 struct query *q;
144 int status;
145 struct validate *v;
263a36d4 146 char *qual = NULL;
5eaef520 147 EXEC SQL BEGIN DECLARE SECTION;
148 char *table;
149 EXEC SQL END DECLARE SECTION;
150 struct save_queue *sq;
151
152 dbms_errno = 0;
153 mr_errcode = 0;
b070f8a1 154
5eaef520 155 /* list queries command */
156 if (!strcmp(name, "_list_queries"))
157 {
85330553 158 list_queries(action, actarg);
5eaef520 159 return MR_SUCCESS;
b070f8a1 160 }
161
5eaef520 162 /* help query command */
163 if (!strcmp(name, "_help"))
164 {
165 if (argc < 1)
166 return MR_ARGS;
85330553 167 q = get_query_by_name(argv_ro[0]);
5eaef520 168 if (!q)
169 return MR_NO_HANDLE;
170 help_query(q, action, actarg);
171 return MR_SUCCESS;
172 }
b070f8a1 173
5eaef520 174 /* get query structure, return error if named query does not exist */
85330553 175 q = get_query_by_name(name);
5eaef520 176 if (!q)
177 return MR_NO_HANDLE;
178 v = q->validate;
179
180 /* setup argument vector, verify access and arguments */
181 if ((status = mr_verify_query(cl, q, argc, argv_ro)) != MR_SUCCESS)
182 goto out;
183
184 /* perform any special query pre-processing */
185 if (v && v->pre_rtn)
186 {
7ac48069 187 status = (*v->pre_rtn)(q, Argv, cl);
5eaef520 188 if (status != MR_SUCCESS)
b070f8a1 189 goto out;
b070f8a1 190 }
191
5eaef520 192 switch (q->type)
193 {
b070f8a1 194 case RETRIEVE:
5eaef520 195 /* for queries that do not permit wildcarding, check if row
196 uniquely exists */
197 if (v && v->field)
198 {
199 status = validate_row(q, Argv, v);
200 if (status != MR_EXISTS)
201 break;
b070f8a1 202 }
203
5eaef520 204 /* build "where" clause if needed */
205 if (q->qual)
263a36d4 206 qual = build_qual(q->qual, q->argc, Argv);
5eaef520 207
5eaef520 208 /* if there is a followup routine, then we must save the results */
209 /* of the first query for use by the followup routine */
210 /* if q->rvar = NULL, perform post_rtn only */
211 if (q->rvar)
212 {
213 if (v && v->post_rtn)
214 {
215 sq = sq_create();
263a36d4 216 status = do_retrieve(q, qual, sq_save_args, sq);
5eaef520 217 if (status != MR_SUCCESS)
218 {
219 sq_destroy(sq);
220 break;
b070f8a1 221 }
5eaef520 222 status = (*v->post_rtn)(q, sq, v, action, actarg, cl);
223 }
224 else
225 {
226 /* normal retrieve */
263a36d4 227 status = do_retrieve(q, qual, action, actarg);
b070f8a1 228 }
5eaef520 229 if (status != MR_SUCCESS)
230 break;
b070f8a1 231 }
5eaef520 232 else
233 status = (*v->post_rtn)(q, Argv, cl, action, actarg);
b070f8a1 234
5eaef520 235 break;
b070f8a1 236
237 case UPDATE:
5eaef520 238 /* see if row already exists */
239 if (v->field)
240 {
241 status = validate_row(q, Argv, v);
242 if (status != MR_EXISTS)
243 break;
b070f8a1 244 }
245
5eaef520 246 /* build "where" clause and perform update */
247 /* if q->rvar = NULL, perform post_rtn only */
248 if (q->rvar)
249 {
263a36d4 250 qual = build_qual(q->qual, q->argc, Argv);
5eaef520 251 incremental_before(q->rtable, qual, argv_ro);
252 status = do_update(q, &Argv[q->argc], qual, action, actarg);
253 incremental_after(q->rtable, qual, argv_ro);
254 if (status != MR_SUCCESS)
255 break;
256 flush_name(argv_ro[0], q->rtable);
257 table = table_name[q->rtable];
258 if (strcmp(q->shortname, "sshi") && strcmp(q->shortname, "ssif"))
259 {
260 EXEC SQL UPDATE tblstats
261 SET updates = updates + 1, modtime = SYSDATE
262 WHERE table_name = :table;
b070f8a1 263 }
264 }
265
5eaef520 266 /* execute followup routine (if any) */
267 if (v->post_rtn)
268 status = (*v->post_rtn)(q, Argv, cl);
b070f8a1 269
5eaef520 270 break;
b070f8a1 271
272 case APPEND:
5eaef520 273 /* see if row already exists */
274 if (v->field)
275 {
276 status = validate_row(q, Argv, v);
277 if (status != MR_NO_MATCH)
278 break;
b070f8a1 279 }
280
5eaef520 281 /* build "where" clause if needed */
282 if (q->qual)
263a36d4 283 qual = build_qual(q->qual, q->argc, Argv);
5eaef520 284
285 /* perform the append */
286 /* if q->rvar = NULL, perform post_rtn only */
287 if (q->rvar)
288 {
289 incremental_clear_before();
263a36d4 290 status = do_append(q, &Argv[q->argc], qual, action, actarg);
5eaef520 291 if (status != MR_SUCCESS)
292 break;
293 if (v && v->object_id)
294 {
263a36d4 295 qual = realloc(qual, 15 + strlen(q->rvar) +
296 strlen(Argv[q->argc + q->vcnt]));
5eaef520 297 sprintf(qual, "%s.%s = %s", q->rvar, v->object_id,
298 Argv[q->argc + q->vcnt]);
299 incremental_after(q->rtable, qual, argv_ro);
300 }
301 else
263a36d4 302 incremental_after(q->rtable, qual, argv_ro);
b070f8a1 303
5eaef520 304 table = table_name[q->rtable];
305 EXEC SQL UPDATE tblstats
306 SET appends = appends + 1, modtime = SYSDATE
307 WHERE table_name = :table;
b070f8a1 308 }
5eaef520 309
310 /* execute followup routine */
311 if (v->post_rtn)
312 status = (*v->post_rtn)(q, Argv, cl);
313 break;
b070f8a1 314
315 case DELETE:
5eaef520 316 /* see if row already exists */
317 if (v->field)
318 {
319 status = validate_row(q, Argv, v);
320 if (status != MR_EXISTS)
321 break;
b070f8a1 322 }
323
5eaef520 324 /* build "where" clause and perform delete */
325 /* if q->rvar = NULL, perform post_rtn only */
326 if (q->rvar)
327 {
263a36d4 328 qual = build_qual(q->qual, q->argc, Argv);
5eaef520 329 table = table_name[q->rtable];
330 incremental_before(q->rtable, qual, argv_ro);
331 status = do_delete(q, qual, action, actarg);
332 incremental_clear_after();
333 if (status != MR_SUCCESS)
334 break;
335 flush_name(argv_ro[0], q->rtable);
336 EXEC SQL UPDATE tblstats
337 SET deletes = deletes + 1, modtime = SYSDATE
338 WHERE table_name = :table;
b070f8a1 339 }
340
5eaef520 341 /* execute followup routine */
342 if (v->post_rtn)
343 status = (*v->post_rtn)(q, Argv, cl);
344 break;
7ac48069 345
346 case SPECIAL:
347 break;
b070f8a1 348 }
349
350out:
263a36d4 351 free(qual);
352
5eaef520 353 if (status == MR_SUCCESS && dbms_errno != 0)
354 {
355 com_err(whoami, MR_INTERNAL, "Server didn't notice DBMS ERROR %d",
356 dbms_errno);
357 status = mr_errcode;
b070f8a1 358 }
359
5eaef520 360 if (q->type == RETRIEVE)
361 EXEC SQL COMMIT WORK;
362 else
363 {
364 if (status == MR_SUCCESS)
365 {
366 EXEC SQL COMMIT WORK;
367 if (journal)
368 {
e688520a 369 char *buf;
5eaef520 370 int i;
371 extern time_t now;
372
373 fprintf(journal, "%% %s %s %s",
374 cl->clname, cl->entity, ctime(&now));
85330553 375 fprintf(journal, "%s ", q->name);
5eaef520 376 for (i = 0; i < argc; i++)
377 {
378 if (i != 0)
379 putc(' ', journal);
e688520a 380 buf = requote(argv_ro[i]);
5eaef520 381 fputs(buf, journal);
e688520a 382 free(buf);
b070f8a1 383 }
5eaef520 384 putc('\n', journal);
385 fflush(journal);
b070f8a1 386 }
5eaef520 387 incremental_update();
388 }
389 else
390 {
391 cache_abort();
392 EXEC SQL ROLLBACK WORK;
393 incremental_flush();
b070f8a1 394 }
395 }
5eaef520 396 cache_commit(); /* commit following abort is safe */
b070f8a1 397
85330553 398 if (status != MR_SUCCESS)
5eaef520 399 com_err(whoami, status, " (Query failed)");
400 return status;
b070f8a1 401}
402
263a36d4 403char *build_qual(char *fmt_buf, int argc, char *argv[])
b070f8a1 404{
263a36d4 405 char *res, *result_buf, *fmt, *arg, *like, *p;
406
407 result_buf = xmalloc(2 * (strlen(fmt_buf) + argc * ARGLEN));
408
409 res = result_buf;
410 fmt = fmt_buf;
411
412 like = strstr(fmt, "LIKE");
413 arg = strchr(fmt, '%');
5eaef520 414
263a36d4 415 /* Look through the format for LIKE expressions and arguments.
416 Substitute in the arguments, simplify the `LIKE's to `='s
417 where possible, and insert ESCAPE clauses where needed */
418
419 while (*fmt)
5eaef520 420 {
263a36d4 421 if (!like && !arg)
5eaef520 422 {
263a36d4 423 /* only plain text remains */
424 strcpy(res, fmt);
425 res = strchr(res, '\0');
426 break;
427 }
428 else if (!like || arg < like)
429 {
430 /* regular arg: copy up to arg, then substitute */
431 strncpy(res, fmt, arg - fmt);
432 res += arg - fmt;
433 if (*++arg)
5eaef520 434 {
263a36d4 435 switch (*arg++)
5eaef520 436 {
263a36d4 437 case '%':
438 *res++ = '%';
5eaef520 439 break;
263a36d4 440
5eaef520 441 case 's':
263a36d4 442 p = *argv;
443 /* copy string, doubling single quotes */
444 while (*p)
5eaef520 445 {
263a36d4 446 if (*p == '\'')
447 *res++ = '\'';
448 *res++ = *p++;
03c05291 449 }
5eaef520 450 argv++;
451 break;
263a36d4 452
5eaef520 453 case 'd':
454 res += sprintf(res, "%d", *(int *)*argv++);
455 break;
03c05291 456 }
5eaef520 457 }
263a36d4 458 fmt = arg;
459 arg = strchr(fmt, '%');
460 } else {
461 /* LIKE arg: copy over up to the arg, then copy and convert arg */
462 int escape = 0;
463
464 strncpy(res, fmt, arg - fmt);
465 res += arg - fmt;
466
467 /* copy arg, converting UNIX globs to `SQL voodoo', and noting
468 if we'll need an ESCAPE clause */
469 for (p = *argv++; *p; p++)
470 {
471 switch (*p)
472 {
473 case '*':
474 *res++ = '%';
475 *res++ = '%'; /* need to double for build_sql_stmt */
476 break;
477
478 case '?':
479 *res++ = '_';
480 break;
481
482 case '%':
483 case '_':
484 *res++ = '*';
485 *res++ = *p;
486 if (*p == '%')
487 *res++ = *p;
488 escape = 1;
489 break;
490
491 case '\'':
492 *res++ = '\'';
493 /* fall through */
494
495 default:
496 *res++ = *p;
497 }
498 }
499
500 fmt = arg + 2;
501 if (*fmt == '\'')
502 *res++ = *fmt++;
503
504 if (escape)
505 res += sprintf(res, " ESCAPE '*'");
506
507 arg = strchr(fmt, '%');
508 like = strstr(fmt, "LIKE");
5eaef520 509 }
b070f8a1 510 }
263a36d4 511
5eaef520 512 *res = '\0';
263a36d4 513 result_buf = realloc(result_buf, strlen(result_buf) + 1);
514 return result_buf;
b070f8a1 515}
516
b070f8a1 517/* Build arguement vector, verify query and arguments */
518
f1bc925a 519int privileged;
520
5eaef520 521int mr_verify_query(client *cl, struct query *q, int argc, char *argv_ro[])
b070f8a1 522{
44d12d58 523 int argreq;
524 int status;
525 struct validate *v = q->validate;
526 int i;
527 char *to, *fr, *stop;
5eaef520 528
529 privileged = 0;
530
531 /* check argument count */
532 argreq = q->argc;
533 if (q->type == UPDATE || q->type == APPEND)
534 argreq += q->vcnt;
535 if (argc != argreq)
536 return MR_ARGS;
537
538 /* copy the arguments into a local argv that we can modify */
539 for (i = 0; i < argc; i++)
540 {
e688520a 541 for (to = Argv[i], fr = argv_ro[i], stop = to + MAX_FIELD_WIDTH; (*fr) && (to < stop);)
5eaef520 542 *to++ = *fr++;
543
544 if (*fr)
545 return MR_ARG_TOO_LONG;
546 *to = '\0';
547
85330553 548 if (to > Argv[i] && *--to == '\\')
5eaef520 549 return MR_BAD_CHAR;
b070f8a1 550 }
551
5eaef520 552 /* check initial query access */
553 status = check_query_access(q, Argv, cl);
554 if (status != MR_SUCCESS && status != MR_PERM)
555 return status;
556 if (status == MR_SUCCESS)
557 privileged++;
558
559 /* validate arguments */
560 if (v && v->valobj)
561 {
562 status = validate_fields(q, Argv, v->valobj, v->objcnt);
563 if (status != MR_SUCCESS)
564 return status;
b070f8a1 565 }
566
5eaef520 567 /* perform special query access check */
568 if (!privileged && v && v->acs_rtn)
569 {
570 status = (*v->acs_rtn)(q, Argv, cl);
571 if (status != MR_SUCCESS && status != MR_PERM)
572 return status;
573 if (status == MR_SUCCESS)
574 return MR_SUCCESS;
b070f8a1 575 }
576
5eaef520 577 return privileged ? MR_SUCCESS : MR_PERM;
b070f8a1 578}
579
580
581/* This routine caches info from the database. Each query acl is stored
582 * in the query structure, and whether that acl contains everybody.
583 */
584
5eaef520 585int check_query_access(struct query *q, char *argv[], client *cl)
048b1b94 586{
5eaef520 587 EXEC SQL BEGIN DECLARE SECTION;
588 char *name;
589 int acl_id;
590 static int def_uid;
591 EXEC SQL END DECLARE SECTION;
b070f8a1 592
5eaef520 593 /* initialize default uid */
594 if (def_uid == 0)
595 EXEC SQL SELECT users_id INTO :def_uid FROM users WHERE login = 'default';
596
597 /* get query access control list */
598 if (q->acl != 0)
599 acl_id = q->acl;
600 else
601 {
602 name = q->shortname;
603 EXEC SQL SELECT list_id INTO :acl_id FROM capacls WHERE tag = :name;
604 if (sqlca.sqlcode < 0)
605 return MR_DBMS_ERR;
606 if (sqlca.sqlcode == SQL_NO_MATCH)
607 return MR_PERM;
608 q->acl = acl_id;
609
610 /* check for default access */
611 EXEC SQL SELECT member_id INTO :acl_id FROM imembers
612 WHERE list_id = :acl_id AND member_type = 'USER'
613 AND member_id = :def_uid;
614 if (sqlca.sqlerrd[2] == 0)
615 q->everybody = 0;
616 else
617 q->everybody = 1;
b070f8a1 618 }
619
5eaef520 620 if (q->everybody)
621 return MR_SUCCESS;
b070f8a1 622
5eaef520 623 if (find_member("LIST", acl_id, cl))
624 return MR_SUCCESS;
625 else
626 return MR_PERM;
048b1b94 627}
b070f8a1 628
629
5eaef520 630int find_member(char *list_type, int list_id, client *cl)
048b1b94 631{
5eaef520 632 EXEC SQL BEGIN DECLARE SECTION;
633 int flag, users_id, client_id;
634 EXEC SQL END DECLARE SECTION;
635
636 if (!strcmp(strtrim(list_type), "USER") && list_id == cl->users_id)
637 return 1;
638
639 if (!strcmp(strtrim(list_type), "KERBEROS") && list_id == -cl->client_id)
640 return 1;
641
642 /* see if client is a member of list */
643 flag = 0;
644 users_id = cl->users_id;
645 client_id = -cl->client_id;
646 EXEC SQL SELECT COUNT(member_id) INTO :flag FROM imembers
647 WHERE list_id = :list_id
648 AND ( ( member_type = 'USER' AND member_id = :users_id )
649 OR (member_type = 'KERBEROS' AND member_id = :client_id ) );
650 if (sqlca.sqlcode == 0)
651 return flag;
652 return 0;
048b1b94 653}
b070f8a1 654
655
29028043 656int do_retrieve(struct query *q, char *pqual,
7ac48069 657 int (*action)(int, char *[], void *), void *actarg)
048b1b94 658{
5eaef520 659 build_sql_stmt(stmt_buf, "SELECT", q->tlist, NULL, pqual);
29028043 660 if (q->sort)
5eaef520 661 {
662 strcat(stmt_buf, " ORDER BY ");
29028043 663 strcat(stmt_buf, q->sort);
b070f8a1 664 }
665
7ac48069 666 return do_for_all_rows(stmt_buf, q->vcnt, action, actarg);
048b1b94 667}
668
5eaef520 669void build_sql_stmt(char *result_buf, char *cmd, char *targetlist,
670 char *argv[], char *qual)
048b1b94 671{
5eaef520 672 char fmt_buf[MR_STMTBUF_LEN];
44d12d58 673 char *res, *fmt;
5eaef520 674
675 if (qual)
676 sprintf(fmt_buf, "%s %s WHERE %s", cmd, targetlist, qual);
677 else
678 sprintf(fmt_buf, "%s %s", cmd, targetlist);
679
680 for (res = result_buf, fmt = fmt_buf; *fmt; fmt++)
681 {
682 if (*fmt == '%')
683 {
684 if (*++fmt)
685 {
686 switch (*fmt)
687 {
688 case '%': /* %% -> % */
689 *res++ = *fmt;
690 break;
691 case 's':
692 if (*argv[0])
693 {
694 char *p = *argv;
695 while (*p)
696 {
697 if (*p == '\'')
698 *res++ = '\''; /* double the ' */
699 *res++ = *p++;
03c05291 700 }
99e09b48 701 }
5eaef520 702 argv++;
703 break;
704 case 'd':
705 res += sprintf(res, "%d", *(int *)*argv++);
706 break;
707 default: /* Swallow other %? pairs */
708 break;
99e09b48 709 }
5eaef520 710 }
711 else
712 break;
713 }
714 else
715 *res++ = *fmt; /* text -> result buffer */
048b1b94 716 }
5eaef520 717 *res = '\0';
048b1b94 718}
b070f8a1 719
5eaef520 720int do_update(struct query *q, char *argv[], char *qual,
7ac48069 721 int (*action)(int, char *[], void *), void *actarg)
048b1b94 722{
5eaef520 723 build_sql_stmt(stmt_buf, "UPDATE", q->tlist, argv, qual);
724 EXEC SQL EXECUTE IMMEDIATE :stmt_buf;
725 if (mr_errcode)
726 return mr_errcode;
727 return MR_SUCCESS;
048b1b94 728}
b070f8a1 729
5eaef520 730int do_append(struct query *q, char *argv[], char *pqual,
7ac48069 731 int (*action)(int, char *[], void *), void *actarg)
048b1b94 732{
5eaef520 733 build_sql_stmt(stmt_buf, "INSERT", q->tlist, argv, pqual);
734 EXEC SQL EXECUTE IMMEDIATE :stmt_buf;
735 if (mr_errcode)
736 return mr_errcode;
737 return MR_SUCCESS;
048b1b94 738}
b070f8a1 739
7ac48069 740int do_delete(struct query *q, char *qual,
741 int (*action)(int, char *[], void *), void *actarg)
048b1b94 742{
5eaef520 743 sprintf(stmt_buf, "DELETE FROM %s WHERE %s", table_name[q->rtable], qual);
744 EXEC SQL EXECUTE IMMEDIATE :stmt_buf;
745 if (mr_errcode)
746 return mr_errcode;
747 return MR_SUCCESS;
048b1b94 748}
b070f8a1 749
750
751/**
752 ** set_next_object_id - set next object id in values table
753 **
754 ** Inputs: object - object name in values table and in objects
755 ** table - name of table objects are found in
1a41acb7 756 ** limit - should the ID be range limited
b070f8a1 757 **
758 ** - called before an APPEND operation to set the next object id to
759 ** be used for the new record to the next free value
760 **
761 **/
762
5eaef520 763int set_next_object_id(char *object, enum tables table, int limit)
048b1b94 764{
5eaef520 765 EXEC SQL BEGIN DECLARE SECTION;
766 int value;
767 char *obj = object;
768 EXEC SQL END DECLARE SECTION;
769 int starting_value;
770
771 EXEC SQL SELECT value INTO :value FROM numvalues WHERE name = :obj;
772 if (sqlca.sqlerrd[2] != 1)
773 return MR_NO_ID;
774
775 starting_value = value;
776 while (1)
777 {
778 if (limit && value > MAX_ID_VALUE)
779 value = MIN_ID_VALUE;
780
781 sprintf(stmt_buf, "SELECT %s FROM %s WHERE %s = %d",
782 object, table_name[table], object, value);
783 dosql(sqlbuffer);
784 if (sqlca.sqlcode < 0)
785 return mr_errcode;
786 if (sqlca.sqlcode == SQL_NO_MATCH)
787 break;
788
789 value++;
790 if (limit && value == starting_value)
791 {
792 com_err(whoami, 0, "All id values have been used");
793 return MR_NO_ID;
45bf7573 794 }
b070f8a1 795 }
796
85330553 797 com_err(whoami, 0, "setting ID %s to %d", object, value);
5eaef520 798 EXEC SQL UPDATE numvalues SET value = :value WHERE name = :obj;
799 return MR_SUCCESS;
048b1b94 800}
b070f8a1 801
802
803/* Turn a kerberos name into the user's ID of the account that principal
804 * owns. Sets the kerberos ID and user ID.
805 */
806
5eaef520 807int set_krb_mapping(char *name, char *login, int ok, int *kid, int *uid)
048b1b94 808{
5eaef520 809 EXEC SQL BEGIN DECLARE SECTION;
810 int u_id, k_id;
811 char *krbname;
812 EXEC SQL END DECLARE SECTION;
b070f8a1 813
5eaef520 814 krbname = name;
815 *kid = 0;
816 *uid = 0;
b070f8a1 817
5eaef520 818 EXEC SQL SELECT km.users_id, km.string_id INTO :u_id, :k_id
819 FROM krbmap km, strings str
820 WHERE km.string_id = str.string_id AND str.string = :krbname;
821 EXEC SQL COMMIT WORK;
048b1b94 822
5eaef520 823 if (dbms_errno)
824 return mr_errcode;
b070f8a1 825
5eaef520 826 if (sqlca.sqlerrd[2] == 1)
827 {
b070f8a1 828 *kid = -k_id;
5eaef520 829 *uid = u_id;
830 return MR_SUCCESS;
831 }
832
833 if (name_to_id(name, STRINGS_TABLE, &k_id) == MR_SUCCESS)
834 *kid = -k_id;
b070f8a1 835
5eaef520 836 if (!ok)
837 {
838 *uid = *kid;
839 return MR_SUCCESS;
b070f8a1 840 }
841
5eaef520 842 if (name_to_id(login, USERS_TABLE, uid) != MR_SUCCESS)
843 *uid = 0;
b070f8a1 844
5eaef520 845 if (*kid == 0)
846 *kid = *uid;
847 if (dbms_errno)
848 return mr_errcode;
849 return MR_SUCCESS;
048b1b94 850}
b070f8a1 851
852
853/* For now this just checks the argc's. It should also see that there
854 * are no duplicate names.
855 */
856
03c05291 857void sanity_check_queries(void)
b070f8a1 858{
44d12d58 859 int i;
5eaef520 860 int maxv = 0, maxa = 0;
861 extern int QueryCount2;
862 extern struct query Queries2[];
b070f8a1 863
5eaef520 864#define MAX(x, y) ((x) > (y) ? (x) : (y))
b070f8a1 865
5eaef520 866 for (i = 0; i < QueryCount2; i++)
867 {
868 maxv = MAX(maxv, Queries2[i].vcnt);
869 maxa = MAX(maxa, Queries2[i].argc);
b070f8a1 870 }
5eaef520 871 if (MAX(maxv, maxa) > QMAXARGS)
872 {
873 com_err(whoami, 0, "A query has more args than QMAXARGS");
874 exit(1);
b070f8a1 875 }
876}
048b1b94 877
03c05291 878
879/* Generically do a SELECT, storing the results in the provided buffers */
880
5eaef520 881void dosql(char *buffers[])
03c05291 882{
5eaef520 883 int i, errcode = 0, errlen;
03c05291 884
885 EXEC SQL PREPARE inc_stmt FROM :stmt_buf;
5eaef520 886 if (sqlca.sqlcode)
887 return;
03c05291 888 EXEC SQL DECLARE inc_crs CURSOR FOR inc_stmt;
889 EXEC SQL OPEN inc_crs;
890 mr_sqlda->N = QMAXARGS;
891 EXEC SQL DESCRIBE SELECT LIST FOR inc_stmt INTO mr_sqlda;
892 mr_sqlda->N = mr_sqlda->F;
5eaef520 893 for (i = 0; i < mr_sqlda->N; i++)
894 {
895 mr_sqlda->V[i] = buffers[i];
896 mr_sqlda->T[i] = 97;
e688520a 897 mr_sqlda->L[i] = MAX_FIELD_WIDTH;
5eaef520 898 }
03c05291 899 EXEC SQL FETCH inc_crs USING DESCRIPTOR mr_sqlda;
900
901 /* if we got an error from the FETCH, we have to preserve it or the
902 close will reset it and the caller will think nothing happened */
5eaef520 903 if (sqlca.sqlcode)
904 {
905 errcode = sqlca.sqlcode;
906 errlen = sqlca.sqlerrm.sqlerrml;
907 }
03c05291 908
909 EXEC SQL CLOSE inc_crs;
5eaef520 910 if (errcode)
911 {
912 sqlca.sqlcode = errcode;
913 sqlca.sqlerrm.sqlerrml = errlen;
914 }
03c05291 915}
916
7ac48069 917int do_for_all_rows(char *query, int count,
918 int (*action)(int, char *[], void *), void *actarg)
03c05291 919{
5eaef520 920 int i, rowcount = 0;
9450827a 921 EXEC SQL BEGIN DECLARE SECTION;
922 char *q = query;
923 EXEC SQL END DECLARE SECTION;
03c05291 924
9450827a 925 EXEC SQL PREPARE stmt FROM :q;
5eaef520 926 if (sqlca.sqlcode)
7ac48069 927 return MR_INTERNAL;
03c05291 928 EXEC SQL DECLARE curs CURSOR FOR stmt;
929 EXEC SQL OPEN curs;
930 mr_sqlda->N = count;
931 EXEC SQL DESCRIBE SELECT LIST FOR stmt INTO mr_sqlda;
932 mr_sqlda->N = mr_sqlda->F;
5eaef520 933 for (i = 0; i < mr_sqlda->N; i++)
934 {
935 mr_sqlda->V[i] = sqlbuffer[i];
936 mr_sqlda->T[i] = 97;
e688520a 937 mr_sqlda->L[i] = MAX_FIELD_WIDTH;
5eaef520 938 }
939
940 while (1)
941 {
942 EXEC SQL FETCH curs USING DESCRIPTOR mr_sqlda;
943 if (sqlca.sqlcode)
944 break;
945 (*action)(count, sqlbuffer, actarg);
946 rowcount++;
947 }
03c05291 948 EXEC SQL CLOSE curs;
5eaef520 949
950 if (mr_errcode)
951 return mr_errcode;
952 return (rowcount == 0) ? MR_NO_MATCH : MR_SUCCESS;
03c05291 953}
954
955
048b1b94 956/* eof:qrtn.dc */
This page took 0.539096 seconds and 5 git commands to generate.