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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/kernel/fork.c
  3.  *
  4.  *  Copyright (C) 1991, 1992  Linus Torvalds
  5.  */
  6. /*
  7.  *  'fork.c' contains the help-routines for the 'fork' system call
  8.  * (see also entry.S and others).
  9.  * Fork is rather simple, once you get the hang of it, but the memory
  10.  * management can be a bitch. See 'mm/memory.c': 'copy_page_range()'
  11.  */
  12. #include <linux/config.h>
  13. #include <linux/slab.h>
  14. #include <linux/init.h>
  15. #include <linux/unistd.h>
  16. #include <linux/smp_lock.h>
  17. #include <linux/module.h>
  18. #include <linux/vmalloc.h>
  19. #include <linux/completion.h>
  20. #include <linux/personality.h>
  21. #include <asm/pgtable.h>
  22. #include <asm/pgalloc.h>
  23. #include <asm/uaccess.h>
  24. #include <asm/mmu_context.h>
  25. /* The idle threads do not count.. */
  26. int nr_threads;
  27. int nr_running;
  28. int max_threads;
  29. unsigned long total_forks; /* Handle normal Linux uptimes. */
  30. int last_pid;
  31. struct task_struct *pidhash[PIDHASH_SZ];
  32. void add_wait_queue(wait_queue_head_t *q, wait_queue_t * wait)
  33. {
  34. unsigned long flags;
  35. wait->flags &= ~WQ_FLAG_EXCLUSIVE;
  36. wq_write_lock_irqsave(&q->lock, flags);
  37. __add_wait_queue(q, wait);
  38. wq_write_unlock_irqrestore(&q->lock, flags);
  39. }
  40. void add_wait_queue_exclusive(wait_queue_head_t *q, wait_queue_t * wait)
  41. {
  42. unsigned long flags;
  43. wait->flags |= WQ_FLAG_EXCLUSIVE;
  44. wq_write_lock_irqsave(&q->lock, flags);
  45. __add_wait_queue_tail(q, wait);
  46. wq_write_unlock_irqrestore(&q->lock, flags);
  47. }
  48. void remove_wait_queue(wait_queue_head_t *q, wait_queue_t * wait)
  49. {
  50. unsigned long flags;
  51. wq_write_lock_irqsave(&q->lock, flags);
  52. __remove_wait_queue(q, wait);
  53. wq_write_unlock_irqrestore(&q->lock, flags);
  54. }
  55. void __init fork_init(unsigned long mempages)
  56. {
  57. /*
  58.  * The default maximum number of threads is set to a safe
  59.  * value: the thread structures can take up at most half
  60.  * of memory.
  61.  */
  62. #if THREAD_SIZE > PAGE_SIZE
  63. max_threads = mempages / (THREAD_SIZE/PAGE_SIZE) / 8;
  64. #else
  65. max_threads = (mempages * PAGE_SIZE) / (8 * THREAD_SIZE);
  66. #endif
  67. init_task.rlim[RLIMIT_NPROC].rlim_cur = max_threads/2;
  68. init_task.rlim[RLIMIT_NPROC].rlim_max = max_threads/2;
  69. }
  70. /* Protects next_safe and last_pid. */
  71. spinlock_t lastpid_lock = SPIN_LOCK_UNLOCKED;
  72. static int get_pid(unsigned long flags)
  73. {
  74. static int next_safe = PID_MAX;
  75. struct task_struct *p;
  76. int pid;
  77. if (flags & CLONE_PID)
  78. return current->pid;
  79. spin_lock(&lastpid_lock);
  80. if((++last_pid) & 0xffff8000) {
  81. last_pid = 300; /* Skip daemons etc. */
  82. goto inside;
  83. }
  84. if(last_pid >= next_safe) {
  85. inside:
  86. next_safe = PID_MAX;
  87. read_lock(&tasklist_lock);
  88. repeat:
  89. for_each_task(p) {
  90. if(p->pid == last_pid ||
  91.    p->pgrp == last_pid ||
  92.    p->tgid == last_pid ||
  93.    p->session == last_pid) {
  94. if(++last_pid >= next_safe) {
  95. if(last_pid & 0xffff8000)
  96. last_pid = 300;
  97. next_safe = PID_MAX;
  98. }
  99. goto repeat;
  100. }
  101. if(p->pid > last_pid && next_safe > p->pid)
  102. next_safe = p->pid;
  103. if(p->pgrp > last_pid && next_safe > p->pgrp)
  104. next_safe = p->pgrp;
  105. if(p->session > last_pid && next_safe > p->session)
  106. next_safe = p->session;
  107. }
  108. read_unlock(&tasklist_lock);
  109. }
  110. pid = last_pid;
  111. spin_unlock(&lastpid_lock);
  112. return pid;
  113. }
  114. static inline int dup_mmap(struct mm_struct * mm)
  115. {
  116. struct vm_area_struct * mpnt, *tmp, **pprev;
  117. int retval;
  118. flush_cache_mm(current->mm);
  119. mm->locked_vm = 0;
  120. mm->mmap = NULL;
  121. mm->mmap_cache = NULL;
  122. mm->map_count = 0;
  123. mm->rss = 0;
  124. mm->cpu_vm_mask = 0;
  125. mm->swap_address = 0;
  126. pprev = &mm->mmap;
  127. /*
  128.  * Add it to the mmlist after the parent.
  129.  * Doing it this way means that we can order the list,
  130.  * and fork() won't mess up the ordering significantly.
  131.  * Add it first so that swapoff can see any swap entries.
  132.  */
  133. spin_lock(&mmlist_lock);
  134. list_add(&mm->mmlist, &current->mm->mmlist);
  135. mmlist_nr++;
  136. spin_unlock(&mmlist_lock);
  137. for (mpnt = current->mm->mmap ; mpnt ; mpnt = mpnt->vm_next) {
  138. struct file *file;
  139. retval = -ENOMEM;
  140. if(mpnt->vm_flags & VM_DONTCOPY)
  141. continue;
  142. tmp = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL);
  143. if (!tmp)
  144. goto fail_nomem;
  145. *tmp = *mpnt;
  146. tmp->vm_flags &= ~VM_LOCKED;
  147. tmp->vm_mm = mm;
  148. tmp->vm_next = NULL;
  149. file = tmp->vm_file;
  150. if (file) {
  151. struct inode *inode = file->f_dentry->d_inode;
  152. get_file(file);
  153. if (tmp->vm_flags & VM_DENYWRITE)
  154. atomic_dec(&inode->i_writecount);
  155.       
  156. /* insert tmp into the share list, just after mpnt */
  157. spin_lock(&inode->i_mapping->i_shared_lock);
  158. if((tmp->vm_next_share = mpnt->vm_next_share) != NULL)
  159. mpnt->vm_next_share->vm_pprev_share =
  160. &tmp->vm_next_share;
  161. mpnt->vm_next_share = tmp;
  162. tmp->vm_pprev_share = &mpnt->vm_next_share;
  163. spin_unlock(&inode->i_mapping->i_shared_lock);
  164. }
  165. /*
  166.  * Link in the new vma and copy the page table entries:
  167.  * link in first so that swapoff can see swap entries.
  168.  */
  169. spin_lock(&mm->page_table_lock);
  170. *pprev = tmp;
  171. pprev = &tmp->vm_next;
  172. mm->map_count++;
  173. retval = copy_page_range(mm, current->mm, tmp);
  174. spin_unlock(&mm->page_table_lock);
  175. if (tmp->vm_ops && tmp->vm_ops->open)
  176. tmp->vm_ops->open(tmp);
  177. if (retval)
  178. goto fail_nomem;
  179. }
  180. retval = 0;
  181. build_mmap_rb(mm);
  182. fail_nomem:
  183. flush_tlb_mm(current->mm);
  184. memc_update_mm(mm);
  185. return retval;
  186. }
  187. spinlock_t mmlist_lock __cacheline_aligned = SPIN_LOCK_UNLOCKED;
  188. int mmlist_nr;
  189. #define allocate_mm() (kmem_cache_alloc(mm_cachep, SLAB_KERNEL))
  190. #define free_mm(mm) (kmem_cache_free(mm_cachep, (mm)))
  191. static struct mm_struct * mm_init(struct mm_struct * mm)
  192. {
  193. atomic_set(&mm->mm_users, 1);
  194. atomic_set(&mm->mm_count, 1);
  195. init_rwsem(&mm->mmap_sem);
  196. mm->page_table_lock = SPIN_LOCK_UNLOCKED;
  197. mm->pgd = pgd_alloc(mm);
  198. mm->def_flags = 0;
  199. if (mm->pgd)
  200. return mm;
  201. free_mm(mm);
  202. return NULL;
  203. }
  204. /*
  205.  * Allocate and initialize an mm_struct.
  206.  */
  207. struct mm_struct * mm_alloc(void)
  208. {
  209. struct mm_struct * mm;
  210. mm = allocate_mm();
  211. if (mm) {
  212. memset(mm, 0, sizeof(*mm));
  213. return mm_init(mm);
  214. }
  215. return NULL;
  216. }
  217. /*
  218.  * Called when the last reference to the mm
  219.  * is dropped: either by a lazy thread or by
  220.  * mmput. Free the page directory and the mm.
  221.  */
  222. inline void __mmdrop(struct mm_struct *mm)
  223. {
  224. if (mm == &init_mm) BUG();
  225. pgd_free(mm->pgd);
  226. destroy_context(mm);
  227. free_mm(mm);
  228. }
  229. /*
  230.  * Decrement the use count and release all resources for an mm.
  231.  */
  232. void mmput(struct mm_struct *mm)
  233. {
  234. if (atomic_dec_and_lock(&mm->mm_users, &mmlist_lock)) {
  235. extern struct mm_struct *swap_mm;
  236. if (swap_mm == mm)
  237. swap_mm = list_entry(mm->mmlist.next, struct mm_struct, mmlist);
  238. list_del(&mm->mmlist);
  239. mmlist_nr--;
  240. spin_unlock(&mmlist_lock);
  241. exit_mmap(mm);
  242. mmdrop(mm);
  243. }
  244. }
  245. /* Please note the differences between mmput and mm_release.
  246.  * mmput is called whenever we stop holding onto a mm_struct,
  247.  * error success whatever.
  248.  *
  249.  * mm_release is called after a mm_struct has been removed
  250.  * from the current process.
  251.  *
  252.  * This difference is important for error handling, when we
  253.  * only half set up a mm_struct for a new process and need to restore
  254.  * the old one.  Because we mmput the new mm_struct before
  255.  * restoring the old one. . .
  256.  * Eric Biederman 10 January 1998
  257.  */
  258. void mm_release(void)
  259. {
  260. struct task_struct *tsk = current;
  261. struct completion *vfork_done = tsk->vfork_done;
  262. /* notify parent sleeping on vfork() */
  263. if (vfork_done) {
  264. tsk->vfork_done = NULL;
  265. complete(vfork_done);
  266. }
  267. }
  268. static int copy_mm(unsigned long clone_flags, struct task_struct * tsk)
  269. {
  270. struct mm_struct * mm, *oldmm;
  271. int retval;
  272. tsk->min_flt = tsk->maj_flt = 0;
  273. tsk->cmin_flt = tsk->cmaj_flt = 0;
  274. tsk->nswap = tsk->cnswap = 0;
  275. tsk->mm = NULL;
  276. tsk->active_mm = NULL;
  277. /*
  278.  * Are we cloning a kernel thread?
  279.  *
  280.  * We need to steal a active VM for that..
  281.  */
  282. oldmm = current->mm;
  283. if (!oldmm)
  284. return 0;
  285. if (clone_flags & CLONE_VM) {
  286. atomic_inc(&oldmm->mm_users);
  287. mm = oldmm;
  288. goto good_mm;
  289. }
  290. retval = -ENOMEM;
  291. mm = allocate_mm();
  292. if (!mm)
  293. goto fail_nomem;
  294. /* Copy the current MM stuff.. */
  295. memcpy(mm, oldmm, sizeof(*mm));
  296. if (!mm_init(mm))
  297. goto fail_nomem;
  298. down_write(&oldmm->mmap_sem);
  299. retval = dup_mmap(mm);
  300. up_write(&oldmm->mmap_sem);
  301. if (retval)
  302. goto free_pt;
  303. /*
  304.  * child gets a private LDT (if there was an LDT in the parent)
  305.  */
  306. copy_segments(tsk, mm);
  307. if (init_new_context(tsk,mm))
  308. goto free_pt;
  309. good_mm:
  310. tsk->mm = mm;
  311. tsk->active_mm = mm;
  312. return 0;
  313. free_pt:
  314. mmput(mm);
  315. fail_nomem:
  316. return retval;
  317. }
  318. static inline struct fs_struct *__copy_fs_struct(struct fs_struct *old)
  319. {
  320. struct fs_struct *fs = kmem_cache_alloc(fs_cachep, GFP_KERNEL);
  321. /* We don't need to lock fs - think why ;-) */
  322. if (fs) {
  323. atomic_set(&fs->count, 1);
  324. fs->lock = RW_LOCK_UNLOCKED;
  325. fs->umask = old->umask;
  326. read_lock(&old->lock);
  327. fs->rootmnt = mntget(old->rootmnt);
  328. fs->root = dget(old->root);
  329. fs->pwdmnt = mntget(old->pwdmnt);
  330. fs->pwd = dget(old->pwd);
  331. if (old->altroot) {
  332. fs->altrootmnt = mntget(old->altrootmnt);
  333. fs->altroot = dget(old->altroot);
  334. } else {
  335. fs->altrootmnt = NULL;
  336. fs->altroot = NULL;
  337. }
  338. read_unlock(&old->lock);
  339. }
  340. return fs;
  341. }
  342. struct fs_struct *copy_fs_struct(struct fs_struct *old)
  343. {
  344. return __copy_fs_struct(old);
  345. }
  346. static inline int copy_fs(unsigned long clone_flags, struct task_struct * tsk)
  347. {
  348. if (clone_flags & CLONE_FS) {
  349. atomic_inc(&current->fs->count);
  350. return 0;
  351. }
  352. tsk->fs = __copy_fs_struct(current->fs);
  353. if (!tsk->fs)
  354. return -1;
  355. return 0;
  356. }
  357. static int count_open_files(struct files_struct *files, int size)
  358. {
  359. int i;
  360. /* Find the last open fd */
  361. for (i = size/(8*sizeof(long)); i > 0; ) {
  362. if (files->open_fds->fds_bits[--i])
  363. break;
  364. }
  365. i = (i+1) * 8 * sizeof(long);
  366. return i;
  367. }
  368. static int copy_files(unsigned long clone_flags, struct task_struct * tsk)
  369. {
  370. struct files_struct *oldf, *newf;
  371. struct file **old_fds, **new_fds;
  372. int open_files, nfds, size, i, error = 0;
  373. /*
  374.  * A background process may not have any files ...
  375.  */
  376. oldf = current->files;
  377. if (!oldf)
  378. goto out;
  379. if (clone_flags & CLONE_FILES) {
  380. atomic_inc(&oldf->count);
  381. goto out;
  382. }
  383. tsk->files = NULL;
  384. error = -ENOMEM;
  385. newf = kmem_cache_alloc(files_cachep, SLAB_KERNEL);
  386. if (!newf) 
  387. goto out;
  388. atomic_set(&newf->count, 1);
  389. newf->file_lock     = RW_LOCK_UNLOCKED;
  390. newf->next_fd     = 0;
  391. newf->max_fds     = NR_OPEN_DEFAULT;
  392. newf->max_fdset     = __FD_SETSIZE;
  393. newf->close_on_exec = &newf->close_on_exec_init;
  394. newf->open_fds     = &newf->open_fds_init;
  395. newf->fd     = &newf->fd_array[0];
  396. /* We don't yet have the oldf readlock, but even if the old
  397.            fdset gets grown now, we'll only copy up to "size" fds */
  398. size = oldf->max_fdset;
  399. if (size > __FD_SETSIZE) {
  400. newf->max_fdset = 0;
  401. write_lock(&newf->file_lock);
  402. error = expand_fdset(newf, size-1);
  403. write_unlock(&newf->file_lock);
  404. if (error)
  405. goto out_release;
  406. }
  407. read_lock(&oldf->file_lock);
  408. open_files = count_open_files(oldf, size);
  409. /*
  410.  * Check whether we need to allocate a larger fd array.
  411.  * Note: we're not a clone task, so the open count won't
  412.  * change.
  413.  */
  414. nfds = NR_OPEN_DEFAULT;
  415. if (open_files > nfds) {
  416. read_unlock(&oldf->file_lock);
  417. newf->max_fds = 0;
  418. write_lock(&newf->file_lock);
  419. error = expand_fd_array(newf, open_files-1);
  420. write_unlock(&newf->file_lock);
  421. if (error) 
  422. goto out_release;
  423. nfds = newf->max_fds;
  424. read_lock(&oldf->file_lock);
  425. }
  426. old_fds = oldf->fd;
  427. new_fds = newf->fd;
  428. memcpy(newf->open_fds->fds_bits, oldf->open_fds->fds_bits, open_files/8);
  429. memcpy(newf->close_on_exec->fds_bits, oldf->close_on_exec->fds_bits, open_files/8);
  430. for (i = open_files; i != 0; i--) {
  431. struct file *f = *old_fds++;
  432. if (f)
  433. get_file(f);
  434. *new_fds++ = f;
  435. }
  436. read_unlock(&oldf->file_lock);
  437. /* compute the remainder to be cleared */
  438. size = (newf->max_fds - open_files) * sizeof(struct file *);
  439. /* This is long word aligned thus could use a optimized version */ 
  440. memset(new_fds, 0, size); 
  441. if (newf->max_fdset > open_files) {
  442. int left = (newf->max_fdset-open_files)/8;
  443. int start = open_files / (8 * sizeof(unsigned long));
  444. memset(&newf->open_fds->fds_bits[start], 0, left);
  445. memset(&newf->close_on_exec->fds_bits[start], 0, left);
  446. }
  447. tsk->files = newf;
  448. error = 0;
  449. out:
  450. return error;
  451. out_release:
  452. free_fdset (newf->close_on_exec, newf->max_fdset);
  453. free_fdset (newf->open_fds, newf->max_fdset);
  454. kmem_cache_free(files_cachep, newf);
  455. goto out;
  456. }
  457. static inline int copy_sighand(unsigned long clone_flags, struct task_struct * tsk)
  458. {
  459. struct signal_struct *sig;
  460. if (clone_flags & CLONE_SIGHAND) {
  461. atomic_inc(&current->sig->count);
  462. return 0;
  463. }
  464. sig = kmem_cache_alloc(sigact_cachep, GFP_KERNEL);
  465. tsk->sig = sig;
  466. if (!sig)
  467. return -1;
  468. spin_lock_init(&sig->siglock);
  469. atomic_set(&sig->count, 1);
  470. memcpy(tsk->sig->action, current->sig->action, sizeof(tsk->sig->action));
  471. return 0;
  472. }
  473. static inline void copy_flags(unsigned long clone_flags, struct task_struct *p)
  474. {
  475. unsigned long new_flags = p->flags;
  476. new_flags &= ~(PF_SUPERPRIV | PF_USEDFPU);
  477. new_flags |= PF_FORKNOEXEC;
  478. if (!(clone_flags & CLONE_PTRACE))
  479. p->ptrace = 0;
  480. p->flags = new_flags;
  481. }
  482. /*
  483.  *  Ok, this is the main fork-routine. It copies the system process
  484.  * information (task[nr]) and sets up the necessary registers. It also
  485.  * copies the data segment in its entirety.  The "stack_start" and
  486.  * "stack_top" arguments are simply passed along to the platform
  487.  * specific copy_thread() routine.  Most platforms ignore stack_top.
  488.  * For an example that's using stack_top, see
  489.  * arch/ia64/kernel/process.c.
  490.  */
  491. int do_fork(unsigned long clone_flags, unsigned long stack_start,
  492.     struct pt_regs *regs, unsigned long stack_size)
  493. {
  494. int retval;
  495. struct task_struct *p;
  496. struct completion vfork;
  497. retval = -EPERM;
  498. /* 
  499.  * CLONE_PID is only allowed for the initial SMP swapper
  500.  * calls
  501.  */
  502. if (clone_flags & CLONE_PID) {
  503. if (current->pid)
  504. goto fork_out;
  505. }
  506. retval = -ENOMEM;
  507. p = alloc_task_struct();
  508. if (!p)
  509. goto fork_out;
  510. *p = *current;
  511. retval = -EAGAIN;
  512. /*
  513.  * Check if we are over our maximum process limit, but be sure to
  514.  * exclude root. This is needed to make it possible for login and
  515.  * friends to set the per-user process limit to something lower
  516.  * than the amount of processes root is running. -- Rik
  517.  */
  518. if (atomic_read(&p->user->processes) >= p->rlim[RLIMIT_NPROC].rlim_cur
  519.               && !capable(CAP_SYS_ADMIN) && !capable(CAP_SYS_RESOURCE))
  520. goto bad_fork_free;
  521. atomic_inc(&p->user->__count);
  522. atomic_inc(&p->user->processes);
  523. /*
  524.  * Counter increases are protected by
  525.  * the kernel lock so nr_threads can't
  526.  * increase under us (but it may decrease).
  527.  */
  528. if (nr_threads >= max_threads)
  529. goto bad_fork_cleanup_count;
  530. get_exec_domain(p->exec_domain);
  531. if (p->binfmt && p->binfmt->module)
  532. __MOD_INC_USE_COUNT(p->binfmt->module);
  533. p->did_exec = 0;
  534. p->swappable = 0;
  535. p->state = TASK_UNINTERRUPTIBLE;
  536. copy_flags(clone_flags, p);
  537. p->pid = get_pid(clone_flags);
  538. p->run_list.next = NULL;
  539. p->run_list.prev = NULL;
  540. p->p_cptr = NULL;
  541. init_waitqueue_head(&p->wait_chldexit);
  542. p->vfork_done = NULL;
  543. if (clone_flags & CLONE_VFORK) {
  544. p->vfork_done = &vfork;
  545. init_completion(&vfork);
  546. }
  547. spin_lock_init(&p->alloc_lock);
  548. p->sigpending = 0;
  549. init_sigpending(&p->pending);
  550. p->it_real_value = p->it_virt_value = p->it_prof_value = 0;
  551. p->it_real_incr = p->it_virt_incr = p->it_prof_incr = 0;
  552. init_timer(&p->real_timer);
  553. p->real_timer.data = (unsigned long) p;
  554. p->leader = 0; /* session leadership doesn't inherit */
  555. p->tty_old_pgrp = 0;
  556. p->times.tms_utime = p->times.tms_stime = 0;
  557. p->times.tms_cutime = p->times.tms_cstime = 0;
  558. #ifdef CONFIG_SMP
  559. {
  560. int i;
  561. p->cpus_runnable = ~0UL;
  562. p->processor = current->processor;
  563. /* ?? should we just memset this ?? */
  564. for(i = 0; i < smp_num_cpus; i++)
  565. p->per_cpu_utime[i] = p->per_cpu_stime[i] = 0;
  566. spin_lock_init(&p->sigmask_lock);
  567. }
  568. #endif
  569. p->lock_depth = -1; /* -1 = no lock */
  570. p->start_time = jiffies;
  571. INIT_LIST_HEAD(&p->local_pages);
  572. retval = -ENOMEM;
  573. /* copy all the process information */
  574. if (copy_files(clone_flags, p))
  575. goto bad_fork_cleanup;
  576. if (copy_fs(clone_flags, p))
  577. goto bad_fork_cleanup_files;
  578. if (copy_sighand(clone_flags, p))
  579. goto bad_fork_cleanup_fs;
  580. if (copy_mm(clone_flags, p))
  581. goto bad_fork_cleanup_sighand;
  582. retval = copy_thread(0, clone_flags, stack_start, stack_size, p, regs);
  583. if (retval)
  584. goto bad_fork_cleanup_mm;
  585. p->semundo = NULL;
  586. /* Our parent execution domain becomes current domain
  587.    These must match for thread signalling to apply */
  588.    
  589. p->parent_exec_id = p->self_exec_id;
  590. /* ok, now we should be set up.. */
  591. p->swappable = 1;
  592. p->exit_signal = clone_flags & CSIGNAL;
  593. p->pdeath_signal = 0;
  594. /*
  595.  * "share" dynamic priority between parent and child, thus the
  596.  * total amount of dynamic priorities in the system doesnt change,
  597.  * more scheduling fairness. This is only important in the first
  598.  * timeslice, on the long run the scheduling behaviour is unchanged.
  599.  */
  600. p->counter = (current->counter + 1) >> 1;
  601. current->counter >>= 1;
  602. if (!current->counter)
  603. current->need_resched = 1;
  604. /*
  605.  * Ok, add it to the run-queues and make it
  606.  * visible to the rest of the system.
  607.  *
  608.  * Let it rip!
  609.  */
  610. retval = p->pid;
  611. p->tgid = retval;
  612. INIT_LIST_HEAD(&p->thread_group);
  613. /* Need tasklist lock for parent etc handling! */
  614. write_lock_irq(&tasklist_lock);
  615. /* CLONE_PARENT and CLONE_THREAD re-use the old parent */
  616. p->p_opptr = current->p_opptr;
  617. p->p_pptr = current->p_pptr;
  618. if (!(clone_flags & (CLONE_PARENT | CLONE_THREAD))) {
  619. p->p_opptr = current;
  620. if (!(p->ptrace & PT_PTRACED))
  621. p->p_pptr = current;
  622. }
  623. if (clone_flags & CLONE_THREAD) {
  624. p->tgid = current->tgid;
  625. list_add(&p->thread_group, &current->thread_group);
  626. }
  627. SET_LINKS(p);
  628. hash_pid(p);
  629. nr_threads++;
  630. write_unlock_irq(&tasklist_lock);
  631. if (p->ptrace & PT_PTRACED)
  632. send_sig(SIGSTOP, p, 1);
  633. wake_up_process(p); /* do this last */
  634. ++total_forks;
  635. if (clone_flags & CLONE_VFORK)
  636. wait_for_completion(&vfork);
  637. fork_out:
  638. return retval;
  639. bad_fork_cleanup_mm:
  640. exit_mm(p);
  641. bad_fork_cleanup_sighand:
  642. exit_sighand(p);
  643. bad_fork_cleanup_fs:
  644. exit_fs(p); /* blocking */
  645. bad_fork_cleanup_files:
  646. exit_files(p); /* blocking */
  647. bad_fork_cleanup:
  648. put_exec_domain(p->exec_domain);
  649. if (p->binfmt && p->binfmt->module)
  650. __MOD_DEC_USE_COUNT(p->binfmt->module);
  651. bad_fork_cleanup_count:
  652. atomic_dec(&p->user->processes);
  653. free_uid(p->user);
  654. bad_fork_free:
  655. free_task_struct(p);
  656. goto fork_out;
  657. }
  658. /* SLAB cache for signal_struct structures (tsk->sig) */
  659. kmem_cache_t *sigact_cachep;
  660. /* SLAB cache for files_struct structures (tsk->files) */
  661. kmem_cache_t *files_cachep;
  662. /* SLAB cache for fs_struct structures (tsk->fs) */
  663. kmem_cache_t *fs_cachep;
  664. /* SLAB cache for vm_area_struct structures */
  665. kmem_cache_t *vm_area_cachep;
  666. /* SLAB cache for mm_struct structures (tsk->mm) */
  667. kmem_cache_t *mm_cachep;
  668. void __init proc_caches_init(void)
  669. {
  670. sigact_cachep = kmem_cache_create("signal_act",
  671. sizeof(struct signal_struct), 0,
  672. SLAB_HWCACHE_ALIGN, NULL, NULL);
  673. if (!sigact_cachep)
  674. panic("Cannot create signal action SLAB cache");
  675. files_cachep = kmem_cache_create("files_cache", 
  676.  sizeof(struct files_struct), 0, 
  677.  SLAB_HWCACHE_ALIGN, NULL, NULL);
  678. if (!files_cachep) 
  679. panic("Cannot create files SLAB cache");
  680. fs_cachep = kmem_cache_create("fs_cache", 
  681.  sizeof(struct fs_struct), 0, 
  682.  SLAB_HWCACHE_ALIGN, NULL, NULL);
  683. if (!fs_cachep) 
  684. panic("Cannot create fs_struct SLAB cache");
  685.  
  686. vm_area_cachep = kmem_cache_create("vm_area_struct",
  687. sizeof(struct vm_area_struct), 0,
  688. SLAB_HWCACHE_ALIGN, NULL, NULL);
  689. if(!vm_area_cachep)
  690. panic("vma_init: Cannot alloc vm_area_struct SLAB cache");
  691. mm_cachep = kmem_cache_create("mm_struct",
  692. sizeof(struct mm_struct), 0,
  693. SLAB_HWCACHE_ALIGN, NULL, NULL);
  694. if(!mm_cachep)
  695. panic("vma_init: Cannot alloc mm_struct SLAB cache");
  696. }