sys/kern/sysv_sem.c
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 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 | /* $FreeBSD: src/sys/kern/sysv_sem.c,v 1.69 2004/03/17 09:37:13 cperciva Exp $ */ /* * Implementation of SVID semaphores * * Author: Daniel Boulet * * This software is provided ``AS IS'' without any warranties of any kind. */ #include "opt_sysvipc.h" #include <sys/param.h> #include <sys/systm.h> #include <sys/sysmsg.h> #include <sys/kernel.h> #include <sys/proc.h> #include <sys/sem.h> #include <sys/sysent.h> #include <sys/sysctl.h> #include <sys/malloc.h> #include <sys/jail.h> #include <sys/thread.h> static MALLOC_DEFINE(M_SEM, "sem", "SVID compatible semaphores"); static void seminit (void *); static struct sem_undo *semu_alloc (struct proc *p); static int semundo_adjust (struct proc *p, int semid, int semnum, int adjval); static void semundo_clear (int semid, int semnum); static struct lwkt_token semu_token = LWKT_TOKEN_INITIALIZER(semu_token); static int semtot = 0; static struct semid_pool *sema; /* semaphore id pool */ static TAILQ_HEAD(, sem_undo) semu_list = TAILQ_HEAD_INITIALIZER(semu_list); static struct lock sema_lk; struct sem { u_short semval; /* semaphore value */ pid_t sempid; /* pid of last operation */ u_short semncnt; /* # awaiting semval > cval */ u_short semzcnt; /* # awaiting semval = 0 */ }; /* * Undo structure (one per process) */ struct sem_undo { TAILQ_ENTRY(sem_undo) un_entry; /* linked list for semundo_clear() */ struct proc *un_proc; /* owner of this structure */ int un_refs; /* prevent unlink/kfree */ short un_cnt; /* # of active entries */ short un_unused; struct undo { short un_adjval; /* adjust on exit values */ short un_num; /* semaphore # */ int un_id; /* semid */ } un_ent[1]; /* undo entries */ }; /* * Configuration parameters */ #ifndef SEMMNI #define SEMMNI 1024 /* # of semaphore identifiers */ #endif #ifndef SEMMNS #define SEMMNS 32767 /* # of semaphores in system */ #endif #ifndef SEMUME #define SEMUME 25 /* max # of undo entries per process */ #endif #ifndef SEMMNU #define SEMMNU 1024 /* # of undo structures in system */ /* NO LONGER USED */ #endif /* shouldn't need tuning */ #ifndef SEMMAP #define SEMMAP 128 /* # of entries in semaphore map */ #endif #ifndef SEMMSL #define SEMMSL SEMMNS /* max # of semaphores per id */ #endif #ifndef SEMOPM #define SEMOPM 100 /* max # of operations per semop call */ #endif #define SEMVMX 32767 /* semaphore maximum value */ #define SEMAEM 16384 /* adjust on exit max value */ /* * Due to the way semaphore memory is allocated, we have to ensure that * SEMUSZ is properly aligned. */ #define SEM_ALIGN(bytes) roundup2(bytes, sizeof(long)) /* actual size of an undo structure */ #define SEMUSZ(nent) SEM_ALIGN(offsetof(struct sem_undo, un_ent[nent])) /* * semaphore info struct */ struct seminfo seminfo = { SEMMAP, /* # of entries in semaphore map */ SEMMNI, /* # of semaphore identifiers */ SEMMNS, /* # of semaphores in system */ SEMMNU, /* # of undo structures in system */ SEMMSL, /* max # of semaphores per id */ SEMOPM, /* max # of operations per semop call */ SEMUME, /* max # of undo entries per process */ SEMUSZ(SEMUME), /* size in bytes of undo structure */ SEMVMX, /* semaphore maximum value */ SEMAEM /* adjust on exit max value */ }; TUNABLE_INT("kern.ipc.semmap", &seminfo.semmap); TUNABLE_INT("kern.ipc.semmni", &seminfo.semmni); TUNABLE_INT("kern.ipc.semmns", &seminfo.semmns); TUNABLE_INT("kern.ipc.semmnu", &seminfo.semmnu); TUNABLE_INT("kern.ipc.semmsl", &seminfo.semmsl); TUNABLE_INT("kern.ipc.semopm", &seminfo.semopm); TUNABLE_INT("kern.ipc.semume", &seminfo.semume); TUNABLE_INT("kern.ipc.semusz", &seminfo.semusz); TUNABLE_INT("kern.ipc.semvmx", &seminfo.semvmx); TUNABLE_INT("kern.ipc.semaem", &seminfo.semaem); SYSCTL_INT(_kern_ipc, OID_AUTO, semmap, CTLFLAG_RW, &seminfo.semmap, 0, "Number of entries in semaphore map"); SYSCTL_INT(_kern_ipc, OID_AUTO, semmni, CTLFLAG_RD, &seminfo.semmni, 0, "Number of semaphore identifiers"); SYSCTL_INT(_kern_ipc, OID_AUTO, semmns, CTLFLAG_RD, &seminfo.semmns, 0, "Total number of semaphores"); SYSCTL_INT(_kern_ipc, OID_AUTO, semmnu, CTLFLAG_RD, &seminfo.semmnu, 0, "Total number of undo structures"); SYSCTL_INT(_kern_ipc, OID_AUTO, semmsl, CTLFLAG_RW, &seminfo.semmsl, 0, "Max number of semaphores per id"); SYSCTL_INT(_kern_ipc, OID_AUTO, semopm, CTLFLAG_RD, &seminfo.semopm, 0, "Max number of operations per semop call"); SYSCTL_INT(_kern_ipc, OID_AUTO, semume, CTLFLAG_RD, &seminfo.semume, 0, "Max number of undo entries per process"); SYSCTL_INT(_kern_ipc, OID_AUTO, semusz, CTLFLAG_RD, &seminfo.semusz, 0, "Size in bytes of undo structure"); SYSCTL_INT(_kern_ipc, OID_AUTO, semvmx, CTLFLAG_RW, &seminfo.semvmx, 0, "Semaphore maximum value"); SYSCTL_INT(_kern_ipc, OID_AUTO, semaem, CTLFLAG_RW, &seminfo.semaem, 0, "Adjust on exit max value"); #if 0 RO seminfo.semmap /* SEMMAP unused */ RO seminfo.semmni RO seminfo.semmns RO seminfo.semmnu /* undo entries per system */ RW seminfo.semmsl RO seminfo.semopm /* SEMOPM unused */ RO seminfo.semume RO seminfo.semusz /* param - derived from SEMUME for per-proc sizeof */ RO seminfo.semvmx /* SEMVMX unused - user param */ RO seminfo.semaem /* SEMAEM unused - user param */ #endif static void seminit(void *dummy) { int i; sema = kmalloc(sizeof(struct semid_pool) * seminfo.semmni, M_SEM, M_WAITOK | M_ZERO); lockinit(&sema_lk, "semglb", 0, 0); for (i = 0; i < seminfo.semmni; i++) { struct semid_pool *semaptr = &sema[i]; lockinit(&semaptr->lk, "semary", 0, 0); semaptr->ds.sem_base = NULL; semaptr->ds.sem_perm.mode = 0; } } SYSINIT(sysv_sem, SI_SUB_SYSV_SEM, SI_ORDER_FIRST, seminit, NULL); /* * Allocate a new sem_undo structure for a process * (returns ptr to structure or NULL if no more room) */ static struct sem_undo * semu_alloc(struct proc *p) { struct sem_undo *semu; /* * Allocate the semu structure and associate it with the process, * as necessary. */ while ((semu = p->p_sem_undo) == NULL) { semu = kmalloc(SEMUSZ(seminfo.semume), M_SEM, M_WAITOK | M_ZERO); lwkt_gettoken(&semu_token); lwkt_gettoken(&p->p_token); if (p->p_sem_undo == NULL) { p->p_sem_undo = semu; p->p_flags |= P_SYSVSEM; semu->un_proc = p; TAILQ_INSERT_TAIL(&semu_list, semu, un_entry); } else { kfree(semu, M_SEM); } lwkt_reltoken(&p->p_token); lwkt_reltoken(&semu_token); } return(semu); } /* * Adjust a particular entry for a particular proc */ static int semundo_adjust(struct proc *p, int semid, int semnum, int adjval) { struct sem_undo *suptr; struct undo *sunptr; int i; int error = 0; /* * Look for and remember the sem_undo if the caller doesn't * provide it. */ suptr = semu_alloc(p); lwkt_gettoken(&p->p_token); /* * Look for the requested entry and adjust it (delete if adjval becomes * 0). */ sunptr = &suptr->un_ent[0]; for (i = 0; i < suptr->un_cnt; i++, sunptr++) { if (sunptr->un_id != semid || sunptr->un_num != semnum) continue; if (adjval == 0) sunptr->un_adjval = 0; else sunptr->un_adjval += adjval; if (sunptr->un_adjval == 0) { suptr->un_cnt--; if (i < suptr->un_cnt) suptr->un_ent[i] = suptr->un_ent[suptr->un_cnt]; } goto done; } /* Didn't find the right entry - create it */ if (adjval == 0) goto done; if (suptr->un_cnt != seminfo.semume) { sunptr = &suptr->un_ent[suptr->un_cnt]; suptr->un_cnt++; sunptr->un_adjval = adjval; sunptr->un_id = semid; sunptr->un_num = semnum; } else { error = EINVAL; } done: lwkt_reltoken(&p->p_token); return (error); } /* * This is rather expensive */ static void semundo_clear(int semid, int semnum) { struct proc *p; struct sem_undo *suptr; struct sem_undo *sunext; struct undo *sunptr; int i; lwkt_gettoken(&semu_token); sunext = TAILQ_FIRST(&semu_list); while ((suptr = sunext) != NULL) { if ((p = suptr->un_proc) == NULL) { sunext = TAILQ_NEXT(suptr, un_entry); continue; } ++suptr->un_refs; PHOLD(p); lwkt_gettoken(&p->p_token); /* * Check for semexit() race */ if (p->p_sem_undo != suptr) goto skip; sunptr = &suptr->un_ent[0]; i = 0; while (i < suptr->un_cnt) { if (sunptr->un_id == semid) { if (semnum == -1 || sunptr->un_num == semnum) { suptr->un_cnt--; if (i < suptr->un_cnt) { suptr->un_ent[i] = suptr->un_ent[suptr->un_cnt]; /* * do not increment i * or sunptr after copydown. */ continue; } } if (semnum != -1) break; } ++i; ++sunptr; } skip: lwkt_reltoken(&p->p_token); PRELE(p); /* * Handle deletion and semexit races */ sunext = TAILQ_NEXT(suptr, un_entry); if (--suptr->un_refs == 0 && suptr->un_proc == NULL) { KKASSERT(suptr->un_cnt == 0); TAILQ_REMOVE(&semu_list, suptr, un_entry); kfree(suptr, M_SEM); } } lwkt_reltoken(&semu_token); } /* * Note that the user-mode half of this passes a union, not a pointer * * MPALMOSTSAFE */ int sys___semctl(struct sysmsg *sysmsg, const struct __semctl_args *uap) { struct thread *td = curthread; struct prison *pr = td->td_proc->p_ucred->cr_prison; int semid = uap->semid; int semnum = uap->semnum; int cmd = uap->cmd; union semun *arg = uap->arg; union semun real_arg; struct ucred *cred = td->td_ucred; int i, rval, eval; struct semid_ds sbuf; struct semid_pool *semaptr; struct sem *semptr; #ifdef SEM_DEBUG kprintf("call to semctl(%d, %d, %d, 0x%x)\n", semid, semnum, cmd, arg); #endif if (pr && !PRISON_CAP_ISSET(pr->pr_caps, PRISON_CAP_SYS_SYSVIPC)) return (ENOSYS); semid = IPCID_TO_IX(semid); if (semid < 0 || semid >= seminfo.semmni) { return(EINVAL); } semaptr = &sema[semid]; lockmgr(&semaptr->lk, LK_EXCLUSIVE); if ((semaptr->ds.sem_perm.mode & SEM_ALLOC) == 0 || semaptr->ds.sem_perm.seq != IPCID_TO_SEQ(uap->semid)) { lockmgr(&semaptr->lk, LK_RELEASE); return(EINVAL); } eval = 0; rval = 0; switch (cmd) { case IPC_RMID: eval = ipcperm(td->td_proc, &semaptr->ds.sem_perm, IPC_M); if (eval != 0) break; semaptr->ds.sem_perm.cuid = cred->cr_uid; semaptr->ds.sem_perm.uid = cred->cr_uid; /* * NOTE: Nobody will be waiting on the semaphores since * we have an exclusive lock on semaptr->lk). */ lockmgr(&sema_lk, LK_EXCLUSIVE); semtot -= semaptr->ds.sem_nsems; kfree(semaptr->ds.sem_base, M_SEM); semaptr->ds.sem_base = NULL; semaptr->ds.sem_perm.mode = 0; /* clears SEM_ALLOC */ lockmgr(&sema_lk, LK_RELEASE); semundo_clear(semid, -1); break; case IPC_SET: eval = ipcperm(td->td_proc, &semaptr->ds.sem_perm, IPC_M); if (eval) break; if ((eval = copyin(arg, &real_arg, sizeof(real_arg))) != 0) break; if ((eval = copyin(real_arg.buf, (caddr_t)&sbuf, sizeof(sbuf))) != 0) { break; } semaptr->ds.sem_perm.uid = sbuf.sem_perm.uid; semaptr->ds.sem_perm.gid = sbuf.sem_perm.gid; semaptr->ds.sem_perm.mode = (semaptr->ds.sem_perm.mode & ~0777) | (sbuf.sem_perm.mode & 0777); semaptr->ds.sem_ctime = time_second; break; case IPC_STAT: eval = ipcperm(td->td_proc, &semaptr->ds.sem_perm, IPC_R); if (eval) break; if ((eval = copyin(arg, &real_arg, sizeof(real_arg))) != 0) break; eval = copyout(&semaptr->ds, real_arg.buf, sizeof(struct semid_ds)); break; case SEM_STAT: /* * For this command we assume semid is an array index * rather than an IPC id. However, the conversion is * just a mask so just validate that the passed-in semid * matches the masked semid. */ if (uap->semid != semid) { eval = EINVAL; break; } eval = ipcperm(td->td_proc, &semaptr->ds.sem_perm, IPC_R); if (eval) break; if ((eval = copyin(arg, &real_arg, sizeof(real_arg))) != 0) break; eval = copyout(&semaptr->ds, real_arg.buf, sizeof(struct semid_ds)); rval = IXSEQ_TO_IPCID(semid, semaptr->ds.sem_perm); break; case GETNCNT: eval = ipcperm(td->td_proc, &semaptr->ds.sem_perm, IPC_R); if (eval) break; if (semnum < 0 || semnum >= semaptr->ds.sem_nsems) { eval = EINVAL; break; } rval = semaptr->ds.sem_base[semnum].semncnt; break; case GETPID: eval = ipcperm(td->td_proc, &semaptr->ds.sem_perm, IPC_R); if (eval) break; if (semnum < 0 || semnum >= semaptr->ds.sem_nsems) { eval = EINVAL; break; } rval = semaptr->ds.sem_base[semnum].sempid; break; case GETVAL: eval = ipcperm(td->td_proc, &semaptr->ds.sem_perm, IPC_R); if (eval) break; if (semnum < 0 || semnum >= semaptr->ds.sem_nsems) { eval = EINVAL; break; } rval = semaptr->ds.sem_base[semnum].semval; break; case GETALL: eval = ipcperm(td->td_proc, &semaptr->ds.sem_perm, IPC_R); if (eval) break; if ((eval = copyin(arg, &real_arg, sizeof(real_arg))) != 0) break; for (i = 0; i < semaptr->ds.sem_nsems; i++) { eval = copyout(&semaptr->ds.sem_base[i].semval, &real_arg.array[i], sizeof(real_arg.array[0])); if (eval) break; } break; case GETZCNT: eval = ipcperm(td->td_proc, &semaptr->ds.sem_perm, IPC_R); if (eval) break; if (semnum < 0 || semnum >= semaptr->ds.sem_nsems) { eval = EINVAL; break; } rval = semaptr->ds.sem_base[semnum].semzcnt; break; case SETVAL: eval = ipcperm(td->td_proc, &semaptr->ds.sem_perm, IPC_W); if (eval) break; if (semnum < 0 || semnum >= semaptr->ds.sem_nsems) { eval = EINVAL; break; } if ((eval = copyin(arg, &real_arg, sizeof(real_arg))) != 0) break; /* * Because we hold semaptr->lk exclusively we can safely * modify any semptr content without acquiring its token. */ semptr = &semaptr->ds.sem_base[semnum]; semptr->semval = real_arg.val; semundo_clear(semid, semnum); if (semptr->semzcnt || semptr->semncnt) wakeup(semptr); break; case SETALL: eval = ipcperm(td->td_proc, &semaptr->ds.sem_perm, IPC_W); if (eval) break; if ((eval = copyin(arg, &real_arg, sizeof(real_arg))) != 0) break; /* * Because we hold semaptr->lk exclusively we can safely * modify any semptr content without acquiring its token. */ for (i = 0; i < semaptr->ds.sem_nsems; i++) { semptr = &semaptr->ds.sem_base[i]; eval = copyin(&real_arg.array[i], (caddr_t)&semptr->semval, sizeof(real_arg.array[0])); if (semptr->semzcnt || semptr->semncnt) wakeup(semptr); if (eval != 0) break; } semundo_clear(semid, -1); break; default: eval = EINVAL; break; } lockmgr(&semaptr->lk, LK_RELEASE); if (eval == 0) sysmsg->sysmsg_result = rval; return(eval); } /* * MPALMOSTSAFE */ int sys_semget(struct sysmsg *sysmsg, const struct semget_args *uap) { struct thread *td = curthread; struct prison *pr = td->td_proc->p_ucred->cr_prison; int semid, eval; int key = uap->key; int nsems = uap->nsems; int semflg = uap->semflg; struct ucred *cred = td->td_ucred; #ifdef SEM_DEBUG kprintf("semget(0x%x, %d, 0%o)\n", key, nsems, semflg); #endif if (pr && !PRISON_CAP_ISSET(pr->pr_caps, PRISON_CAP_SYS_SYSVIPC)) return (ENOSYS); eval = 0; if (key != IPC_PRIVATE) { for (semid = 0; semid < seminfo.semmni; semid++) { if ((sema[semid].ds.sem_perm.mode & SEM_ALLOC) == 0 || sema[semid].ds.sem_perm.key != key) { continue; } lockmgr(&sema[semid].lk, LK_EXCLUSIVE); if ((sema[semid].ds.sem_perm.mode & SEM_ALLOC) == 0 || sema[semid].ds.sem_perm.key != key) { lockmgr(&sema[semid].lk, LK_RELEASE); continue; } break; } if (semid < seminfo.semmni) { /* sema[semid].lk still locked from above */ #ifdef SEM_DEBUG kprintf("found public key\n"); #endif if ((eval = ipcperm(td->td_proc, &sema[semid].ds.sem_perm, semflg & 0700))) { lockmgr(&sema[semid].lk, LK_RELEASE); goto done; } if (nsems > 0 && sema[semid].ds.sem_nsems < nsems) { #ifdef SEM_DEBUG kprintf("too small\n"); #endif eval = EINVAL; lockmgr(&sema[semid].lk, LK_RELEASE); goto done; } if ((semflg & IPC_CREAT) && (semflg & IPC_EXCL)) { #ifdef SEM_DEBUG kprintf("not exclusive\n"); #endif eval = EEXIST; lockmgr(&sema[semid].lk, LK_RELEASE); goto done; } /* * Return this one. */ lockmgr(&sema[semid].lk, LK_RELEASE); goto done; } } #ifdef SEM_DEBUG kprintf("need to allocate the semid_ds\n"); #endif if (key == IPC_PRIVATE || (semflg & IPC_CREAT)) { if (nsems <= 0 || nsems > seminfo.semmsl) { #ifdef SEM_DEBUG kprintf("nsems out of range (0<%d<=%d)\n", nsems, seminfo.semmsl); #endif eval = EINVAL; goto done; } /* * SEM_ALLOC flag cannot be set unless sema_lk is locked. * semtot field also protected by sema_lk. */ lockmgr(&sema_lk, LK_EXCLUSIVE); if (nsems > seminfo.semmns - semtot) { #ifdef SEM_DEBUG kprintf("not enough semaphores left " "(need %d, got %d)\n", nsems, seminfo.semmns - semtot); #endif eval = ENOSPC; lockmgr(&sema_lk, LK_RELEASE); goto done; } for (semid = 0; semid < seminfo.semmni; semid++) { if ((sema[semid].ds.sem_perm.mode & SEM_ALLOC) == 0) break; } if (semid == seminfo.semmni) { #ifdef SEM_DEBUG kprintf("no more semid_ds's available\n"); #endif eval = ENOSPC; lockmgr(&sema_lk, LK_RELEASE); goto done; } #ifdef SEM_DEBUG kprintf("semid %d is available\n", semid); #endif lockmgr(&sema[semid].lk, LK_EXCLUSIVE); sema[semid].ds.sem_perm.key = key; sema[semid].ds.sem_perm.cuid = cred->cr_uid; sema[semid].ds.sem_perm.uid = cred->cr_uid; sema[semid].ds.sem_perm.cgid = cred->cr_gid; sema[semid].ds.sem_perm.gid = cred->cr_gid; sema[semid].ds.sem_perm.mode = (semflg & 0777) | SEM_ALLOC; sema[semid].ds.sem_perm.seq = (sema[semid].ds.sem_perm.seq + 1) & 0x7fff; sema[semid].ds.sem_nsems = nsems; sema[semid].ds.sem_otime = 0; sema[semid].ds.sem_ctime = time_second; sema[semid].ds.sem_base = kmalloc(sizeof(struct sem) * nsems, M_SEM, M_WAITOK|M_ZERO); semtot += nsems; ++sema[semid].gen; lockmgr(&sema[semid].lk, LK_RELEASE); lockmgr(&sema_lk, LK_RELEASE); #ifdef SEM_DEBUG kprintf("sembase = 0x%x, next = 0x%x\n", sema[semid].ds.sem_base, &sem[semtot]); #endif /* eval == 0 */ } else { #ifdef SEM_DEBUG kprintf("didn't find it and wasn't asked to create it\n"); #endif eval = ENOENT; } done: if (eval == 0) { sysmsg->sysmsg_result = IXSEQ_TO_IPCID(semid, sema[semid].ds.sem_perm); } return(eval); } /* * MPSAFE */ int sys_semop(struct sysmsg *sysmsg, const struct semop_args *uap) { struct thread *td = curthread; struct prison *pr = td->td_proc->p_ucred->cr_prison; int semid = uap->semid; u_int nsops = uap->nsops; struct sembuf sops[MAX_SOPS]; struct semid_pool *semaptr; struct sembuf *sopptr; struct sem *semptr; struct sem *xsemptr; int i, j, eval; int do_undos; #ifdef SEM_DEBUG kprintf("call to semop(%d, 0x%x, %u)\n", semid, sops, nsops); #endif if (pr && !PRISON_CAP_ISSET(pr->pr_caps, PRISON_CAP_SYS_SYSVIPC)) return (ENOSYS); semid = IPCID_TO_IX(semid); /* Convert back to zero origin */ if (semid < 0 || semid >= seminfo.semmni) { eval = EINVAL; goto done2; } wakeup_start_delayed(); semaptr = &sema[semid]; lockmgr(&semaptr->lk, LK_SHARED); if ((semaptr->ds.sem_perm.mode & SEM_ALLOC) == 0) { eval = EINVAL; goto done; } if (semaptr->ds.sem_perm.seq != IPCID_TO_SEQ(uap->semid)) { eval = EINVAL; goto done; } if ((eval = ipcperm(td->td_proc, &semaptr->ds.sem_perm, IPC_W))) { #ifdef SEM_DEBUG kprintf("eval = %d from ipaccess\n", eval); #endif goto done; } if (nsops > MAX_SOPS) { #ifdef SEM_DEBUG kprintf("too many sops (max=%d, nsops=%u)\n", MAX_SOPS, nsops); #endif eval = E2BIG; goto done; } if ((eval = copyin(uap->sops, &sops, nsops * sizeof(sops[0]))) != 0) { #ifdef SEM_DEBUG kprintf("eval = %d from copyin(%08x, %08x, %u)\n", eval, uap->sops, &sops, nsops * sizeof(sops[0])); #endif goto done; } /* * Loop trying to satisfy the vector of requests. * If we reach a point where we must wait, any requests already * performed are rolled back and we go to sleep until some other * process wakes us up. At this point, we start all over again. * * This ensures that from the perspective of other tasks, a set * of requests is atomic (never partially satisfied). */ do_undos = 0; for (;;) { long gen; semptr = NULL; for (i = 0; i < nsops; i++) { sopptr = &sops[i]; if (sopptr->sem_num >= semaptr->ds.sem_nsems) { eval = EFBIG; goto done; } semptr = &semaptr->ds.sem_base[sopptr->sem_num]; lwkt_getpooltoken(semptr); #ifdef SEM_DEBUG kprintf("semop: semaptr=%x, sem_base=%x, semptr=%x, " "sem[%d]=%d : op=%d, flag=%s\n", semaptr, semaptr->ds.sem_base, semptr, sopptr->sem_num, semptr->semval, sopptr->sem_op, (sopptr->sem_flg & IPC_NOWAIT) ? "nowait" : "wait"); #endif if (sopptr->sem_op < 0) { if (semptr->semval + sopptr->sem_op < 0) { #ifdef SEM_DEBUG kprintf("semop: can't do it now\n"); #endif break; } else { semptr->semval += sopptr->sem_op; if (semptr->semval == 0 && semptr->semzcnt > 0) { wakeup(semptr); } } if (sopptr->sem_flg & SEM_UNDO) do_undos = 1; } else if (sopptr->sem_op == 0) { if (semptr->semval > 0) { #ifdef SEM_DEBUG kprintf("semop: not zero now\n"); #endif break; } } else { semptr->semval += sopptr->sem_op; if (sopptr->sem_flg & SEM_UNDO) do_undos = 1; if (semptr->semncnt > 0) wakeup(semptr); } lwkt_relpooltoken(semptr); } /* * Did we get through the entire vector? */ if (i >= nsops) goto donex; /* * No, protect the semaphore request which also flags that * a wakeup is needed, then release semptr since we know * another process is likely going to need to access it * soon. */ if (sopptr->sem_op == 0) semptr->semzcnt++; else semptr->semncnt++; tsleep_interlock(semptr, PCATCH); lwkt_relpooltoken(semptr); /* * Rollback the semaphores we had acquired. */ #ifdef SEM_DEBUG kprintf("semop: rollback 0 through %d\n", i-1); #endif for (j = 0; j < i; j++) { xsemptr = &semaptr->ds.sem_base[sops[j].sem_num]; lwkt_getpooltoken(xsemptr); xsemptr->semval -= sops[j].sem_op; if (xsemptr->semval == 0 && xsemptr->semzcnt > 0) wakeup(xsemptr); if (xsemptr->semval <= 0 && xsemptr->semncnt > 0) wakeup(xsemptr); lwkt_relpooltoken(xsemptr); } /* * If the request that we couldn't satisfy has the * NOWAIT flag set then return with EAGAIN. */ if (sopptr->sem_flg & IPC_NOWAIT) { eval = EAGAIN; goto done; } /* * Release semaptr->lk while sleeping, allowing other * semops (like SETVAL, SETALL, etc), which require an * exclusive lock and might wake us up. * * Reload and recheck the validity of semaptr on return. * Note that semptr itself might have changed too, but * we've already interlocked for semptr and that is what * will be woken up if it wakes up the tsleep on a MP * race. * * gen protects against destroy/re-create races where the * creds match. */ #ifdef SEM_DEBUG kprintf("semop: good night!\n"); #endif gen = semaptr->gen; lockmgr(&semaptr->lk, LK_RELEASE); eval = tsleep(semptr, PCATCH | PINTERLOCKED, "semwait", hz); lockmgr(&semaptr->lk, LK_SHARED); #ifdef SEM_DEBUG kprintf("semop: good morning (eval=%d)!\n", eval); #endif /* return code is checked below, after sem[nz]cnt-- */ /* * Make sure that the semaphore still exists */ if (semaptr->gen != gen || (semaptr->ds.sem_perm.mode & SEM_ALLOC) == 0 || semaptr->ds.sem_perm.seq != IPCID_TO_SEQ(uap->semid)) { eval = EIDRM; goto done; } /* * The semaphore is still alive. Readjust the count of * waiting processes. */ semptr = &semaptr->ds.sem_base[sopptr->sem_num]; lwkt_getpooltoken(semptr); if (sopptr->sem_op == 0) semptr->semzcnt--; else semptr->semncnt--; lwkt_relpooltoken(semptr); /* * Is it really morning, or was our sleep interrupted? * (Delayed check of tsleep() return code because we * need to decrement sem[nz]cnt either way.) */ if (eval) { eval = EINTR; goto done; } #ifdef SEM_DEBUG kprintf("semop: good morning!\n"); #endif /* RETRY LOOP */ } donex: /* * Process any SEM_UNDO requests. */ if (do_undos) { for (i = 0; i < nsops; i++) { /* * We only need to deal with SEM_UNDO's for non-zero * op's. */ int adjval; if ((sops[i].sem_flg & SEM_UNDO) == 0) continue; adjval = sops[i].sem_op; if (adjval == 0) continue; eval = semundo_adjust(td->td_proc, semid, sops[i].sem_num, -adjval); if (eval == 0) continue; /* * Oh-Oh! We ran out of either sem_undo's or undo's. * Rollback the adjustments to this point and then * rollback the semaphore ups and down so we can return * with an error with all structures restored. We * rollback the undo's in the exact reverse order that * we applied them. This guarantees that we won't run * out of space as we roll things back out. */ for (j = i - 1; j >= 0; j--) { if ((sops[j].sem_flg & SEM_UNDO) == 0) continue; adjval = sops[j].sem_op; if (adjval == 0) continue; if (semundo_adjust(td->td_proc, semid, sops[j].sem_num, adjval) != 0) panic("semop - can't undo undos"); } for (j = 0; j < nsops; j++) { xsemptr = &semaptr->ds.sem_base[ sops[j].sem_num]; lwkt_getpooltoken(xsemptr); xsemptr->semval -= sops[j].sem_op; if (xsemptr->semval == 0 && xsemptr->semzcnt > 0) wakeup(xsemptr); if (xsemptr->semval <= 0 && xsemptr->semncnt > 0) wakeup(xsemptr); lwkt_relpooltoken(xsemptr); } #ifdef SEM_DEBUG kprintf("eval = %d from semundo_adjust\n", eval); #endif goto done; } /* loop through the sops */ } /* if (do_undos) */ /* We're definitely done - set the sempid's */ for (i = 0; i < nsops; i++) { sopptr = &sops[i]; semptr = &semaptr->ds.sem_base[sopptr->sem_num]; lwkt_getpooltoken(semptr); semptr->sempid = td->td_proc->p_pid; lwkt_relpooltoken(semptr); } /* Do a wakeup if any semaphore was up'd. */ #ifdef SEM_DEBUG kprintf("semop: done\n"); #endif sysmsg->sysmsg_result = 0; eval = 0; done: lockmgr(&semaptr->lk, LK_RELEASE); wakeup_end_delayed(); done2: return(eval); } /* * Go through the undo structures for this process and apply the adjustments to * semaphores. * * (p->p_token is held by the caller) */ void semexit(struct proc *p) { struct sem_undo *suptr; struct sem *semptr; /* * We're getting a global token, don't do it if we couldn't * possibly have any semaphores. */ if ((p->p_flags & P_SYSVSEM) == 0) return; suptr = p->p_sem_undo; KKASSERT(suptr != NULL); /* * Disconnect suptr from the process and increment un_refs to * prevent anyone else from being able to destroy the structure. * Do not remove it from the linked list until after we are through * scanning it as other semaphore calls might still effect it. */ lwkt_gettoken(&semu_token); #if 0 /* * do not disconnect proc yet, doing so prevents RMID * from cleaning up the structure atomically with SEM_ALLOC */ p->p_sem_undo = NULL; p->p_flags &= ~P_SYSVSEM; suptr->un_proc = NULL; #endif ++suptr->un_refs; lwkt_reltoken(&semu_token); while (suptr->un_cnt) { struct semid_pool *semaptr; int semid; int semnum; int adjval; int ix; /* * These values are stable because we hold p->p_token. * However, they can get ripped out from under us when * we block or obtain other tokens so we have to re-check. */ ix = suptr->un_cnt - 1; semid = suptr->un_ent[ix].un_id; semnum = suptr->un_ent[ix].un_num; adjval = suptr->un_ent[ix].un_adjval; semaptr = &sema[semid]; /* * Recheck after locking, then execute the undo * operation. semptr remains valid due to the * semaptr->lk. */ lockmgr(&semaptr->lk, LK_EXCLUSIVE); semptr = &semaptr->ds.sem_base[semnum]; lwkt_getpooltoken(semptr); if (ix == suptr->un_cnt - 1 && semid == suptr->un_ent[ix].un_id && semnum == suptr->un_ent[ix].un_num && adjval == suptr->un_ent[ix].un_adjval) { /* * Only do assertions when we aren't in a SMP race. */ if ((semaptr->ds.sem_perm.mode & SEM_ALLOC) == 0) panic("semexit - semid not allocated"); if (semnum >= semaptr->ds.sem_nsems) panic("semexit - semnum out of range"); --suptr->un_cnt; if (adjval < 0) { if (semptr->semval < -adjval) semptr->semval = 0; else semptr->semval += adjval; } else { semptr->semval += adjval; } wakeup(semptr); } lwkt_relpooltoken(semptr); lockmgr(&semaptr->lk, LK_RELEASE); } /* * Final cleanup, remove from the list, remove the process association, * then deallocate on last ref. */ lwkt_gettoken(&semu_token); p->p_sem_undo = NULL; p->p_flags &= ~P_SYSVSEM; suptr->un_proc = NULL; if (--suptr->un_refs == 0) { TAILQ_REMOVE(&semu_list, suptr, un_entry); KKASSERT(suptr->un_cnt == 0); kfree(suptr, M_SEM); } lwkt_reltoken(&semu_token); } |