shm.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:17k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/ipc/shm.c
  3.  * Copyright (C) 1992, 1993 Krishna Balasubramanian
  4.  *  Many improvements/fixes by Bruno Haible.
  5.  * Replaced `struct shm_desc' by `struct vm_area_struct', July 1994.
  6.  * Fixed the shm swap deallocation (shm_unuse()), August 1998 Andrea Arcangeli.
  7.  *
  8.  * /proc/sysvipc/shm support (c) 1999 Dragos Acostachioaie <dragos@iname.com>
  9.  * BIGMEM support, Andrea Arcangeli <andrea@suse.de>
  10.  * SMP thread shm, Jean-Luc Boyard <jean-luc.boyard@siemens.fr>
  11.  * HIGHMEM support, Ingo Molnar <mingo@redhat.com>
  12.  * Make shmmax, shmall, shmmni sysctl'able, Christoph Rohland <cr@sap.com>
  13.  * Shared /dev/zero support, Kanoj Sarcar <kanoj@sgi.com>
  14.  * Move the mm functionality over to mm/shmem.c, Christoph Rohland <cr@sap.com>
  15.  *
  16.  */
  17. #include <linux/config.h>
  18. #include <linux/slab.h>
  19. #include <linux/shm.h>
  20. #include <linux/init.h>
  21. #include <linux/file.h>
  22. #include <linux/mman.h>
  23. #include <linux/proc_fs.h>
  24. #include <asm/uaccess.h>
  25. #include "util.h"
  26. struct shmid_kernel /* private to the kernel */
  27. {
  28. struct kern_ipc_perm shm_perm;
  29. struct file * shm_file;
  30. int id;
  31. unsigned long shm_nattch;
  32. unsigned long shm_segsz;
  33. time_t shm_atim;
  34. time_t shm_dtim;
  35. time_t shm_ctim;
  36. pid_t shm_cprid;
  37. pid_t shm_lprid;
  38. };
  39. #define shm_flags shm_perm.mode
  40. static struct file_operations shm_file_operations;
  41. static struct vm_operations_struct shm_vm_ops;
  42. static struct ipc_ids shm_ids;
  43. #define shm_lock(id) ((struct shmid_kernel*)ipc_lock(&shm_ids,id))
  44. #define shm_unlock(id) ipc_unlock(&shm_ids,id)
  45. #define shm_lockall() ipc_lockall(&shm_ids)
  46. #define shm_unlockall() ipc_unlockall(&shm_ids)
  47. #define shm_get(id) ((struct shmid_kernel*)ipc_get(&shm_ids,id))
  48. #define shm_buildid(id, seq) 
  49. ipc_buildid(&shm_ids, id, seq)
  50. static int newseg (key_t key, int shmflg, size_t size);
  51. static void shm_open (struct vm_area_struct *shmd);
  52. static void shm_close (struct vm_area_struct *shmd);
  53. #ifdef CONFIG_PROC_FS
  54. static int sysvipc_shm_read_proc(char *buffer, char **start, off_t offset, int length, int *eof, void *data);
  55. #endif
  56. size_t shm_ctlmax = SHMMAX;
  57. size_t  shm_ctlall = SHMALL;
  58. int  shm_ctlmni = SHMMNI;
  59. static int shm_tot; /* total number of shared memory pages */
  60. void __init shm_init (void)
  61. {
  62. ipc_init_ids(&shm_ids, 1);
  63. #ifdef CONFIG_PROC_FS
  64. create_proc_read_entry("sysvipc/shm", 0, 0, sysvipc_shm_read_proc, NULL);
  65. #endif
  66. }
  67. static inline int shm_checkid(struct shmid_kernel *s, int id)
  68. {
  69. if (ipc_checkid(&shm_ids,&s->shm_perm,id))
  70. return -EIDRM;
  71. return 0;
  72. }
  73. static inline struct shmid_kernel *shm_rmid(int id)
  74. {
  75. return (struct shmid_kernel *)ipc_rmid(&shm_ids,id);
  76. }
  77. static inline int shm_addid(struct shmid_kernel *shp)
  78. {
  79. return ipc_addid(&shm_ids, &shp->shm_perm, shm_ctlmni+1);
  80. }
  81. static inline void shm_inc (int id) {
  82. struct shmid_kernel *shp;
  83. if(!(shp = shm_lock(id)))
  84. BUG();
  85. shp->shm_atim = CURRENT_TIME;
  86. shp->shm_lprid = current->pid;
  87. shp->shm_nattch++;
  88. shm_unlock(id);
  89. }
  90. /* This is called by fork, once for every shm attach. */
  91. static void shm_open (struct vm_area_struct *shmd)
  92. {
  93. shm_inc (shmd->vm_file->f_dentry->d_inode->i_ino);
  94. }
  95. /*
  96.  * shm_destroy - free the struct shmid_kernel
  97.  *
  98.  * @shp: struct to free
  99.  *
  100.  * It has to be called with shp and shm_ids.sem locked
  101.  */
  102. static void shm_destroy (struct shmid_kernel *shp)
  103. {
  104. shm_tot -= (shp->shm_segsz + PAGE_SIZE - 1) >> PAGE_SHIFT;
  105. shm_rmid (shp->id);
  106. shmem_lock(shp->shm_file, 0);
  107. fput (shp->shm_file);
  108. kfree (shp);
  109. }
  110. /*
  111.  * remove the attach descriptor shmd.
  112.  * free memory for segment if it is marked destroyed.
  113.  * The descriptor has already been removed from the current->mm->mmap list
  114.  * and will later be kfree()d.
  115.  */
  116. static void shm_close (struct vm_area_struct *shmd)
  117. {
  118. struct file * file = shmd->vm_file;
  119. int id = file->f_dentry->d_inode->i_ino;
  120. struct shmid_kernel *shp;
  121. down (&shm_ids.sem);
  122. /* remove from the list of attaches of the shm segment */
  123. if(!(shp = shm_lock(id)))
  124. BUG();
  125. shp->shm_lprid = current->pid;
  126. shp->shm_dtim = CURRENT_TIME;
  127. shp->shm_nattch--;
  128. if(shp->shm_nattch == 0 &&
  129.    shp->shm_flags & SHM_DEST)
  130. shm_destroy (shp);
  131. shm_unlock(id);
  132. up (&shm_ids.sem);
  133. }
  134. static int shm_mmap(struct file * file, struct vm_area_struct * vma)
  135. {
  136. UPDATE_ATIME(file->f_dentry->d_inode);
  137. vma->vm_ops = &shm_vm_ops;
  138. shm_inc(file->f_dentry->d_inode->i_ino);
  139. return 0;
  140. }
  141. static struct file_operations shm_file_operations = {
  142. mmap: shm_mmap
  143. };
  144. static struct vm_operations_struct shm_vm_ops = {
  145. open: shm_open, /* callback for a new vm-area open */
  146. close: shm_close, /* callback for when the vm-area is released */
  147. nopage: shmem_nopage,
  148. };
  149. static int newseg (key_t key, int shmflg, size_t size)
  150. {
  151. int error;
  152. struct shmid_kernel *shp;
  153. int numpages = (size + PAGE_SIZE -1) >> PAGE_SHIFT;
  154. struct file * file;
  155. char name[13];
  156. int id;
  157. if (size < SHMMIN || size > shm_ctlmax)
  158. return -EINVAL;
  159. if (shm_tot + numpages >= shm_ctlall)
  160. return -ENOSPC;
  161. shp = (struct shmid_kernel *) kmalloc (sizeof (*shp), GFP_USER);
  162. if (!shp)
  163. return -ENOMEM;
  164. sprintf (name, "SYSV%08x", key);
  165. file = shmem_file_setup(name, size);
  166. error = PTR_ERR(file);
  167. if (IS_ERR(file))
  168. goto no_file;
  169. error = -ENOSPC;
  170. id = shm_addid(shp);
  171. if(id == -1) 
  172. goto no_id;
  173. shp->shm_perm.key = key;
  174. shp->shm_flags = (shmflg & S_IRWXUGO);
  175. shp->shm_cprid = current->pid;
  176. shp->shm_lprid = 0;
  177. shp->shm_atim = shp->shm_dtim = 0;
  178. shp->shm_ctim = CURRENT_TIME;
  179. shp->shm_segsz = size;
  180. shp->shm_nattch = 0;
  181. shp->id = shm_buildid(id,shp->shm_perm.seq);
  182. shp->shm_file = file;
  183. file->f_dentry->d_inode->i_ino = shp->id;
  184. file->f_op = &shm_file_operations;
  185. shm_tot += numpages;
  186. shm_unlock (id);
  187. return shp->id;
  188. no_id:
  189. fput(file);
  190. no_file:
  191. kfree(shp);
  192. return error;
  193. }
  194. asmlinkage long sys_shmget (key_t key, size_t size, int shmflg)
  195. {
  196. struct shmid_kernel *shp;
  197. int err, id = 0;
  198. down(&shm_ids.sem);
  199. if (key == IPC_PRIVATE) {
  200. err = newseg(key, shmflg, size);
  201. } else if ((id = ipc_findkey(&shm_ids, key)) == -1) {
  202. if (!(shmflg & IPC_CREAT))
  203. err = -ENOENT;
  204. else
  205. err = newseg(key, shmflg, size);
  206. } else if ((shmflg & IPC_CREAT) && (shmflg & IPC_EXCL)) {
  207. err = -EEXIST;
  208. } else {
  209. shp = shm_lock(id);
  210. if(shp==NULL)
  211. BUG();
  212. if (shp->shm_segsz < size)
  213. err = -EINVAL;
  214. else if (ipcperms(&shp->shm_perm, shmflg))
  215. err = -EACCES;
  216. else
  217. err = shm_buildid(id, shp->shm_perm.seq);
  218. shm_unlock(id);
  219. }
  220. up(&shm_ids.sem);
  221. return err;
  222. }
  223. static inline unsigned long copy_shmid_to_user(void *buf, struct shmid64_ds *in, int version)
  224. {
  225. switch(version) {
  226. case IPC_64:
  227. return copy_to_user(buf, in, sizeof(*in));
  228. case IPC_OLD:
  229.     {
  230. struct shmid_ds out;
  231. ipc64_perm_to_ipc_perm(&in->shm_perm, &out.shm_perm);
  232. out.shm_segsz = in->shm_segsz;
  233. out.shm_atime = in->shm_atime;
  234. out.shm_dtime = in->shm_dtime;
  235. out.shm_ctime = in->shm_ctime;
  236. out.shm_cpid = in->shm_cpid;
  237. out.shm_lpid = in->shm_lpid;
  238. out.shm_nattch = in->shm_nattch;
  239. return copy_to_user(buf, &out, sizeof(out));
  240.     }
  241. default:
  242. return -EINVAL;
  243. }
  244. }
  245. struct shm_setbuf {
  246. uid_t uid;
  247. gid_t gid;
  248. mode_t mode;
  249. };
  250. static inline unsigned long copy_shmid_from_user(struct shm_setbuf *out, void *buf, int version)
  251. {
  252. switch(version) {
  253. case IPC_64:
  254.     {
  255. struct shmid64_ds tbuf;
  256. if (copy_from_user(&tbuf, buf, sizeof(tbuf)))
  257. return -EFAULT;
  258. out->uid = tbuf.shm_perm.uid;
  259. out->gid = tbuf.shm_perm.gid;
  260. out->mode = tbuf.shm_flags;
  261. return 0;
  262.     }
  263. case IPC_OLD:
  264.     {
  265. struct shmid_ds tbuf_old;
  266. if (copy_from_user(&tbuf_old, buf, sizeof(tbuf_old)))
  267. return -EFAULT;
  268. out->uid = tbuf_old.shm_perm.uid;
  269. out->gid = tbuf_old.shm_perm.gid;
  270. out->mode = tbuf_old.shm_flags;
  271. return 0;
  272.     }
  273. default:
  274. return -EINVAL;
  275. }
  276. }
  277. static inline unsigned long copy_shminfo_to_user(void *buf, struct shminfo64 *in, int version)
  278. {
  279. switch(version) {
  280. case IPC_64:
  281. return copy_to_user(buf, in, sizeof(*in));
  282. case IPC_OLD:
  283.     {
  284. struct shminfo out;
  285. if(in->shmmax > INT_MAX)
  286. out.shmmax = INT_MAX;
  287. else
  288. out.shmmax = (int)in->shmmax;
  289. out.shmmin = in->shmmin;
  290. out.shmmni = in->shmmni;
  291. out.shmseg = in->shmseg;
  292. out.shmall = in->shmall; 
  293. return copy_to_user(buf, &out, sizeof(out));
  294.     }
  295. default:
  296. return -EINVAL;
  297. }
  298. }
  299. static void shm_get_stat (unsigned long *rss, unsigned long *swp) 
  300. {
  301. struct shmem_inode_info *info;
  302. int i;
  303. *rss = 0;
  304. *swp = 0;
  305. for(i = 0; i <= shm_ids.max_id; i++) {
  306. struct shmid_kernel* shp;
  307. struct inode * inode;
  308. shp = shm_get(i);
  309. if(shp == NULL)
  310. continue;
  311. inode = shp->shm_file->f_dentry->d_inode;
  312. info = SHMEM_I(inode);
  313. spin_lock (&info->lock);
  314. *rss += inode->i_mapping->nrpages;
  315. *swp += info->swapped;
  316. spin_unlock (&info->lock);
  317. }
  318. }
  319. asmlinkage long sys_shmctl (int shmid, int cmd, struct shmid_ds *buf)
  320. {
  321. struct shm_setbuf setbuf;
  322. struct shmid_kernel *shp;
  323. int err, version;
  324. if (cmd < 0 || shmid < 0)
  325. return -EINVAL;
  326. version = ipc_parse_version(&cmd);
  327. switch (cmd) { /* replace with proc interface ? */
  328. case IPC_INFO:
  329. {
  330. struct shminfo64 shminfo;
  331. memset(&shminfo,0,sizeof(shminfo));
  332. shminfo.shmmni = shminfo.shmseg = shm_ctlmni;
  333. shminfo.shmmax = shm_ctlmax;
  334. shminfo.shmall = shm_ctlall;
  335. shminfo.shmmin = SHMMIN;
  336. if(copy_shminfo_to_user (buf, &shminfo, version))
  337. return -EFAULT;
  338. /* reading a integer is always atomic */
  339. err= shm_ids.max_id;
  340. if(err<0)
  341. err = 0;
  342. return err;
  343. }
  344. case SHM_INFO:
  345. {
  346. struct shm_info shm_info;
  347. memset(&shm_info,0,sizeof(shm_info));
  348. down(&shm_ids.sem);
  349. shm_lockall();
  350. shm_info.used_ids = shm_ids.in_use;
  351. shm_get_stat (&shm_info.shm_rss, &shm_info.shm_swp);
  352. shm_info.shm_tot = shm_tot;
  353. shm_info.swap_attempts = 0;
  354. shm_info.swap_successes = 0;
  355. err = shm_ids.max_id;
  356. shm_unlockall();
  357. up(&shm_ids.sem);
  358. if(copy_to_user (buf, &shm_info, sizeof(shm_info)))
  359. return -EFAULT;
  360. return err < 0 ? 0 : err;
  361. }
  362. case SHM_STAT:
  363. case IPC_STAT:
  364. {
  365. struct shmid64_ds tbuf;
  366. int result;
  367. memset(&tbuf, 0, sizeof(tbuf));
  368. shp = shm_lock(shmid);
  369. if(shp==NULL)
  370. return -EINVAL;
  371. if(cmd==SHM_STAT) {
  372. err = -EINVAL;
  373. if (shmid > shm_ids.max_id)
  374. goto out_unlock;
  375. result = shm_buildid(shmid, shp->shm_perm.seq);
  376. } else {
  377. err = shm_checkid(shp,shmid);
  378. if(err)
  379. goto out_unlock;
  380. result = 0;
  381. }
  382. err=-EACCES;
  383. if (ipcperms (&shp->shm_perm, S_IRUGO))
  384. goto out_unlock;
  385. kernel_to_ipc64_perm(&shp->shm_perm, &tbuf.shm_perm);
  386. tbuf.shm_segsz = shp->shm_segsz;
  387. tbuf.shm_atime = shp->shm_atim;
  388. tbuf.shm_dtime = shp->shm_dtim;
  389. tbuf.shm_ctime = shp->shm_ctim;
  390. tbuf.shm_cpid = shp->shm_cprid;
  391. tbuf.shm_lpid = shp->shm_lprid;
  392. tbuf.shm_nattch = shp->shm_nattch;
  393. shm_unlock(shmid);
  394. if(copy_shmid_to_user (buf, &tbuf, version))
  395. return -EFAULT;
  396. return result;
  397. }
  398. case SHM_LOCK:
  399. case SHM_UNLOCK:
  400. {
  401. /* Allow superuser to lock segment in memory */
  402. /* Should the pages be faulted in here or leave it to user? */
  403. /* need to determine interaction with current->swappable */
  404. if (!capable(CAP_IPC_LOCK))
  405. return -EPERM;
  406. shp = shm_lock(shmid);
  407. if(shp==NULL)
  408. return -EINVAL;
  409. err = shm_checkid(shp,shmid);
  410. if(err)
  411. goto out_unlock;
  412. if(cmd==SHM_LOCK) {
  413. shmem_lock(shp->shm_file, 1);
  414. shp->shm_flags |= SHM_LOCKED;
  415. } else {
  416. shmem_lock(shp->shm_file, 0);
  417. shp->shm_flags &= ~SHM_LOCKED;
  418. }
  419. shm_unlock(shmid);
  420. return err;
  421. }
  422. case IPC_RMID:
  423. {
  424. /*
  425.  * We cannot simply remove the file. The SVID states
  426.  * that the block remains until the last person
  427.  * detaches from it, then is deleted. A shmat() on
  428.  * an RMID segment is legal in older Linux and if 
  429.  * we change it apps break...
  430.  *
  431.  * Instead we set a destroyed flag, and then blow
  432.  * the name away when the usage hits zero.
  433.  */
  434. down(&shm_ids.sem);
  435. shp = shm_lock(shmid);
  436. err = -EINVAL;
  437. if (shp == NULL) 
  438. goto out_up;
  439. err = shm_checkid(shp, shmid);
  440. if(err)
  441. goto out_unlock_up;
  442. if (current->euid != shp->shm_perm.uid &&
  443.     current->euid != shp->shm_perm.cuid && 
  444.     !capable(CAP_SYS_ADMIN)) {
  445. err=-EPERM;
  446. goto out_unlock_up;
  447. }
  448. if (shp->shm_nattch){
  449. shp->shm_flags |= SHM_DEST;
  450. /* Do not find it any more */
  451. shp->shm_perm.key = IPC_PRIVATE;
  452. } else
  453. shm_destroy (shp);
  454. /* Unlock */
  455. shm_unlock(shmid);
  456. up(&shm_ids.sem);
  457. return err;
  458. }
  459. case IPC_SET:
  460. {
  461. if(copy_shmid_from_user (&setbuf, buf, version))
  462. return -EFAULT;
  463. down(&shm_ids.sem);
  464. shp = shm_lock(shmid);
  465. err=-EINVAL;
  466. if(shp==NULL)
  467. goto out_up;
  468. err = shm_checkid(shp,shmid);
  469. if(err)
  470. goto out_unlock_up;
  471. err=-EPERM;
  472. if (current->euid != shp->shm_perm.uid &&
  473.     current->euid != shp->shm_perm.cuid && 
  474.     !capable(CAP_SYS_ADMIN)) {
  475. goto out_unlock_up;
  476. }
  477. shp->shm_perm.uid = setbuf.uid;
  478. shp->shm_perm.gid = setbuf.gid;
  479. shp->shm_flags = (shp->shm_flags & ~S_IRWXUGO)
  480. | (setbuf.mode & S_IRWXUGO);
  481. shp->shm_ctim = CURRENT_TIME;
  482. break;
  483. }
  484. default:
  485. return -EINVAL;
  486. }
  487. err = 0;
  488. out_unlock_up:
  489. shm_unlock(shmid);
  490. out_up:
  491. up(&shm_ids.sem);
  492. return err;
  493. out_unlock:
  494. shm_unlock(shmid);
  495. return err;
  496. }
  497. /*
  498.  * Fix shmaddr, allocate descriptor, map shm, add attach descriptor to lists.
  499.  */
  500. asmlinkage long sys_shmat (int shmid, char *shmaddr, int shmflg, ulong *raddr)
  501. {
  502. struct shmid_kernel *shp;
  503. unsigned long addr;
  504. unsigned long size;
  505. struct file * file;
  506. int    err;
  507. unsigned long flags;
  508. unsigned long prot;
  509. unsigned long o_flags;
  510. int acc_mode;
  511. void *user_addr;
  512. if (shmid < 0)
  513. return -EINVAL;
  514. if ((addr = (ulong)shmaddr)) {
  515. if (addr & (SHMLBA-1)) {
  516. if (shmflg & SHM_RND)
  517. addr &= ~(SHMLBA-1);    /* round down */
  518. else
  519. return -EINVAL;
  520. }
  521. flags = MAP_SHARED | MAP_FIXED;
  522. } else {
  523. if ((shmflg & SHM_REMAP))
  524. return -EINVAL;
  525. flags = MAP_SHARED;
  526. }
  527. if (shmflg & SHM_RDONLY) {
  528. prot = PROT_READ;
  529. o_flags = O_RDONLY;
  530. acc_mode = S_IRUGO;
  531. } else {
  532. prot = PROT_READ | PROT_WRITE;
  533. o_flags = O_RDWR;
  534. acc_mode = S_IRUGO | S_IWUGO;
  535. }
  536. /*
  537.  * We cannot rely on the fs check since SYSV IPC does have an
  538.  * additional creator id...
  539.  */
  540. shp = shm_lock(shmid);
  541. if(shp == NULL)
  542. return -EINVAL;
  543. err = shm_checkid(shp,shmid);
  544. if (err) {
  545. shm_unlock(shmid);
  546. return err;
  547. }
  548. if (ipcperms(&shp->shm_perm, acc_mode)) {
  549. shm_unlock(shmid);
  550. return -EACCES;
  551. }
  552. file = shp->shm_file;
  553. size = file->f_dentry->d_inode->i_size;
  554. shp->shm_nattch++;
  555. shm_unlock(shmid);
  556. down_write(&current->mm->mmap_sem);
  557. if (addr && !(shmflg & SHM_REMAP)) {
  558. user_addr = ERR_PTR(-EINVAL);
  559. if (find_vma_intersection(current->mm, addr, addr + size))
  560. goto invalid;
  561. /*
  562.  * If shm segment goes below stack, make sure there is some
  563.  * space left for the stack to grow (at least 4 pages).
  564.  */
  565. if (addr < current->mm->start_stack &&
  566.     addr > current->mm->start_stack - size - PAGE_SIZE * 5)
  567. goto invalid;
  568. }
  569. user_addr = (void*) do_mmap (file, addr, size, prot, flags, 0);
  570. invalid:
  571. up_write(&current->mm->mmap_sem);
  572. down (&shm_ids.sem);
  573. if(!(shp = shm_lock(shmid)))
  574. BUG();
  575. shp->shm_nattch--;
  576. if(shp->shm_nattch == 0 &&
  577.    shp->shm_flags & SHM_DEST)
  578. shm_destroy (shp);
  579. shm_unlock(shmid);
  580. up (&shm_ids.sem);
  581. *raddr = (unsigned long) user_addr;
  582. err = 0;
  583. if (IS_ERR(user_addr))
  584. err = PTR_ERR(user_addr);
  585. return err;
  586. }
  587. /*
  588.  * detach and kill segment if marked destroyed.
  589.  * The work is done in shm_close.
  590.  */
  591. asmlinkage long sys_shmdt (char *shmaddr)
  592. {
  593. struct mm_struct *mm = current->mm;
  594. struct vm_area_struct *shmd, *shmdnext;
  595. down_write(&mm->mmap_sem);
  596. for (shmd = mm->mmap; shmd; shmd = shmdnext) {
  597. shmdnext = shmd->vm_next;
  598. if (shmd->vm_ops == &shm_vm_ops
  599.     && shmd->vm_start - (shmd->vm_pgoff << PAGE_SHIFT) == (ulong) shmaddr)
  600. do_munmap(mm, shmd->vm_start, shmd->vm_end - shmd->vm_start);
  601. }
  602. up_write(&mm->mmap_sem);
  603. return 0;
  604. }
  605. #ifdef CONFIG_PROC_FS
  606. static int sysvipc_shm_read_proc(char *buffer, char **start, off_t offset, int length, int *eof, void *data)
  607. {
  608. off_t pos = 0;
  609. off_t begin = 0;
  610. int i, len = 0;
  611. down(&shm_ids.sem);
  612. len += sprintf(buffer, "       key      shmid perms       size  cpid  lpid nattch   uid   gid  cuid  cgid      atime      dtime      ctimen");
  613. for(i = 0; i <= shm_ids.max_id; i++) {
  614. struct shmid_kernel* shp;
  615. shp = shm_lock(i);
  616. if(shp!=NULL) {
  617. #define SMALL_STRING "%10d %10d  %4o %10u %5u %5u  %5d %5u %5u %5u %5u %10lu %10lu %10lun"
  618. #define BIG_STRING   "%10d %10d  %4o %21u %5u %5u  %5d %5u %5u %5u %5u %10lu %10lu %10lun"
  619. char *format;
  620. if (sizeof(size_t) <= sizeof(int))
  621. format = SMALL_STRING;
  622. else
  623. format = BIG_STRING;
  624. len += sprintf(buffer + len, format,
  625. shp->shm_perm.key,
  626. shm_buildid(i, shp->shm_perm.seq),
  627. shp->shm_flags,
  628. shp->shm_segsz,
  629. shp->shm_cprid,
  630. shp->shm_lprid,
  631. shp->shm_nattch,
  632. shp->shm_perm.uid,
  633. shp->shm_perm.gid,
  634. shp->shm_perm.cuid,
  635. shp->shm_perm.cgid,
  636. shp->shm_atim,
  637. shp->shm_dtim,
  638. shp->shm_ctim);
  639. shm_unlock(i);
  640. pos += len;
  641. if(pos < offset) {
  642. len = 0;
  643. begin = pos;
  644. }
  645. if(pos > offset + length)
  646. goto done;
  647. }
  648. }
  649. *eof = 1;
  650. done:
  651. up(&shm_ids.sem);
  652. *start = buffer + (offset - begin);
  653. len -= (offset - begin);
  654. if(len > length)
  655. len = length;
  656. if(len < 0)
  657. len = 0;
  658. return len;
  659. }
  660. #endif