sem.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:26k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/ipc/sem.c
  3.  * Copyright (C) 1992 Krishna Balasubramanian
  4.  * Copyright (C) 1995 Eric Schenk, Bruno Haible
  5.  *
  6.  * IMPLEMENTATION NOTES ON CODE REWRITE (Eric Schenk, January 1995):
  7.  * This code underwent a massive rewrite in order to solve some problems
  8.  * with the original code. In particular the original code failed to
  9.  * wake up processes that were waiting for semval to go to 0 if the
  10.  * value went to 0 and was then incremented rapidly enough. In solving
  11.  * this problem I have also modified the implementation so that it
  12.  * processes pending operations in a FIFO manner, thus give a guarantee
  13.  * that processes waiting for a lock on the semaphore won't starve
  14.  * unless another locking process fails to unlock.
  15.  * In addition the following two changes in behavior have been introduced:
  16.  * - The original implementation of semop returned the value
  17.  *   last semaphore element examined on success. This does not
  18.  *   match the manual page specifications, and effectively
  19.  *   allows the user to read the semaphore even if they do not
  20.  *   have read permissions. The implementation now returns 0
  21.  *   on success as stated in the manual page.
  22.  * - There is some confusion over whether the set of undo adjustments
  23.  *   to be performed at exit should be done in an atomic manner.
  24.  *   That is, if we are attempting to decrement the semval should we queue
  25.  *   up and wait until we can do so legally?
  26.  *   The original implementation attempted to do this.
  27.  *   The current implementation does not do so. This is because I don't
  28.  *   think it is the right thing (TM) to do, and because I couldn't
  29.  *   see a clean way to get the old behavior with the new design.
  30.  *   The POSIX standard and SVID should be consulted to determine
  31.  *   what behavior is mandated.
  32.  *
  33.  * Further notes on refinement (Christoph Rohland, December 1998):
  34.  * - The POSIX standard says, that the undo adjustments simply should
  35.  *   redo. So the current implementation is o.K.
  36.  * - The previous code had two flaws:
  37.  *   1) It actively gave the semaphore to the next waiting process
  38.  *      sleeping on the semaphore. Since this process did not have the
  39.  *      cpu this led to many unnecessary context switches and bad
  40.  *      performance. Now we only check which process should be able to
  41.  *      get the semaphore and if this process wants to reduce some
  42.  *      semaphore value we simply wake it up without doing the
  43.  *      operation. So it has to try to get it later. Thus e.g. the
  44.  *      running process may reacquire the semaphore during the current
  45.  *      time slice. If it only waits for zero or increases the semaphore,
  46.  *      we do the operation in advance and wake it up.
  47.  *   2) It did not wake up all zero waiting processes. We try to do
  48.  *      better but only get the semops right which only wait for zero or
  49.  *      increase. If there are decrement operations in the operations
  50.  *      array we do the same as before.
  51.  *
  52.  * /proc/sysvipc/sem support (c) 1999 Dragos Acostachioaie <dragos@iname.com>
  53.  *
  54.  * SMP-threaded, sysctl's added
  55.  * (c) 1999 Manfred Spraul <manfreds@colorfullife.com>
  56.  * Enforced range limit on SEM_UNDO
  57.  * (c) 2001 Red Hat Inc <alan@redhat.com>
  58.  */
  59. #include <linux/config.h>
  60. #include <linux/slab.h>
  61. #include <linux/spinlock.h>
  62. #include <linux/init.h>
  63. #include <linux/proc_fs.h>
  64. #include <asm/uaccess.h>
  65. #include "util.h"
  66. #define sem_lock(id) ((struct sem_array*)ipc_lock(&sem_ids,id))
  67. #define sem_unlock(id) ipc_unlock(&sem_ids,id)
  68. #define sem_rmid(id) ((struct sem_array*)ipc_rmid(&sem_ids,id))
  69. #define sem_checkid(sma, semid)
  70. ipc_checkid(&sem_ids,&sma->sem_perm,semid)
  71. #define sem_buildid(id, seq) 
  72. ipc_buildid(&sem_ids, id, seq)
  73. static struct ipc_ids sem_ids;
  74. static int newary (key_t, int, int);
  75. static void freeary (int id);
  76. #ifdef CONFIG_PROC_FS
  77. static int sysvipc_sem_read_proc(char *buffer, char **start, off_t offset, int length, int *eof, void *data);
  78. #endif
  79. #define SEMMSL_FAST 256 /* 512 bytes on stack */
  80. #define SEMOPM_FAST 64  /* ~ 372 bytes on stack */
  81. /*
  82.  * linked list protection:
  83.  * sem_undo.id_next,
  84.  * sem_array.sem_pending{,last},
  85.  * sem_array.sem_undo: sem_lock() for read/write
  86.  * sem_undo.proc_next: only "current" is allowed to read/write that field.
  87.  *
  88.  */
  89. int sem_ctls[4] = {SEMMSL, SEMMNS, SEMOPM, SEMMNI};
  90. #define sc_semmsl (sem_ctls[0])
  91. #define sc_semmns (sem_ctls[1])
  92. #define sc_semopm (sem_ctls[2])
  93. #define sc_semmni (sem_ctls[3])
  94. static int used_sems;
  95. void __init sem_init (void)
  96. {
  97. used_sems = 0;
  98. ipc_init_ids(&sem_ids,sc_semmni);
  99. #ifdef CONFIG_PROC_FS
  100. create_proc_read_entry("sysvipc/sem", 0, 0, sysvipc_sem_read_proc, NULL);
  101. #endif
  102. }
  103. static int newary (key_t key, int nsems, int semflg)
  104. {
  105. int id;
  106. struct sem_array *sma;
  107. int size;
  108. if (!nsems)
  109. return -EINVAL;
  110. if (used_sems + nsems > sc_semmns)
  111. return -ENOSPC;
  112. size = sizeof (*sma) + nsems * sizeof (struct sem);
  113. sma = (struct sem_array *) ipc_alloc(size);
  114. if (!sma) {
  115. return -ENOMEM;
  116. }
  117. memset (sma, 0, size);
  118. id = ipc_addid(&sem_ids, &sma->sem_perm, sc_semmni);
  119. if(id == -1) {
  120. ipc_free(sma, size);
  121. return -ENOSPC;
  122. }
  123. used_sems += nsems;
  124. sma->sem_perm.mode = (semflg & S_IRWXUGO);
  125. sma->sem_perm.key = key;
  126. sma->sem_base = (struct sem *) &sma[1];
  127. /* sma->sem_pending = NULL; */
  128. sma->sem_pending_last = &sma->sem_pending;
  129. /* sma->undo = NULL; */
  130. sma->sem_nsems = nsems;
  131. sma->sem_ctime = CURRENT_TIME;
  132. sem_unlock(id);
  133. return sem_buildid(id, sma->sem_perm.seq);
  134. }
  135. asmlinkage long sys_semget (key_t key, int nsems, int semflg)
  136. {
  137. int id, err = -EINVAL;
  138. struct sem_array *sma;
  139. if (nsems < 0 || nsems > sc_semmsl)
  140. return -EINVAL;
  141. down(&sem_ids.sem);
  142. if (key == IPC_PRIVATE) {
  143. err = newary(key, nsems, semflg);
  144. } else if ((id = ipc_findkey(&sem_ids, key)) == -1) {  /* key not used */
  145. if (!(semflg & IPC_CREAT))
  146. err = -ENOENT;
  147. else
  148. err = newary(key, nsems, semflg);
  149. } else if (semflg & IPC_CREAT && semflg & IPC_EXCL) {
  150. err = -EEXIST;
  151. } else {
  152. sma = sem_lock(id);
  153. if(sma==NULL)
  154. BUG();
  155. if (nsems > sma->sem_nsems)
  156. err = -EINVAL;
  157. else if (ipcperms(&sma->sem_perm, semflg))
  158. err = -EACCES;
  159. else
  160. err = sem_buildid(id, sma->sem_perm.seq);
  161. sem_unlock(id);
  162. }
  163. up(&sem_ids.sem);
  164. return err;
  165. }
  166. /* doesn't acquire the sem_lock on error! */
  167. static int sem_revalidate(int semid, struct sem_array* sma, int nsems, short flg)
  168. {
  169. struct sem_array* smanew;
  170. smanew = sem_lock(semid);
  171. if(smanew==NULL)
  172. return -EIDRM;
  173. if(smanew != sma || sem_checkid(sma,semid) || sma->sem_nsems != nsems) {
  174. sem_unlock(semid);
  175. return -EIDRM;
  176. }
  177. if (ipcperms(&sma->sem_perm, flg)) {
  178. sem_unlock(semid);
  179. return -EACCES;
  180. }
  181. return 0;
  182. }
  183. /* Manage the doubly linked list sma->sem_pending as a FIFO:
  184.  * insert new queue elements at the tail sma->sem_pending_last.
  185.  */
  186. static inline void append_to_queue (struct sem_array * sma,
  187.     struct sem_queue * q)
  188. {
  189. *(q->prev = sma->sem_pending_last) = q;
  190. *(sma->sem_pending_last = &q->next) = NULL;
  191. }
  192. static inline void prepend_to_queue (struct sem_array * sma,
  193.      struct sem_queue * q)
  194. {
  195. q->next = sma->sem_pending;
  196. *(q->prev = &sma->sem_pending) = q;
  197. if (q->next)
  198. q->next->prev = &q->next;
  199. else /* sma->sem_pending_last == &sma->sem_pending */
  200. sma->sem_pending_last = &q->next;
  201. }
  202. static inline void remove_from_queue (struct sem_array * sma,
  203.       struct sem_queue * q)
  204. {
  205. *(q->prev) = q->next;
  206. if (q->next)
  207. q->next->prev = q->prev;
  208. else /* sma->sem_pending_last == &q->next */
  209. sma->sem_pending_last = q->prev;
  210. q->prev = NULL; /* mark as removed */
  211. }
  212. /*
  213.  * Determine whether a sequence of semaphore operations would succeed
  214.  * all at once. Return 0 if yes, 1 if need to sleep, else return error code.
  215.  */
  216. static int try_atomic_semop (struct sem_array * sma, struct sembuf * sops,
  217.      int nsops, struct sem_undo *un, int pid,
  218.      int do_undo)
  219. {
  220. int result, sem_op;
  221. struct sembuf *sop;
  222. struct sem * curr;
  223. for (sop = sops; sop < sops + nsops; sop++) {
  224. curr = sma->sem_base + sop->sem_num;
  225. sem_op = sop->sem_op;
  226. if (!sem_op && curr->semval)
  227. goto would_block;
  228. curr->sempid = (curr->sempid << 16) | pid;
  229. curr->semval += sem_op;
  230. if (sop->sem_flg & SEM_UNDO)
  231. {
  232. int undo = un->semadj[sop->sem_num] - sem_op;
  233. /*
  234.    * Exceeding the undo range is an error.
  235.  */
  236. if (undo < (-SEMAEM - 1) || undo > SEMAEM)
  237. {
  238. /* Don't undo the undo */
  239. sop->sem_flg &= ~SEM_UNDO;
  240. goto out_of_range;
  241. }
  242. un->semadj[sop->sem_num] = undo;
  243. }
  244. if (curr->semval < 0)
  245. goto would_block;
  246. if (curr->semval > SEMVMX)
  247. goto out_of_range;
  248. }
  249. if (do_undo)
  250. {
  251. sop--;
  252. result = 0;
  253. goto undo;
  254. }
  255. sma->sem_otime = CURRENT_TIME;
  256. return 0;
  257. out_of_range:
  258. result = -ERANGE;
  259. goto undo;
  260. would_block:
  261. if (sop->sem_flg & IPC_NOWAIT)
  262. result = -EAGAIN;
  263. else
  264. result = 1;
  265. undo:
  266. while (sop >= sops) {
  267. curr = sma->sem_base + sop->sem_num;
  268. curr->semval -= sop->sem_op;
  269. curr->sempid >>= 16;
  270. if (sop->sem_flg & SEM_UNDO)
  271. un->semadj[sop->sem_num] += sop->sem_op;
  272. sop--;
  273. }
  274. return result;
  275. }
  276. /* Go through the pending queue for the indicated semaphore
  277.  * looking for tasks that can be completed.
  278.  */
  279. static void update_queue (struct sem_array * sma)
  280. {
  281. int error;
  282. struct sem_queue * q;
  283. for (q = sma->sem_pending; q; q = q->next) {
  284. if (q->status == 1)
  285. continue; /* this one was woken up before */
  286. error = try_atomic_semop(sma, q->sops, q->nsops,
  287.  q->undo, q->pid, q->alter);
  288. /* Does q->sleeper still need to sleep? */
  289. if (error <= 0) {
  290. /* Found one, wake it up */
  291. wake_up_process(q->sleeper);
  292. if (error == 0 && q->alter) {
  293. /* if q-> alter let it self try */
  294. q->status = 1;
  295. return;
  296. }
  297. q->status = error;
  298. remove_from_queue(sma,q);
  299. }
  300. }
  301. }
  302. /* The following counts are associated to each semaphore:
  303.  *   semncnt        number of tasks waiting on semval being nonzero
  304.  *   semzcnt        number of tasks waiting on semval being zero
  305.  * This model assumes that a task waits on exactly one semaphore.
  306.  * Since semaphore operations are to be performed atomically, tasks actually
  307.  * wait on a whole sequence of semaphores simultaneously.
  308.  * The counts we return here are a rough approximation, but still
  309.  * warrant that semncnt+semzcnt>0 if the task is on the pending queue.
  310.  */
  311. static int count_semncnt (struct sem_array * sma, ushort semnum)
  312. {
  313. int semncnt;
  314. struct sem_queue * q;
  315. semncnt = 0;
  316. for (q = sma->sem_pending; q; q = q->next) {
  317. struct sembuf * sops = q->sops;
  318. int nsops = q->nsops;
  319. int i;
  320. for (i = 0; i < nsops; i++)
  321. if (sops[i].sem_num == semnum
  322.     && (sops[i].sem_op < 0)
  323.     && !(sops[i].sem_flg & IPC_NOWAIT))
  324. semncnt++;
  325. }
  326. return semncnt;
  327. }
  328. static int count_semzcnt (struct sem_array * sma, ushort semnum)
  329. {
  330. int semzcnt;
  331. struct sem_queue * q;
  332. semzcnt = 0;
  333. for (q = sma->sem_pending; q; q = q->next) {
  334. struct sembuf * sops = q->sops;
  335. int nsops = q->nsops;
  336. int i;
  337. for (i = 0; i < nsops; i++)
  338. if (sops[i].sem_num == semnum
  339.     && (sops[i].sem_op == 0)
  340.     && !(sops[i].sem_flg & IPC_NOWAIT))
  341. semzcnt++;
  342. }
  343. return semzcnt;
  344. }
  345. /* Free a semaphore set. */
  346. static void freeary (int id)
  347. {
  348. struct sem_array *sma;
  349. struct sem_undo *un;
  350. struct sem_queue *q;
  351. int size;
  352. sma = sem_rmid(id);
  353. /* Invalidate the existing undo structures for this semaphore set.
  354.  * (They will be freed without any further action in sem_exit()
  355.  * or during the next semop.)
  356.  */
  357. for (un = sma->undo; un; un = un->id_next)
  358. un->semid = -1;
  359. /* Wake up all pending processes and let them fail with EIDRM. */
  360. for (q = sma->sem_pending; q; q = q->next) {
  361. q->status = -EIDRM;
  362. q->prev = NULL;
  363. wake_up_process(q->sleeper); /* doesn't sleep */
  364. }
  365. sem_unlock(id);
  366. used_sems -= sma->sem_nsems;
  367. size = sizeof (*sma) + sma->sem_nsems * sizeof (struct sem);
  368. ipc_free(sma, size);
  369. }
  370. static unsigned long copy_semid_to_user(void *buf, struct semid64_ds *in, int version)
  371. {
  372. switch(version) {
  373. case IPC_64:
  374. return copy_to_user(buf, in, sizeof(*in));
  375. case IPC_OLD:
  376.     {
  377. struct semid_ds out;
  378. ipc64_perm_to_ipc_perm(&in->sem_perm, &out.sem_perm);
  379. out.sem_otime = in->sem_otime;
  380. out.sem_ctime = in->sem_ctime;
  381. out.sem_nsems = in->sem_nsems;
  382. return copy_to_user(buf, &out, sizeof(out));
  383.     }
  384. default:
  385. return -EINVAL;
  386. }
  387. }
  388. static int semctl_nolock(int semid, int semnum, int cmd, int version, union semun arg)
  389. {
  390. int err = -EINVAL;
  391. switch(cmd) {
  392. case IPC_INFO:
  393. case SEM_INFO:
  394. {
  395. struct seminfo seminfo;
  396. int max_id;
  397. memset(&seminfo,0,sizeof(seminfo));
  398. seminfo.semmni = sc_semmni;
  399. seminfo.semmns = sc_semmns;
  400. seminfo.semmsl = sc_semmsl;
  401. seminfo.semopm = sc_semopm;
  402. seminfo.semvmx = SEMVMX;
  403. seminfo.semmnu = SEMMNU;
  404. seminfo.semmap = SEMMAP;
  405. seminfo.semume = SEMUME;
  406. down(&sem_ids.sem);
  407. if (cmd == SEM_INFO) {
  408. seminfo.semusz = sem_ids.in_use;
  409. seminfo.semaem = used_sems;
  410. } else {
  411. seminfo.semusz = SEMUSZ;
  412. seminfo.semaem = SEMAEM;
  413. }
  414. max_id = sem_ids.max_id;
  415. up(&sem_ids.sem);
  416. if (copy_to_user (arg.__buf, &seminfo, sizeof(struct seminfo))) 
  417. return -EFAULT;
  418. return (max_id < 0) ? 0: max_id;
  419. }
  420. case SEM_STAT:
  421. {
  422. struct sem_array *sma;
  423. struct semid64_ds tbuf;
  424. int id;
  425. if(semid >= sem_ids.size)
  426. return -EINVAL;
  427. memset(&tbuf,0,sizeof(tbuf));
  428. sma = sem_lock(semid);
  429. if(sma == NULL)
  430. return -EINVAL;
  431. err = -EACCES;
  432. if (ipcperms (&sma->sem_perm, S_IRUGO))
  433. goto out_unlock;
  434. id = sem_buildid(semid, sma->sem_perm.seq);
  435. kernel_to_ipc64_perm(&sma->sem_perm, &tbuf.sem_perm);
  436. tbuf.sem_otime  = sma->sem_otime;
  437. tbuf.sem_ctime  = sma->sem_ctime;
  438. tbuf.sem_nsems  = sma->sem_nsems;
  439. sem_unlock(semid);
  440. if (copy_semid_to_user (arg.buf, &tbuf, version))
  441. return -EFAULT;
  442. return id;
  443. }
  444. default:
  445. return -EINVAL;
  446. }
  447. return err;
  448. out_unlock:
  449. sem_unlock(semid);
  450. return err;
  451. }
  452. static int semctl_main(int semid, int semnum, int cmd, int version, union semun arg)
  453. {
  454. struct sem_array *sma;
  455. struct sem* curr;
  456. int err;
  457. ushort fast_sem_io[SEMMSL_FAST];
  458. ushort* sem_io = fast_sem_io;
  459. int nsems;
  460. sma = sem_lock(semid);
  461. if(sma==NULL)
  462. return -EINVAL;
  463. nsems = sma->sem_nsems;
  464. err=-EIDRM;
  465. if (sem_checkid(sma,semid))
  466. goto out_unlock;
  467. err = -EACCES;
  468. if (ipcperms (&sma->sem_perm, (cmd==SETVAL||cmd==SETALL)?S_IWUGO:S_IRUGO))
  469. goto out_unlock;
  470. switch (cmd) {
  471. case GETALL:
  472. {
  473. ushort *array = arg.array;
  474. int i;
  475. if(nsems > SEMMSL_FAST) {
  476. sem_unlock(semid);
  477. sem_io = ipc_alloc(sizeof(ushort)*nsems);
  478. if(sem_io == NULL)
  479. return -ENOMEM;
  480. err = sem_revalidate(semid, sma, nsems, S_IRUGO);
  481. if(err)
  482. goto out_free;
  483. }
  484. for (i = 0; i < sma->sem_nsems; i++)
  485. sem_io[i] = sma->sem_base[i].semval;
  486. sem_unlock(semid);
  487. err = 0;
  488. if(copy_to_user(array, sem_io, nsems*sizeof(ushort)))
  489. err = -EFAULT;
  490. goto out_free;
  491. }
  492. case SETALL:
  493. {
  494. int i;
  495. struct sem_undo *un;
  496. sem_unlock(semid);
  497. if(nsems > SEMMSL_FAST) {
  498. sem_io = ipc_alloc(sizeof(ushort)*nsems);
  499. if(sem_io == NULL)
  500. return -ENOMEM;
  501. }
  502. if (copy_from_user (sem_io, arg.array, nsems*sizeof(ushort))) {
  503. err = -EFAULT;
  504. goto out_free;
  505. }
  506. for (i = 0; i < nsems; i++) {
  507. if (sem_io[i] > SEMVMX) {
  508. err = -ERANGE;
  509. goto out_free;
  510. }
  511. }
  512. err = sem_revalidate(semid, sma, nsems, S_IWUGO);
  513. if(err)
  514. goto out_free;
  515. for (i = 0; i < nsems; i++)
  516. sma->sem_base[i].semval = sem_io[i];
  517. for (un = sma->undo; un; un = un->id_next)
  518. for (i = 0; i < nsems; i++)
  519. un->semadj[i] = 0;
  520. sma->sem_ctime = CURRENT_TIME;
  521. /* maybe some queued-up processes were waiting for this */
  522. update_queue(sma);
  523. err = 0;
  524. goto out_unlock;
  525. }
  526. case IPC_STAT:
  527. {
  528. struct semid64_ds tbuf;
  529. memset(&tbuf,0,sizeof(tbuf));
  530. kernel_to_ipc64_perm(&sma->sem_perm, &tbuf.sem_perm);
  531. tbuf.sem_otime  = sma->sem_otime;
  532. tbuf.sem_ctime  = sma->sem_ctime;
  533. tbuf.sem_nsems  = sma->sem_nsems;
  534. sem_unlock(semid);
  535. if (copy_semid_to_user (arg.buf, &tbuf, version))
  536. return -EFAULT;
  537. return 0;
  538. }
  539. /* GETVAL, GETPID, GETNCTN, GETZCNT, SETVAL: fall-through */
  540. }
  541. err = -EINVAL;
  542. if(semnum < 0 || semnum >= nsems)
  543. goto out_unlock;
  544. curr = &sma->sem_base[semnum];
  545. switch (cmd) {
  546. case GETVAL:
  547. err = curr->semval;
  548. goto out_unlock;
  549. case GETPID:
  550. err = curr->sempid & 0xffff;
  551. goto out_unlock;
  552. case GETNCNT:
  553. err = count_semncnt(sma,semnum);
  554. goto out_unlock;
  555. case GETZCNT:
  556. err = count_semzcnt(sma,semnum);
  557. goto out_unlock;
  558. case SETVAL:
  559. {
  560. int val = arg.val;
  561. struct sem_undo *un;
  562. err = -ERANGE;
  563. if (val > SEMVMX || val < 0)
  564. goto out_unlock;
  565. for (un = sma->undo; un; un = un->id_next)
  566. un->semadj[semnum] = 0;
  567. curr->semval = val;
  568. curr->sempid = current->pid;
  569. sma->sem_ctime = CURRENT_TIME;
  570. /* maybe some queued-up processes were waiting for this */
  571. update_queue(sma);
  572. err = 0;
  573. goto out_unlock;
  574. }
  575. }
  576. out_unlock:
  577. sem_unlock(semid);
  578. out_free:
  579. if(sem_io != fast_sem_io)
  580. ipc_free(sem_io, sizeof(ushort)*nsems);
  581. return err;
  582. }
  583. struct sem_setbuf {
  584. uid_t uid;
  585. gid_t gid;
  586. mode_t mode;
  587. };
  588. static inline unsigned long copy_semid_from_user(struct sem_setbuf *out, void *buf, int version)
  589. {
  590. switch(version) {
  591. case IPC_64:
  592.     {
  593. struct semid64_ds tbuf;
  594. if(copy_from_user(&tbuf, buf, sizeof(tbuf)))
  595. return -EFAULT;
  596. out->uid = tbuf.sem_perm.uid;
  597. out->gid = tbuf.sem_perm.gid;
  598. out->mode = tbuf.sem_perm.mode;
  599. return 0;
  600.     }
  601. case IPC_OLD:
  602.     {
  603. struct semid_ds tbuf_old;
  604. if(copy_from_user(&tbuf_old, buf, sizeof(tbuf_old)))
  605. return -EFAULT;
  606. out->uid = tbuf_old.sem_perm.uid;
  607. out->gid = tbuf_old.sem_perm.gid;
  608. out->mode = tbuf_old.sem_perm.mode;
  609. return 0;
  610.     }
  611. default:
  612. return -EINVAL;
  613. }
  614. }
  615. static int semctl_down(int semid, int semnum, int cmd, int version, union semun arg)
  616. {
  617. struct sem_array *sma;
  618. int err;
  619. struct sem_setbuf setbuf;
  620. struct kern_ipc_perm *ipcp;
  621. if(cmd == IPC_SET) {
  622. if(copy_semid_from_user (&setbuf, arg.buf, version))
  623. return -EFAULT;
  624. }
  625. sma = sem_lock(semid);
  626. if(sma==NULL)
  627. return -EINVAL;
  628. if (sem_checkid(sma,semid)) {
  629. err=-EIDRM;
  630. goto out_unlock;
  631. }
  632. ipcp = &sma->sem_perm;
  633. if (current->euid != ipcp->cuid && 
  634.     current->euid != ipcp->uid && !capable(CAP_SYS_ADMIN)) {
  635.      err=-EPERM;
  636. goto out_unlock;
  637. }
  638. switch(cmd){
  639. case IPC_RMID:
  640. freeary(semid);
  641. err = 0;
  642. break;
  643. case IPC_SET:
  644. ipcp->uid = setbuf.uid;
  645. ipcp->gid = setbuf.gid;
  646. ipcp->mode = (ipcp->mode & ~S_IRWXUGO)
  647. | (setbuf.mode & S_IRWXUGO);
  648. sma->sem_ctime = CURRENT_TIME;
  649. sem_unlock(semid);
  650. err = 0;
  651. break;
  652. default:
  653. sem_unlock(semid);
  654. err = -EINVAL;
  655. break;
  656. }
  657. return err;
  658. out_unlock:
  659. sem_unlock(semid);
  660. return err;
  661. }
  662. asmlinkage long sys_semctl (int semid, int semnum, int cmd, union semun arg)
  663. {
  664. int err = -EINVAL;
  665. int version;
  666. if (semid < 0)
  667. return -EINVAL;
  668. version = ipc_parse_version(&cmd);
  669. switch(cmd) {
  670. case IPC_INFO:
  671. case SEM_INFO:
  672. case SEM_STAT:
  673. err = semctl_nolock(semid,semnum,cmd,version,arg);
  674. return err;
  675. case GETALL:
  676. case GETVAL:
  677. case GETPID:
  678. case GETNCNT:
  679. case GETZCNT:
  680. case IPC_STAT:
  681. case SETVAL:
  682. case SETALL:
  683. err = semctl_main(semid,semnum,cmd,version,arg);
  684. return err;
  685. case IPC_RMID:
  686. case IPC_SET:
  687. down(&sem_ids.sem);
  688. err = semctl_down(semid,semnum,cmd,version,arg);
  689. up(&sem_ids.sem);
  690. return err;
  691. default:
  692. return -EINVAL;
  693. }
  694. }
  695. static struct sem_undo* freeundos(struct sem_array *sma, struct sem_undo* un)
  696. {
  697. struct sem_undo* u;
  698. struct sem_undo** up;
  699. for(up = &current->semundo;(u=*up);up=&u->proc_next) {
  700. if(un==u) {
  701. un=u->proc_next;
  702. *up=un;
  703. kfree(u);
  704. return un;
  705. }
  706. }
  707. printk ("freeundos undo list error id=%dn", un->semid);
  708. return un->proc_next;
  709. }
  710. /* returns without sem_lock on error! */
  711. static int alloc_undo(struct sem_array *sma, struct sem_undo** unp, int semid, int alter)
  712. {
  713. int size, nsems, error;
  714. struct sem_undo *un;
  715. nsems = sma->sem_nsems;
  716. size = sizeof(struct sem_undo) + sizeof(short)*nsems;
  717. sem_unlock(semid);
  718. un = (struct sem_undo *) kmalloc(size, GFP_KERNEL);
  719. if (!un)
  720. return -ENOMEM;
  721. memset(un, 0, size);
  722. error = sem_revalidate(semid, sma, nsems, alter ? S_IWUGO : S_IRUGO);
  723. if(error) {
  724. kfree(un);
  725. return error;
  726. }
  727. un->semadj = (short *) &un[1];
  728. un->semid = semid;
  729. un->proc_next = current->semundo;
  730. current->semundo = un;
  731. un->id_next = sma->undo;
  732. sma->undo = un;
  733. *unp = un;
  734. return 0;
  735. }
  736. asmlinkage long sys_semop (int semid, struct sembuf *tsops, unsigned nsops)
  737. {
  738. int error = -EINVAL;
  739. struct sem_array *sma;
  740. struct sembuf fast_sops[SEMOPM_FAST];
  741. struct sembuf* sops = fast_sops, *sop;
  742. struct sem_undo *un;
  743. int undos = 0, decrease = 0, alter = 0;
  744. struct sem_queue queue;
  745. if (nsops < 1 || semid < 0)
  746. return -EINVAL;
  747. if (nsops > sc_semopm)
  748. return -E2BIG;
  749. if(nsops > SEMOPM_FAST) {
  750. sops = kmalloc(sizeof(*sops)*nsops,GFP_KERNEL);
  751. if(sops==NULL)
  752. return -ENOMEM;
  753. }
  754. if (copy_from_user (sops, tsops, nsops * sizeof(*tsops))) {
  755. error=-EFAULT;
  756. goto out_free;
  757. }
  758. sma = sem_lock(semid);
  759. error=-EINVAL;
  760. if(sma==NULL)
  761. goto out_free;
  762. error = -EIDRM;
  763. if (sem_checkid(sma,semid))
  764. goto out_unlock_free;
  765. error = -EFBIG;
  766. for (sop = sops; sop < sops + nsops; sop++) {
  767. if (sop->sem_num >= sma->sem_nsems)
  768. goto out_unlock_free;
  769. if (sop->sem_flg & SEM_UNDO)
  770. undos++;
  771. if (sop->sem_op < 0)
  772. decrease = 1;
  773. if (sop->sem_op > 0)
  774. alter = 1;
  775. }
  776. alter |= decrease;
  777. error = -EACCES;
  778. if (ipcperms(&sma->sem_perm, alter ? S_IWUGO : S_IRUGO))
  779. goto out_unlock_free;
  780. if (undos) {
  781. /* Make sure we have an undo structure
  782.  * for this process and this semaphore set.
  783.  */
  784. un=current->semundo;
  785. while(un != NULL) {
  786. if(un->semid==semid)
  787. break;
  788. if(un->semid==-1)
  789. un=freeundos(sma,un);
  790.  else
  791. un=un->proc_next;
  792. }
  793. if (!un) {
  794. error = alloc_undo(sma,&un,semid,alter);
  795. if(error)
  796. goto out_free;
  797. }
  798. } else
  799. un = NULL;
  800. error = try_atomic_semop (sma, sops, nsops, un, current->pid, 0);
  801. if (error <= 0)
  802. goto update;
  803. /* We need to sleep on this operation, so we put the current
  804.  * task into the pending queue and go to sleep.
  805.  */
  806. queue.sma = sma;
  807. queue.sops = sops;
  808. queue.nsops = nsops;
  809. queue.undo = un;
  810. queue.pid = current->pid;
  811. queue.alter = decrease;
  812. queue.id = semid;
  813. if (alter)
  814. append_to_queue(sma ,&queue);
  815. else
  816. prepend_to_queue(sma ,&queue);
  817. current->semsleeping = &queue;
  818. for (;;) {
  819. struct sem_array* tmp;
  820. queue.status = -EINTR;
  821. queue.sleeper = current;
  822. current->state = TASK_INTERRUPTIBLE;
  823. sem_unlock(semid);
  824. schedule();
  825. tmp = sem_lock(semid);
  826. if(tmp==NULL) {
  827. if(queue.prev != NULL)
  828. BUG();
  829. current->semsleeping = NULL;
  830. error = -EIDRM;
  831. goto out_free;
  832. }
  833. /*
  834.  * If queue.status == 1 we where woken up and
  835.  * have to retry else we simply return.
  836.  * If an interrupt occurred we have to clean up the
  837.  * queue
  838.  *
  839.  */
  840. if (queue.status == 1)
  841. {
  842. error = try_atomic_semop (sma, sops, nsops, un,
  843.   current->pid,0);
  844. if (error <= 0) 
  845. break;
  846. } else {
  847. error = queue.status;
  848. if (queue.prev) /* got Interrupt */
  849. break;
  850. /* Everything done by update_queue */
  851. current->semsleeping = NULL;
  852. goto out_unlock_free;
  853. }
  854. }
  855. current->semsleeping = NULL;
  856. remove_from_queue(sma,&queue);
  857. update:
  858. if (alter)
  859. update_queue (sma);
  860. out_unlock_free:
  861. sem_unlock(semid);
  862. out_free:
  863. if(sops != fast_sops)
  864. kfree(sops);
  865. return error;
  866. }
  867. /*
  868.  * add semadj values to semaphores, free undo structures.
  869.  * undo structures are not freed when semaphore arrays are destroyed
  870.  * so some of them may be out of date.
  871.  * IMPLEMENTATION NOTE: There is some confusion over whether the
  872.  * set of adjustments that needs to be done should be done in an atomic
  873.  * manner or not. That is, if we are attempting to decrement the semval
  874.  * should we queue up and wait until we can do so legally?
  875.  * The original implementation attempted to do this (queue and wait).
  876.  * The current implementation does not do so. The POSIX standard
  877.  * and SVID should be consulted to determine what behavior is mandated.
  878.  */
  879. void sem_exit (void)
  880. {
  881. struct sem_queue *q;
  882. struct sem_undo *u, *un = NULL, **up, **unp;
  883. struct sem_array *sma;
  884. int nsems, i;
  885. /* If the current process was sleeping for a semaphore,
  886.  * remove it from the queue.
  887.  */
  888. if ((q = current->semsleeping)) {
  889. int semid = q->id;
  890. sma = sem_lock(semid);
  891. current->semsleeping = NULL;
  892. if (q->prev) {
  893. if(sma==NULL)
  894. BUG();
  895. remove_from_queue(q->sma,q);
  896. }
  897. if(sma!=NULL)
  898. sem_unlock(semid);
  899. }
  900. for (up = &current->semundo; (u = *up); *up = u->proc_next, kfree(u)) {
  901. int semid = u->semid;
  902. if(semid == -1)
  903. continue;
  904. sma = sem_lock(semid);
  905. if (sma == NULL)
  906. continue;
  907. if (u->semid == -1)
  908. goto next_entry;
  909. if (sem_checkid(sma,u->semid))
  910. goto next_entry;
  911. /* remove u from the sma->undo list */
  912. for (unp = &sma->undo; (un = *unp); unp = &un->id_next) {
  913. if (u == un)
  914. goto found;
  915. }
  916. printk ("sem_exit undo list error id=%dn", u->semid);
  917. goto next_entry;
  918. found:
  919. *unp = un->id_next;
  920. /* perform adjustments registered in u */
  921. nsems = sma->sem_nsems;
  922. for (i = 0; i < nsems; i++) {
  923. struct sem * sem = &sma->sem_base[i];
  924. sem->semval += u->semadj[i];
  925. if (sem->semval < 0)
  926. sem->semval = 0; /* shouldn't happen */
  927. sem->sempid = current->pid;
  928. }
  929. sma->sem_otime = CURRENT_TIME;
  930. /* maybe some queued-up processes were waiting for this */
  931. update_queue(sma);
  932. next_entry:
  933. sem_unlock(semid);
  934. }
  935. current->semundo = NULL;
  936. }
  937. #ifdef CONFIG_PROC_FS
  938. static int sysvipc_sem_read_proc(char *buffer, char **start, off_t offset, int length, int *eof, void *data)
  939. {
  940. off_t pos = 0;
  941. off_t begin = 0;
  942. int i, len = 0;
  943. len += sprintf(buffer, "       key      semid perms      nsems   uid   gid  cuid  cgid      otime      ctimen");
  944. down(&sem_ids.sem);
  945. for(i = 0; i <= sem_ids.max_id; i++) {
  946. struct sem_array *sma;
  947. sma = sem_lock(i);
  948. if(sma) {
  949. len += sprintf(buffer + len, "%10d %10d  %4o %10lu %5u %5u %5u %5u %10lu %10lun",
  950. sma->sem_perm.key,
  951. sem_buildid(i,sma->sem_perm.seq),
  952. sma->sem_perm.mode,
  953. sma->sem_nsems,
  954. sma->sem_perm.uid,
  955. sma->sem_perm.gid,
  956. sma->sem_perm.cuid,
  957. sma->sem_perm.cgid,
  958. sma->sem_otime,
  959. sma->sem_ctime);
  960. sem_unlock(i);
  961. pos += len;
  962. if(pos < offset) {
  963. len = 0;
  964.      begin = pos;
  965. }
  966. if(pos > offset + length)
  967. goto done;
  968. }
  969. }
  970. *eof = 1;
  971. done:
  972. up(&sem_ids.sem);
  973. *start = buffer + (offset - begin);
  974. len -= (offset - begin);
  975. if(len > length)
  976. len = length;
  977. if(len < 0)
  978. len = 0;
  979. return len;
  980. }
  981. #endif