Specifically, how does fork() handle dynamically allocated memory from malloc() in Linux?

后端 未结 4 660
故里飘歌
故里飘歌 2020-12-05 06:39

I have a program with a parent and a child process. Before the fork(), the parent process called malloc() and filled in an array with some data. After the fork(), the chil

相关标签:
4条回答
  • 2020-12-05 07:12

    The example doesn't work because the parent is not updated by the child. Here's a solution:

    #include <sys/types.h>
    #include <sys/ipc.h>
    #include <sys/shm.h>
    #include <sys/stat.h>
    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    #include <unistd.h>
    #include <sys/wait.h>
    
    typedef struct
    {
      int id;
      size_t size;
    } shm_t;
    
    shm_t *shm_new(size_t size)
    {
      shm_t *shm = calloc(1, sizeof *shm);
      shm->size = size;
    
      if ((shm->id = shmget(IPC_PRIVATE, size, IPC_CREAT | IPC_EXCL | S_IRUSR | S_IWUSR)) < 0)
      {
        perror("shmget");
        free(shm);
        return NULL;
      }
    
      return shm;
    }
    
    void shm_write(shm_t *shm, void *data)
    {
      void *shm_data;
    
      if ((shm_data = shmat(shm->id, NULL, 0)) == (void *) -1)
      {
        perror("write");
        return;
      }
    
      memcpy(shm_data, data, shm->size);
      shmdt(shm_data);
    }
    
    void shm_read(void *data, shm_t *shm)
    {
      void *shm_data;
    
      if ((shm_data = shmat(shm->id, NULL, 0)) == (void *) -1)
      {
        perror("read");
        return;
      }
      memcpy(data, shm_data, shm->size);
      shmdt(shm_data);
    }
    
    void shm_del(shm_t *shm)
    {
      shmctl(shm->id, IPC_RMID, 0);
      free(shm);
    }
    
    int main()
    {
      void *array = malloc(20);
      strcpy((char *) array, "Hello");
      printf("parent: %s\n", (char *) array);
      shm_t *shm = shm_new(sizeof array);
    
      int pid;
      if ((pid = fork()) == 0)
      { /* child */
        strcpy((char *) array, "Goodbye");
        shm_write(shm, array);
        printf("child: %s\n", (char *) array);
        return 0;
      }
      /* Wait for child to return */
      int status;
      while (wait(&status) != pid);
      /* */
      shm_read(array, shm);
      /* Parent is updated by child */
      printf("parent: %s\n", (char *) array);
      shm_del(shm);
      free(array);
      return 0;
    }
    
    0 讨论(0)
  • Each page that is allocated for the process (be it a virtual memory page that has the stack on it or the heap) is copied for the forked process to be able to access it.

    Actually, it is not copied right at the start, it is set to Copy-on-Write, meaning once one of the processes (parent or child) try to modify a page it is copied so that they will not harm one-another, and still have all the data from the point of fork() accessible to them.

    For example, the code pages, those the actual executable was mapped to in memory, are usually read-only and thus are reused among all the forked processes - they will not be copied again, since no one writes there, only read, and so copy-on-write will never be needed.

    More information is available here and here.

    0 讨论(0)
  • 2020-12-05 07:25

    The short answer is 'dirty on write' - the longer answer is .. a lot longer.

    But for all intends and purposes - the working model which at C level is safe to assume is that just after the fork() the two processes are absolutely identical -- i.e. the child gets a 100% exact copy -- (but for a wee bit around the return value of fork()) - and then start to diverge as each side modifies its memory, stack and heaps.

    So your conclusion is slightly off - child starts off with the same data as parent copied into its own space - then modifies it - and see s it as modified - while the parent continues with its own copy.

    In reality things are bit more complex - as it tries to avoid a complete copy by doing something dirty; avoiding to copy until it has to.

    Dw.

    0 讨论(0)
  • 2020-12-05 07:28

    After a fork the child is completely independent from the parent, but may inherit certain things that are copies of the parent. In the case of the heap, the child will conceptually have a copy of the parents heap at the time of the fork. However, modifications to the head in the child's address space will only modify the child's copy (e.g. through copy-on-write).

    As for the documentation: I've noticed that documentation will usually state that everything is copied, except for blah, blah blah.

    0 讨论(0)
提交回复
热议问题