]> andersk Git - moira.git/blame - server/qfollow.pc
Do proper validation of sids to ensure row doesn't already exist.
[moira.git] / server / qfollow.pc
CommitLineData
7ac48069 1/* $Id$
73cf66ba 2 *
7ac48069 3 * Query followup routines
4 *
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>.
73cf66ba 8 *
9 */
10
73cf66ba 11#include <mit-copyright.h>
73cf66ba 12#include "mr_server.h"
03c05291 13#include "query.h"
7ac48069 14#include "qrtn.h"
15
85330553 16#include <errno.h>
73cf66ba 17#include <ctype.h>
7ac48069 18#include <stdlib.h>
03c05291 19#include <string.h>
7ac48069 20
73cf66ba 21EXEC SQL INCLUDE sqlca;
7ac48069 22
23RCSID("$Header$");
73cf66ba 24
03c05291 25extern char *whoami, *table_name[];
26extern int dbms_errno, mr_errcode;
73cf66ba 27
28EXEC SQL BEGIN DECLARE SECTION;
29extern char stmt_buf[];
30EXEC SQL END DECLARE SECTION;
31
03c05291 32EXEC SQL WHENEVER SQLERROR DO dbmserr();
73cf66ba 33
34
35/* FOLLOWUP ROUTINES */
36
03c05291 37/* generic set_modtime routine. This takes the table id from the query,
73cf66ba 38 * and will update the modtime, modby, and modwho fields in the entry in
39 * the table whose name field matches argv[0].
40 */
41
5eaef520 42int set_modtime(struct query *q, char *argv[], client *cl)
73cf66ba 43{
5eaef520 44 char *name, *entity, *table;
45 int who;
73cf66ba 46
5eaef520 47 entity = cl->entity;
48 who = cl->client_id;
49 table = table_name[q->rtable];
50 name = argv[0];
73cf66ba 51
5eaef520 52 sprintf(stmt_buf, "UPDATE %s SET modtime = SYSDATE, modby = %d, "
53 "modwith = '%s' WHERE name = '%s'", table, who, entity, name);
54 EXEC SQL EXECUTE IMMEDIATE :stmt_buf;
73cf66ba 55
5eaef520 56 return MR_SUCCESS;
73cf66ba 57}
58
03c05291 59/* generic set_modtime_by_id routine. This takes the table id from
73cf66ba 60 * the query, and the id name from the validate record,
61 * and will update the modtime, modby, and modwho fields in the entry in
62 * the table whose id matches argv[0].
63 */
64
5eaef520 65int set_modtime_by_id(struct query *q, char *argv[], client *cl)
73cf66ba 66{
5eaef520 67 char *entity, *table, *id_name;
68 int who, id;
69
70 entity = cl->entity;
71 who = cl->client_id;
72 table = table_name[q->rtable];
73 id_name = q->validate->object_id;
74
75 id = *(int *)argv[0];
76 sprintf(stmt_buf, "UPDATE %s SET modtime = SYSDATE, modby = %d, "
77 "modwith = '%s' WHERE %s = %d", table, who, entity, id_name, id);
78 EXEC SQL EXECUTE IMMEDIATE :stmt_buf;
79 return MR_SUCCESS;
73cf66ba 80}
81
82
83/* Sets the finger modtime on a user record. The users_id will be in argv[0].
84 */
85
5eaef520 86int set_finger_modtime(struct query *q, char *argv[], client *cl)
73cf66ba 87{
5eaef520 88 EXEC SQL BEGIN DECLARE SECTION;
89 int users_id, who;
90 char *entity;
91 EXEC SQL END DECLARE SECTION;
73cf66ba 92
5eaef520 93 entity = cl->entity;
94 who = cl->client_id;
95 users_id = *(int *)argv[0];
73cf66ba 96
5eaef520 97 EXEC SQL UPDATE users SET fmodtime = SYSDATE, fmodby = :who,
98 fmodwith = :entity WHERE users_id = :users_id;
73cf66ba 99
5eaef520 100 return MR_SUCCESS;
73cf66ba 101}
102
103
104/* Sets the pobox modtime on a user record. The users_id will be in argv[0].
105 */
106
5eaef520 107int set_pobox_modtime(struct query *q, char *argv[], client *cl)
73cf66ba 108{
5eaef520 109 EXEC SQL BEGIN DECLARE SECTION;
110 int users_id, who;
111 char *entity;
112 EXEC SQL END DECLARE SECTION;
73cf66ba 113
5eaef520 114 entity = cl->entity;
115 who = cl->client_id;
116 users_id = *(int *)argv[0];
73cf66ba 117
5eaef520 118 EXEC SQL UPDATE users SET pmodtime = SYSDATE, pmodby = :who,
119 pmodwith = :entity WHERE users_id = :users_id;
73cf66ba 120
5eaef520 121 return MR_SUCCESS;
73cf66ba 122}
123
124
125/* Like set_modtime, but uppercases the name first.
126 */
127
5eaef520 128int set_uppercase_modtime(struct query *q, char *argv[], client *cl)
73cf66ba 129{
5eaef520 130 char *name, *entity, *table;
131 int who;
73cf66ba 132
5eaef520 133 entity = cl->entity;
134 who = cl->client_id;
135 table = table_name[q->rtable];
136 name = argv[0];
73cf66ba 137
5eaef520 138 sprintf(stmt_buf, "UPDATE %s SET modtime = SYSDATE, modby = %d, "
139 "modwith = '%s' WHERE name = UPPER('%s')", table, who, entity, name);
140 EXEC SQL EXECUTE IMMEDIATE :stmt_buf;
73cf66ba 141
5eaef520 142 return MR_SUCCESS;
73cf66ba 143}
144
145
146/* Sets the modtime on the machine whose mach_id is in argv[0]. This routine
147 * is necessary for add_machine_to_cluster becuase the table that query
148 * operates on is "mcm", not "machine".
149 */
150
5eaef520 151int set_mach_modtime_by_id(struct query *q, char *argv[], client *cl)
73cf66ba 152{
5eaef520 153 EXEC SQL BEGIN DECLARE SECTION;
154 char *entity;
155 int who, id;
156 EXEC SQL END DECLARE SECTION;
157
158 entity = cl->entity;
159 who = cl->client_id;
160 id = *(int *)argv[0];
161 EXEC SQL UPDATE machine SET modtime = SYSDATE, modby = :who,
162 modwith = :entity WHERE mach_id = :id;
163
164 return MR_SUCCESS;
73cf66ba 165}
166
167
168/* Sets the modtime on the cluster whose mach_id is in argv[0]. This routine
169 * is necessary for add_cluster_data and delete_cluster_data becuase the
170 * table that query operates on is "svc", not "cluster".
171 */
172
5eaef520 173int set_cluster_modtime_by_id(struct query *q, char *argv[], client *cl)
73cf66ba 174{
5eaef520 175 EXEC SQL BEGIN DECLARE SECTION;
176 char *entity;
177 int who, id;
178 EXEC SQL END DECLARE SECTION;
179
180 entity = cl->entity;
181 who = cl->client_id;
182
183 id = *(int *)argv[0];
184 EXEC SQL UPDATE clusters SET modtime = SYSDATE, modby = :who,
185 modwith = :entity WHERE clu_id = :id;
186 return MR_SUCCESS;
73cf66ba 187}
188
189
190/* sets the modtime on the serverhost where the service name is in argv[0]
191 * and the mach_id is in argv[1].
192 */
193
5eaef520 194int set_serverhost_modtime(struct query *q, char *argv[], client *cl)
73cf66ba 195{
5eaef520 196 EXEC SQL BEGIN DECLARE SECTION;
197 char *entity, *serv;
198 int who, id;
199 EXEC SQL END DECLARE SECTION;
200
201 entity = cl->entity;
202 who = cl->client_id;
203
204 serv = argv[0];
205 id = *(int *)argv[1];
206 EXEC SQL UPDATE serverhosts
207 SET modtime = SYSDATE, modby = :who, modwith = :entity
208 WHERE service = :serv AND mach_id = :id;
209 return MR_SUCCESS;
73cf66ba 210}
211
212
213/* sets the modtime on the nfsphys where the mach_id is in argv[0] and the
214 * directory name is in argv[1].
215 */
216
5eaef520 217int set_nfsphys_modtime(struct query *q, char *argv[], client *cl)
73cf66ba 218{
5eaef520 219 EXEC SQL BEGIN DECLARE SECTION;
220 char *entity, *dir;
221 int who, id;
222 EXEC SQL END DECLARE SECTION;
223
224 entity = cl->entity;
225 who = cl->client_id;
226
227 id = *(int *)argv[0];
228 dir = argv[1];
229 EXEC SQL UPDATE nfsphys SET modtime = SYSDATE, modby = :who,
230 modwith = :entity WHERE dir = :dir AND mach_id = :id;
231 return MR_SUCCESS;
73cf66ba 232}
233
234
235/* sets the modtime on a filesystem, where argv[0] contains the filesys
236 * label.
237 */
238
5eaef520 239int set_filesys_modtime(struct query *q, char *argv[], client *cl)
73cf66ba 240{
5eaef520 241 EXEC SQL BEGIN DECLARE SECTION;
242 char *label, *entity;
243 int who;
244 extern int _var_phys_id;
245 EXEC SQL END DECLARE SECTION;
246
247 entity = cl->entity;
248 who = cl->client_id;
249
250 label = argv[0];
251 if (!strcmp(q->shortname, "ufil"))
252 label = argv[1];
253
254 EXEC SQL UPDATE filesys SET modtime = SYSDATE, modby = :who,
255 modwith = :entity, phys_id = :_var_phys_id
256 WHERE label = :label;
257 return MR_SUCCESS;
73cf66ba 258}
259
260
261/* sets the modtime on a zephyr class, where argv[0] contains the class
262 * name.
263 */
264
5eaef520 265int set_zephyr_modtime(struct query *q, char *argv[], client *cl)
73cf66ba 266{
5eaef520 267 EXEC SQL BEGIN DECLARE SECTION;
268 char *class, *entity;
269 int who;
270 EXEC SQL END DECLARE SECTION;
73cf66ba 271
5eaef520 272 entity = cl->entity;
273 who = cl->client_id;
73cf66ba 274
5eaef520 275 class = argv[0];
73cf66ba 276
5eaef520 277 EXEC SQL UPDATE zephyr SET modtime = SYSDATE, modby = :who,
278 modwith = :entity WHERE class = :class;
73cf66ba 279
5eaef520 280 return MR_SUCCESS;
73cf66ba 281}
282
69eb9470 283/* sets the modtime on an entry in services table, where argv[0] contains
284 * the service name.
285 */
286
287int set_service_modtime(struct query *q, char *argv[], client *cl)
288{
289 EXEC SQL BEGIN DECLARE SECTION;
290 char *service, *protocol, *entity;
291 int who;
292 EXEC SQL END DECLARE SECTION;
293
294 entity = cl->entity;
295 who = cl->client_id;
296
297 service = argv[0];
298 protocol = argv[1];
299
300 EXEC SQL UPDATE services SET modtime = SYSDATE, modby = :who,
301 modwith = :entity WHERE name = :service AND protocol = :protocol;
302
303 return MR_SUCCESS;
304}
73cf66ba 305
306/* fixes the modby field. This will be the second to last thing in the
307 * argv, the argv length is determined from the query structure. It is
308 * passed as a pointer to an integer. This will either turn it into a
309 * username, or # + the users_id.
310 */
5eaef520 311int followup_fix_modby(struct query *q, struct save_queue *sq,
7ac48069 312 struct validate *v, int (*action)(int, char *[], void *),
313 void *actarg, client *cl)
73cf66ba 314{
44d12d58 315 int i, j;
5eaef520 316 char **argv;
317 int id, status;
318
319 i = q->vcnt - 2;
320 while (sq_get_data(sq, &argv))
321 {
322 id = atoi(argv[i]);
323 if (id > 0)
324 status = id_to_name(id, USERS_TABLE, &argv[i]);
325 else
326 status = id_to_name(-id, STRINGS_TABLE, &argv[i]);
327 if (status && status != MR_NO_MATCH)
328 return status;
329 (*action)(q->vcnt, argv, actarg);
330 for (j = 0; j < q->vcnt; j++)
331 free(argv[j]);
332 free(argv);
73cf66ba 333 }
5eaef520 334 sq_destroy(sq);
335 return MR_SUCCESS;
73cf66ba 336}
337
73cf66ba 338/**
339 ** followup_ausr - add finger and pobox entries, set_user_modtime
340 **
341 ** Inputs:
342 ** argv[0] - login (add_user)
186dd63b 343 ** argv[U_LAST] - last name
344 ** argv[U_FIRST] - first name
345 ** argv[U_MIDDLE] - middle name
73cf66ba 346 **
347 **/
348
5eaef520 349int followup_ausr(struct query *q, char *argv[], client *cl)
73cf66ba 350{
5eaef520 351 EXEC SQL BEGIN DECLARE SECTION;
352 int who, status;
353 char *login, *entity, *name;
e688520a 354 char fullname[USERS_FIRST_SIZE + USERS_MIDDLE_SIZE + USERS_LAST_SIZE];
5eaef520 355 EXEC SQL END DECLARE SECTION;
73cf66ba 356
5eaef520 357 /* build fullname */
186dd63b 358 if (strlen(argv[U_FIRST]) && strlen(argv[U_MIDDLE]))
359 sprintf(fullname, "%s %s %s", argv[U_FIRST], argv[U_MIDDLE],
360 argv[U_LAST]);
361 else if (strlen(argv[U_FIRST]))
362 sprintf(fullname, "%s %s", argv[U_FIRST], argv[U_LAST]);
5eaef520 363 else
186dd63b 364 sprintf(fullname, "%s", argv[U_LAST]);
73cf66ba 365
5eaef520 366 login = argv[0];
367 who = cl->client_id;
368 entity = cl->entity;
73cf66ba 369
5eaef520 370 /* create finger entry, pobox & set modtime on user */
5eaef520 371 EXEC SQL UPDATE users
372 SET modtime = SYSDATE, modby = :who, modwith = :entity,
373 fullname = NVL(:fullname, CHR(0)), affiliation = type,
374 fmodtime = SYSDATE, fmodby = :who, fmodwith = :entity,
375 potype = 'NONE', pmodtime = SYSDATE, pmodby = :who, pmodwith = :entity
376 WHERE login = :login;
5eaef520 377
5eaef520 378 return MR_SUCCESS;
73cf66ba 379}
5eaef520 380
d6d830a1 381/* followup_gpob: fixes argv[2] and argv[3] based on the pobox type.
382 * Then completes the upcall to the user.
73cf66ba 383 *
d6d830a1 384 * argv[2] is the users_id on input and should be converted to the
385 * pobox name on output. argv[3] is empty on input and should be
386 * converted to an email address on output.
73cf66ba 387 */
388
5eaef520 389int followup_gpob(struct query *q, struct save_queue *sq, struct validate *v,
7ac48069 390 int (*action)(int, char *[], void *), void *actarg,
391 client *cl)
73cf66ba 392{
5eaef520 393 char **argv;
394 char *ptype, *p;
395 int mid, sid, status, i;
d6d830a1 396 EXEC SQL BEGIN DECLARE SECTION;
450849e9 397 int users_id, pid, iid, bid;
d6d830a1 398 char mach[MACHINE_NAME_SIZE], fs[FILESYS_LABEL_SIZE];
399 char str[STRINGS_STRING_SIZE];
400 EXEC SQL END DECLARE SECTION;
5eaef520 401
402 /* for each row */
403 while (sq_get_data(sq, &argv))
404 {
d6d830a1 405 mr_trim_args(4, argv);
5eaef520 406 ptype = argv[1];
d6d830a1 407 users_id = atoi(argv[2]);
5eaef520 408
450849e9 409 EXEC SQL SELECT pop_id, imap_id, box_id INTO :pid, :iid, :bid
410 FROM users WHERE users_id = :users_id;
411 if (sqlca.sqlcode)
412 return MR_USER;
413
414 if (ptype[0] == 'S')
415 {
416 /* SMTP or SPLIT */
417 EXEC SQL SELECT string INTO :str FROM strings
418 WHERE string_id = :bid;
419 if (sqlca.sqlcode)
420 return MR_STRING;
421
422 /* If SMTP, don't bother fetching IMAP and POP boxes. */
423 if (ptype[1] == 'M')
424 pid = iid = 0;
425 }
426 if (iid)
5eaef520 427 {
450849e9 428 /* IMAP, or SPLIT with IMAP */
429 EXEC SQL SELECT f.label, m.name INTO :fs, :mach
430 FROM filesys f, machine m
431 WHERE f.filsys_id = :iid AND f.mach_id = m.mach_id;
432 if (sqlca.sqlcode)
433 return MR_FILESYS;
434 }
435 if (pid)
436 {
437 /* POP, or SPLIT with POP */
d6d830a1 438 EXEC SQL SELECT m.name INTO :mach FROM machine m, users u
439 WHERE u.users_id = :users_id AND u.pop_id = m.mach_id;
440 if (sqlca.sqlcode)
5eaef520 441 return MR_MACHINE;
450849e9 442 }
443
444 free(argv[2]);
445 free(argv[3]);
446
447 /* Now assemble the right answer. */
448 if (!strcmp(ptype, "POP"))
449 {
d6d830a1 450 argv[2] = xstrdup(strtrim(mach));
d6d830a1 451 argv[3] = xmalloc(strlen(argv[0]) + strlen(argv[2]) + 2);
452 sprintf(argv[3], "%s@%s", argv[0], argv[2]);
5eaef520 453 }
454 else if (!strcmp(ptype, "SMTP"))
455 {
d6d830a1 456 argv[2] = xstrdup(strtrim(str));
457 argv[3] = xstrdup(str);
73cf66ba 458 }
f76b37f2 459 else if (!strcmp(ptype, "IMAP"))
460 {
d6d830a1 461 argv[2] = xstrdup(strtrim(fs));
d6d830a1 462 argv[3] = xmalloc(strlen(argv[0]) + strlen(strtrim(mach)) + 2);
463 sprintf(argv[3], "%s@%s", argv[0], mach);
f76b37f2 464 }
450849e9 465 else if (!strcmp(ptype, "SPLIT"))
466 {
467 argv[2] = xstrdup(strtrim(str));
468 argv[3] = xmalloc(strlen(argv[0]) + strlen(strtrim(mach)) +
469 strlen(str) + 4);
470 sprintf(argv[3], "%s@%s, %s", argv[0], mach, str);
471 }
5eaef520 472 else /* ptype == "NONE" */
473 goto skip;
5eaef520 474
475 if (!strcmp(q->shortname, "gpob"))
476 {
d6d830a1 477 sid = atoi(argv[5]);
5eaef520 478 if (sid > 0)
d6d830a1 479 status = id_to_name(sid, USERS_TABLE, &argv[5]);
5eaef520 480 else
d6d830a1 481 status = id_to_name(-sid, STRINGS_TABLE, &argv[5]);
482 if (status && status != MR_NO_MATCH)
483 return status;
73cf66ba 484 }
73cf66ba 485
5eaef520 486 (*action)(q->vcnt, argv, actarg);
73cf66ba 487 skip:
5eaef520 488 /* free saved data */
489 for (i = 0; i < q->vcnt; i++)
490 free(argv[i]);
491 free(argv);
73cf66ba 492 }
493
5eaef520 494 sq_destroy(sq);
495 return MR_SUCCESS;
73cf66ba 496}
497
b121cf1b 498/* Fix an ace_name, based on its type. */
499
500static int fix_ace(char *type, char **name)
501{
502 int id = atoi(*name);
503
504 if (!strcmp(type, "LIST"))
505 return id_to_name(id, LIST_TABLE, name);
506 else if (!strcmp(type, "USER"))
507 return id_to_name(id, USERS_TABLE, name);
508 else if (!strcmp(type, "KERBEROS"))
509 return id_to_name(id, STRINGS_TABLE, name);
510 else
511 {
512 free(*name);
513 if (!strcmp(type, "NONE"))
514 *name = xstrdup("NONE");
515 else
516 *name = xstrdup("???");
517 return MR_SUCCESS;
518 }
519}
73cf66ba 520
b121cf1b 521
522/* followup_gsnt: fix the ace_name and modby */
73cf66ba 523
5eaef520 524int followup_gsnt(struct query *q, struct save_queue *sq, struct validate *v,
7ac48069 525 int (*action)(int, char *[], void *), void *actarg,
526 client *cl)
73cf66ba 527{
b121cf1b 528 char **argv;
529 int status;
5eaef520 530
531 while (sq_get_data(sq, &argv))
532 {
533 mr_trim_args(q->vcnt, argv);
534
b121cf1b 535 status = fix_ace(argv[7], &argv[8]);
5eaef520 536 if (status && status != MR_NO_MATCH)
537 return status;
fde7313c 538 }
539
b121cf1b 540 return followup_fix_modby(q, sq, v, action, actarg, cl);
fde7313c 541}
542
543
b121cf1b 544/* followup_ghst: fix the ace_name, strings and modby */
fde7313c 545
5eaef520 546int followup_ghst(struct query *q, struct save_queue *sq, struct validate *v,
7ac48069 547 int (*action)(int, char *[], void *), void *actarg,
548 client *cl)
fde7313c 549{
b121cf1b 550 char **argv;
551 int id, status;
5eaef520 552
553 while (sq_get_data(sq, &argv))
554 {
555 mr_trim_args(q->vcnt, argv);
556
5eaef520 557 id = atoi(argv[13]);
558 status = id_to_name(id, STRINGS_TABLE, &argv[13]);
559 if (status)
560 return status;
561 id = atoi(argv[14]);
562 status = id_to_name(id, STRINGS_TABLE, &argv[14]);
563 if (status)
564 return status;
565 id = atoi(argv[16]);
566 if (id < 0)
567 status = id_to_name(-id, STRINGS_TABLE, &argv[16]);
568 else
569 status = id_to_name(id, USERS_TABLE, &argv[16]);
570 if (status && status != MR_NO_MATCH)
571 return status;
572
b121cf1b 573 status = fix_ace(argv[11], &argv[12]);
5eaef520 574 if (status && status != MR_NO_MATCH)
575 return status;
73cf66ba 576 }
577
b121cf1b 578 return followup_fix_modby(q, sq, v, action, actarg, cl);
73cf66ba 579}
580
581
b121cf1b 582/* followup_glin: fix the ace_name, modace_name, expiration, and modby */
73cf66ba 583
5eaef520 584int followup_glin(struct query *q, struct save_queue *sq, struct validate *v,
7ac48069 585 int (*action)(int, char *[], void *), void *actarg,
586 client *cl)
73cf66ba 587{
b121cf1b 588 char **argv;
59c3208b 589 int status;
5eaef520 590
591 while (sq_get_data(sq, &argv))
592 {
593 mr_trim_args(q->vcnt, argv);
594
59c3208b 595 if (q->version == 2)
596 status = fix_ace(argv[7], &argv[8]);
597 else
598 status = fix_ace(argv[8], &argv[9]);
5eaef520 599 if (status && status != MR_NO_MATCH)
600 return status;
59c3208b 601 if (q->version > 3)
602 {
603 status = fix_ace(argv[10], &argv[11]);
604 if (status && status != MR_NO_MATCH)
605 return status;
606 }
73cf66ba 607
59c3208b 608 if (atoi(argv[6]) == -1)
5eaef520 609 {
e688520a 610 argv[6] = xrealloc(argv[6], strlen(UNIQUE_GID) + 1);
5eaef520 611 strcpy(argv[6], UNIQUE_GID);
73cf66ba 612 }
73cf66ba 613 }
614
b121cf1b 615 return followup_fix_modby(q, sq, v, action, actarg, cl);
73cf66ba 616}
617
59c3208b 618/* followup_gsin: fix the ace_name and modby. */
619int followup_gsin(struct query *q, struct save_queue *sq, struct validate *v,
620 int (*action)(int, char *[], void *), void *actarg,
621 client *cl)
622{
623 char **argv;
624 int status;
625
626 while (sq_get_data(sq, &argv))
627 {
628 mr_trim_args(q->vcnt, argv);
629
630 status = fix_ace(argv[11], &argv[12]);
631 if (status && status != MR_NO_MATCH)
632 return status;
633 }
634
635 return followup_fix_modby(q, sq, v, action, actarg, cl);
636}
637
1a9a0a59 638int followup_gpsv(struct query *q, struct save_queue *sq, struct validate *v,
639 int (*action)(int, char *[], void *), void *actarg,
640 client *cl)
641{
b121cf1b 642 char **argv;
643 int status;
1a9a0a59 644
645 while (sq_get_data(sq, &argv))
646 {
647 mr_trim_args(q->vcnt, argv);
648
b121cf1b 649 status = fix_ace(argv[PRINTSERVER_OWNER_TYPE],
650 &argv[PRINTSERVER_OWNER_NAME]);
1a9a0a59 651 if (status && status != MR_NO_MATCH)
652 return status;
653 }
654
655 return followup_fix_modby(q, sq, v, action, actarg, cl);
656}
657
73cf66ba 658
659/* followup_gqot: Fix the entity name, directory name & modby fields
660 * argv[0] = filsys_id
661 * argv[1] = type
662 * argv[2] = entity_id
663 * argv[3] = ascii(quota)
664 */
665
5eaef520 666int followup_gqot(struct query *q, struct save_queue *sq, struct validate *v,
7ac48069 667 int (*action)(int, char *[], void *), void *actarg,
668 client *cl)
73cf66ba 669{
44d12d58 670 int j;
5eaef520 671 char **argv;
672 EXEC SQL BEGIN DECLARE SECTION;
673 int id;
674 char *name, *label;
675 EXEC SQL END DECLARE SECTION;
676 int status, idx;
677
678 if (!strcmp(q->name, "get_quota") ||
679 !strcmp(q->name, "get_quota_by_filesys"))
680 idx = 4;
681 else
682 idx = 3;
b121cf1b 683
5eaef520 684 while (sq_get_data(sq, &argv))
685 {
686 if (idx == 4)
687 {
688 switch (argv[1][0])
689 {
73cf66ba 690 case 'U':
5eaef520 691 status = id_to_name(atoi(argv[2]), USERS_TABLE, &argv[2]);
692 break;
73cf66ba 693 case 'G':
694 case 'L':
5eaef520 695 status = id_to_name(atoi(argv[2]), LIST_TABLE, &argv[2]);
696 break;
73cf66ba 697 case 'A':
5eaef520 698 free(argv[2]);
e688520a 699 argv[2] = xstrdup("system:anyuser");
5eaef520 700 break;
73cf66ba 701 default:
5eaef520 702 id = atoi(argv[2]);
e688520a 703 argv[2] = xmalloc(8);
5eaef520 704 sprintf(argv[2], "%d", id);
73cf66ba 705 }
706 }
5eaef520 707 id = atoi(argv[idx]);
708 free(argv[idx]);
e688520a 709 argv[idx] = xmalloc(id ? NFSPHYS_DIR_SIZE : FILESYS_NAME_SIZE);
5eaef520 710 name = argv[idx];
e688520a 711 name[0] = '\0';
5eaef520 712 if (id == 0)
713 {
714 label = argv[0];
715 EXEC SQL SELECT name INTO :name FROM filesys
716 WHERE label = :label;
73cf66ba 717 }
5eaef520 718 else
719 {
720 EXEC SQL SELECT dir INTO :name FROM nfsphys
721 WHERE nfsphys_id = :id;
73cf66ba 722 }
5eaef520 723 if (sqlca.sqlerrd[2] != 1)
724 sprintf(argv[idx], "#%d", id);
725
726 id = atoi(argv[idx + 3]);
727 if (id > 0)
728 status = id_to_name(id, USERS_TABLE, &argv[idx + 3]);
729 else
730 status = id_to_name(-id, STRINGS_TABLE, &argv[idx + 3]);
731 if (status && status != MR_NO_MATCH)
732 return status;
733 (*action)(q->vcnt, argv, actarg);
734 for (j = 0; j < q->vcnt; j++)
735 free(argv[j]);
736 free(argv);
73cf66ba 737 }
5eaef520 738 sq_destroy(sq);
739 return MR_SUCCESS;
73cf66ba 740}
741
742
743/* followup_aqot: Add allocation to nfsphys after creating quota.
744 * argv[0] = filsys_id
745 * argv[1] = type if "add_quota" or "update_quota"
746 * argv[2 or 1] = id
747 * argv[3 or 2] = ascii(quota)
748 */
749
5eaef520 750int followup_aqot(struct query *q, char *argv[], client *cl)
73cf66ba 751{
5eaef520 752 EXEC SQL BEGIN DECLARE SECTION;
753 int quota, id, fs, who, physid, table;
754 char *entity, *qtype, *tname;
755 EXEC SQL END DECLARE SECTION;
756 char incr_qual[60];
757 char *incr_argv[2];
758 int status;
759
760 table = q->rtable;
761 tname = table_name[table];
762 fs = *(int *)argv[0];
763 EXEC SQL SELECT phys_id INTO :physid FROM filesys
764 WHERE filsys_id = :fs;
765 if (dbms_errno)
766 return mr_errcode;
767
768 if (!strcmp(q->shortname, "aqot") || !strcmp(q->shortname, "uqot"))
769 {
770 qtype = argv[1];
771 id = *(int *)argv[2];
772 quota = atoi(argv[3]);
773 sprintf(incr_qual, "q.filsys_id = %d", fs);
774 }
775 else
776 {
777 qtype = "USER";
778 id = *(int *)argv[1];
779 quota = atoi(argv[2]);
780 sprintf(incr_qual, "q.filsys_id = %d AND q.type = '%s' AND "
781 "q.entity_id = %d", fs, qtype, id);
73cf66ba 782 }
783
5eaef520 784 /* quota case of incremental_{before|after} only looks at slot 1 */
785 incr_argv[1] = qtype;
786
787 /* Follows one of many possible gross hacks to fix these particular
788 * conflicts between what is possible in the query table and what
789 * is possible in SQL.
790 */
791 if (q->type == APPEND)
792 {
793 incremental_clear_before();
794 EXEC SQL INSERT INTO quota
795 (filsys_id, type, entity_id, quota, phys_id)
796 VALUES (:fs, NVL(:qtype, CHR(0)), :id, :quota, :physid);
797 incremental_after(table, incr_qual, incr_argv);
798 }
799 else
800 {
801 incremental_before(table, incr_qual, incr_argv);
802 EXEC SQL UPDATE quota SET quota = :quota
803 WHERE filsys_id = :fs AND type = :qtype AND entity_id = :id;
804 status = mr_errcode;
805 incremental_after(table, incr_qual, incr_argv);
73cf66ba 806 }
807
5eaef520 808 if (dbms_errno)
809 return mr_errcode;
810 flush_name(argv[0], table);
811 if (q->type == APPEND)
812 {
813 EXEC SQL UPDATE tblstats SET appends = appends + 1, modtime = SYSDATE
814 WHERE table_name = :tname;
815 }
816 else
817 {
818 EXEC SQL UPDATE tblstats SET updates = updates + 1, modtime = SYSDATE
819 WHERE table_name = :tname;
73cf66ba 820 }
5eaef520 821
822 /* Proceed with original followup */
823 who = cl->client_id;
824 entity = cl->entity;
825
826 EXEC SQL UPDATE quota
827 SET modtime = SYSDATE, modby = :who, modwith = :entity
828 WHERE filsys_id = :fs and type = :qtype and entity_id = :id;
829 EXEC SQL UPDATE nfsphys SET allocated = allocated + :quota
830 WHERE nfsphys_id = :physid;
831 if (dbms_errno)
832 return mr_errcode;
833 return MR_SUCCESS;
73cf66ba 834}
835
836
837/* Necessitated by the requirement of a correlation name by the incremental
5eaef520 838 * routines, since query table deletes don't provide one.
73cf66ba 839 */
5eaef520 840int followup_dqot(struct query *q, char **argv, client *cl)
73cf66ba 841{
5eaef520 842 char *qtype;
843 int id, fs, table;
844 char *incr_argv[2];
845 EXEC SQL BEGIN DECLARE SECTION;
846 char incr_qual[80], *tname;
847 EXEC SQL END DECLARE SECTION;
848
849 table = q->rtable;
850 tname = table_name[table];
851 fs = *(int *)argv[0];
852 if (!strcmp(q->shortname, "dqot"))
853 {
854 qtype = argv[1];
855 id = *(int *)argv[2];
856 }
857 else
858 {
859 qtype = "USER";
860 id = *(int *)argv[1];
73cf66ba 861 }
5eaef520 862 sprintf(incr_qual, "q.filsys_id = %d AND q.type = '%s' AND q.entity_id = %d",
863 fs, qtype, id);
73cf66ba 864
5eaef520 865 /* quota case of incremental_{before|after} only looks at slot 1 */
866 incr_argv[1] = qtype;
73cf66ba 867
5eaef520 868 incremental_before(table, incr_qual, incr_argv);
869 EXEC SQL DELETE FROM quota q WHERE q.filsys_id = :fs AND q.type = :qtype
870 AND q.entity_id = :id;
871 incremental_clear_after();
73cf66ba 872
5eaef520 873 if (dbms_errno)
874 return mr_errcode;
875 flush_name(argv[0], table);
73cf66ba 876
5eaef520 877 EXEC SQL UPDATE tblstats SET deletes = deletes + 1, modtime = SYSDATE
878 WHERE table_name = :tname;
879 return MR_SUCCESS;
73cf66ba 880}
881
73cf66ba 882/* followup_gzcl:
883 */
884
5eaef520 885int followup_gzcl(struct query *q, struct save_queue *sq, struct validate *v,
7ac48069 886 int (*action)(int, char *[], void *), void *actarg,
887 client *cl)
73cf66ba 888{
d7ddc011 889 int i, n, status;
5eaef520 890 char **argv;
891
d7ddc011 892 if (q->version < 5)
893 n = 8;
894 else
895 n = 10;
896
5eaef520 897 while (sq_get_data(sq, &argv))
898 {
899 mr_trim_args(q->vcnt, argv);
900
d7ddc011 901 for (i = 1; i < n; i += 2)
5eaef520 902 {
b121cf1b 903 status = fix_ace(argv[i], &argv[i + 1]);
5eaef520 904 if (status && status != MR_NO_MATCH)
905 return status;
73cf66ba 906 }
73cf66ba 907 }
b121cf1b 908
909 return followup_fix_modby(q, sq, v, action, actarg, cl);
73cf66ba 910}
911
912
913/* followup_gsha:
914 */
915
5eaef520 916int followup_gsha(struct query *q, struct save_queue *sq, struct validate *v,
7ac48069 917 int (*action)(int, char *[], void *), void *actarg,
918 client *cl)
73cf66ba 919{
5eaef520 920 char **argv;
b121cf1b 921 int status;
5eaef520 922
923 while (sq_get_data(sq, &argv))
924 {
925 mr_trim_args(q->vcnt, argv);
926
b121cf1b 927 status = fix_ace(argv[1], &argv[2]);
5eaef520 928 if (status && status != MR_NO_MATCH)
929 return status;
73cf66ba 930 }
b121cf1b 931
932 return followup_fix_modby(q, sq, v, action, actarg, cl);
73cf66ba 933}
934
935
5eaef520 936int _sdl_followup(struct query *q, char *argv[], client *cl)
73cf66ba 937{
85330553 938 if (atoi(argv[0]))
5eaef520 939 EXEC SQL ALTER SESSION SET SQL_TRACE TRUE;
940 else
941 EXEC SQL ALTER SESSION SET SQL_TRACE FALSE;
942
943 return MR_SUCCESS;
73cf66ba 944}
945
946
85330553 947int trigger_dcm(struct query *q, char *argv[], client *cl)
73cf66ba 948{
85330553 949 pid_t pid;
e688520a 950 char prog[MAXPATHLEN];
85330553 951
952 sprintf(prog, "%s/startdcm", BIN_DIR);
953 pid = vfork();
954 switch (pid)
5eaef520 955 {
85330553 956 case 0:
957 execl(prog, "startdcm", 0);
958 exit(1);
959
960 case -1:
961 return errno;
962
73cf66ba 963 default:
85330553 964 return MR_SUCCESS;
73cf66ba 965 }
966}
This page took 0.876757 seconds and 5 git commands to generate.