How to Set up Shared Memory in Your Linux and MacOS Programs. (shmget, shmat, shmdt, shmctl, ftok)

Поделиться
HTML-код
  • Опубликовано: 29 июн 2020
  • Patreon ➤ / jacobsorber
    Courses ➤ jacobsorber.thinkific.com
    Website ➤ www.jacobsorber.com
    ---
    How to Set up Shared Memory on Linux and MacOS. (shmget, shmat, shmdt, shmctl, ftok) // This tutorial shows you how to set up shared memory between two or more process in any Unix-style OS, using ftok, shmget, shmat, shmdt, ahd shmctl. Implementation example included.
    Related Videos:
    Shared Memory with mmap: • Simple Shared Memory i...
    How programs get memory: • How processes get more...
    More memory: • Keeping strcpy and mem...
    Make: • Learn make in 60 seconds.
    Cloning processes with fork: • Creating new processes...
    Bit Fields: • Bit Fields in C. What ...
    ***
    Welcome! I post videos that help you learn to program and become a more confident software developer. I cover beginner-to-advanced systems topics ranging from network programming, threads, processes, operating systems, embedded systems and others. My goal is to help you get under-the-hood and better understand how computers work and how you can use them to become stronger students and more capable professional developers.
    About me: I'm a computer scientist, electrical engineer, researcher, and teacher. I specialize in embedded systems, mobile computing, sensor networks, and the Internet of Things. I teach systems and networking courses at Clemson University, where I also lead the PERSIST research lab.
    More about me and what I do:
    www.jacobsorber.com
    people.cs.clemson.edu/~jsorber/
    persist.cs.clemson.edu/
    To Support the Channel:
    + like, subscribe, spread the word
    + contribute via Patreon --- [ / jacobsorber ]
    + rep the channel with nerdy merch --- [teespring.com/stores/jacob-so...]
    Source code is also available to Patreon supporters. --- [jsorber-youtube-source.heroku...]

Комментарии • 99

  • @user-cf5uf9sw1u
    @user-cf5uf9sw1u 3 года назад +3

    Thanks for the awesome content, very well produced.
    I'm literally binge watching the entire channel haha

  • @Jose-tw9bl
    @Jose-tw9bl Год назад +1

    I find your videos incredibly well explained. The drawings and explanations in the begining really help before getting to see actual code.

  • @LDS-Hellgineer
    @LDS-Hellgineer Год назад

    This video saved my soul in a current project.
    Thank you very much, keep it up!!
    greetings from Austria

  • @contactdi8426
    @contactdi8426 Год назад

    That's an awesome explanation! You made is so much easier to understand this :) Thanks a lot Jacob

  • @funkykong9001
    @funkykong9001 3 года назад +4

    I'm loving the new layout and graphic highlighting! This was much easier to follow.

    • @JacobSorber
      @JacobSorber  3 года назад +1

      Glad you like it! Always trying make things a bit easier.

  • @10e999
    @10e999 3 года назад +1

    Great video Jacob.
    To continue in the same subject, I'd like to see some example where share memory is useful.
    Also, are multi process queue implemented with shared memory ?

  • @darshansrinivas6883
    @darshansrinivas6883 Год назад

    Thank you for the explaination !!

  • @ravisinnarkar9706
    @ravisinnarkar9706 3 года назад

    Hi jacob .
    Great video, would really like to learn about epoll in next video

  • @rakeshtm2750
    @rakeshtm2750 3 года назад

    Great knowledge sharing. 😄

  • @mihirluthra7762
    @mihirluthra7762 3 года назад +6

    Great video, would really like to understand semaphores in next.

    • @JacobSorber
      @JacobSorber  3 года назад +2

      Thanks. I'm not 100% when the semaphore video will come out yet, but it's coming.

  • @jojodi
    @jojodi 3 года назад +9

    Prior to the C89 standard, identifiers had a max length of 6. That's probably a big part of the function names.

    • @JacobSorber
      @JacobSorber  3 года назад +5

      Good point. I sometimes think I have repressed those memories. :)

  • @ORagnar
    @ORagnar 3 года назад

    That was excellent!

  • @oscarchivas900
    @oscarchivas900 2 года назад

    Hi Jacob. Thanks for the content. Would this same concept work to share memory between docker containers?

  • @johanronkko4494
    @johanronkko4494 3 года назад +1

    Hi! Love your videos. I would love a video of how to setup a testing environment for C. Is there a testing library for C and how do I set it up? I've heard that some people use C++'s Boost library to test their C code, but I'm not sure if that's the way to go...

  • @monzurulislam3860
    @monzurulislam3860 3 года назад

    Hi Jacob, thanks for the Awsome tutorial. I have a question about the file that we associate with shared memory. If this file(name) is one of the process (executable file) itself, will that may cause any issues??

  • @samikshahanchate3280
    @samikshahanchate3280 3 года назад

    I just wanna say..thank you..thank you so much..this is so helpful

    • @JacobSorber
      @JacobSorber  3 года назад

      You're welcome. Glad I could help.

  • @belesiu
    @belesiu 3 года назад +3

    Is shared memory actually faster than cached disk I/O? Cached I/O, especially if it's memory inside the L1 or L2 cache, seems to be as fast as it gets, right?

  • @jon-sw5yw
    @jon-sw5yw 3 года назад

    wow I just completed my assignment a week ago involving concurrency and shared memory... and you just now post this haha I could've used mmap but I preferred using shmget and shmat for my assignment.

    • @JacobSorber
      @JacobSorber  3 года назад

      Nice. I hope it worked out ok, even though I was slow.

    • @jon-sw5yw
      @jon-sw5yw 3 года назад

      @@JacobSorber No worries it worked out perfectly fine! I actually plan to help my peers by referencing your videos! Keep up the great work!

  • @shrek1412
    @shrek1412 3 года назад +1

    Hi Jacob,
    For ftok system call, the man page written "Today, proj_id is an int, but still only 8 bits are used. Typical
    usage has an ASCII character proj_id, that is why the behavior is said to be undefined when proj_id is zero", but in the example you put the 0 there, I tried several alternatives, it seems fine with 0 or nonzero. Do you know why? Thank you

  • @halavich9672
    @halavich9672 3 года назад

    Outstanding!

  • @artemiocabrillosjr.244
    @artemiocabrillosjr.244 3 года назад +1

    Hi Jacob,
    Good job in making these topics more simplier.
    I am a computer science instructor just like you and I highly recommend your videos to my students.
    Keep it up!

    • @JacobSorber
      @JacobSorber  3 года назад +1

      Thanks, Artemio. I appreciate the support. Let me know if there are topics that you think your students would specifically benefit from.

    • @rajendrasinghnegi1764
      @rajendrasinghnegi1764 10 месяцев назад

      ​@@JacobSorbermake a full c language course videos from beginning to advance level

  • @randomman5280
    @randomman5280 3 года назад

    Very useful. Thanks

  • @awaisansari3430
    @awaisansari3430 3 года назад

    What is the logic behind separating the creation of a shared memory segment and getting a pointer to that memory segment?

  • @user-zh1ry8sm5p
    @user-zh1ry8sm5p Год назад

    8:16 that shmdt cracked me up.

  • @rainfallen1064
    @rainfallen1064 2 года назад

    What’s the difference of using those methods versus using fopen(), and writing and reading from a regular file?

  • @jackeown
    @jackeown 3 года назад +14

    Just an idea of something I'd love to see: make a video about sharing memory but between Python and C.

    • @JacobSorber
      @JacobSorber  3 года назад +10

      That would be fun. It would probably be basically the same mechanism, with some sort of python bindings on it. I'll see what I can do.

    • @patricknagel4649
      @patricknagel4649 3 года назад

      @@JacobSorber Thanks for the great videos. Does one already exist that covers the request of @John McKeown?

  • @gregoryfenn1462
    @gregoryfenn1462 2 года назад

    How do you use shared memory on bare-metal applications (e.g. on an ARM Cortex-A15 core)?

  • @JoeKenyon
    @JoeKenyon 3 года назад +2

    A video on FFT/signal_processing or bluetooth would be cool.

    • @JacobSorber
      @JacobSorber  3 года назад +1

      Thanks. I'll see what I can do.

  • @nickhyland9497
    @nickhyland9497 2 года назад +1

    Pronunciation of “shm” functions is what’s made this video

  • @Ty1er
    @Ty1er 3 года назад

    thanks a lot.

    • @JacobSorber
      @JacobSorber  3 года назад

      You're welcome! Glad you enjoyed it.

  • @michimarz
    @michimarz 3 года назад

    You are the best teacher! Do you actually prefer using VS Code instead of vim, or is it just for those lessons?

    • @JacobSorber
      @JacobSorber  3 года назад +3

      Vim and I have a complicated relationship. Still trying to figure out exactly how to define the relationship. Let's just say I like both for different reasons.

    • @abdullahbinjahed6900
      @abdullahbinjahed6900 2 года назад

      @@JacobSorber lol

  • @pierce8308
    @pierce8308 3 года назад

    It just doesnt feel like in the spirit of "Shared memory". Like all this in effect is doing is allowing shared access of a file that MUST exist on a disk. Although I rewatched the video and the part where you describe that I must not confuse them with mmaping content of a file but from what I get is shmget() is basically doing the same thing as mmap() but guaranteeing that contents of file are not changed.
    Shared memory in essence or what I would normally expect is one process being the host of the memory and other just have access to it like it normally would. For example the earlier tutorials about shared memory for parent-child fit the definition of what is expected. But I think in this shmget method we are introducing uncessary mediators like the file that must access on the disk, and then the particiapting process would intearct with it like they would with a file (but without changing its contents). Seems like a very old and inconvineint shared memory api, because in theory, existence of a mediator (like a file) shouldnt be involved at all during shared memory. It should just work the same as they were in the parent-child scenario
    I would love to hear your thoughts on it and if i said something stupid.

  • @fennexagent8584
    @fennexagent8584 3 года назад

    however this doesn't work from a sandboxed app on mac (shmget gives "operation not permitted").

  • @maverick7615
    @maverick7615 2 года назад

    It may sound dumb but if we are not using a common file as a means of sharing memory between processes, why do we need to specify a correct pathname of a file that must exist on disk?

  • @fisyr
    @fisyr 3 года назад +2

    This is definitely very interesting, but how does one prevent memory leaks in case the program crashes? Does the linux kernel know how to free memory if none of the programs that interacted with it are running or does that block of memory stay inaccessible until reboot?

    • @JacobSorber
      @JacobSorber  3 года назад +2

      You're right. This can get a bit tricky. The memory needs to be explicitly removed with shmctl, so if the program dies, you will have a leak unless you have another process that can clean things up. Depending on the application, it is often possible for one of the involved processes to detect that a process crashed, and make sure that appropriate cleanup happens.

  • @ramanujaamit
    @ramanujaamit Год назад

    In destroy memory block function you wrote get_shared_block(filename,0);
    Shouldn't it be get_shared_block(filename,BLOCK_SIZE);
    Am I wrong?

  • @hossein_haeri
    @hossein_haeri Год назад

    In the future, you may want to use a De-Esser on your audio file.

  • @kathiravankathir3089
    @kathiravankathir3089 3 года назад

    awesome, !!! could you please post a video about how to use semaphores in thread synchronization,,!

    • @JacobSorber
      @JacobSorber  3 года назад +1

      That's the plan. Not sure when it will come out. But, it's coming.

  • @rcmarco3281
    @rcmarco3281 3 года назад

    way better than my Chinese tutor

  • @dduartez99
    @dduartez99 3 года назад

    So this is a implementation via the System V standard/mechanisms, right? POSIX way should be thru mmap and shm_open?

    • @JacobSorber
      @JacobSorber  3 года назад +1

      Yep. I have a few videos on mmap. Probably need another video on shm_open, though.

  • @marcello4258
    @marcello4258 3 года назад +1

    great as always.. but instead of saying unix based you might consider the term POSIX :) ..may linux folks might argue otherwise :P

  • @natiiim6336
    @natiiim6336 2 года назад +1

    in my operative system course they call this 'message queues' and for me, it's so difficult to grasp. They ask to solve problems with threads synchronization first with semaphores and then do the same but with messsage queues.... using this like blocking access tools! AAAAH

  • @jscorpio1987
    @jscorpio1987 3 года назад

    This video can still be helpful for Windows users who use WSL.

    • @JacobSorber
      @JacobSorber  3 года назад

      Thanks for pointing that out. I haven't spent much time with WSL, so I'm often hesitant to make claims about what it does and doesn't support.

  • @flanker53
    @flanker53 Год назад

    Will this work in android ndk ?

  • @funhuninjastudio
    @funhuninjastudio 3 года назад

    Can you make videos for remaking the functions of the standard C libraries. Like making setjmp,longjmp,malloc,free,etc.

    • @JacobSorber
      @JacobSorber  3 года назад

      Yeah, probably. I'll add that to the list. thanks.

  • @randomscribblings
    @randomscribblings 2 года назад

    Maybe I'm an old UN*X hand, but the promise of unified VM/filesystem is that two programs mmaping the _same_ file effectively shared memory.

    • @randomscribblings
      @randomscribblings 2 года назад

      In a way, I would call this "how to play with SYSV shared memory"

  • @hasanalattar9561
    @hasanalattar9561 2 года назад

    hmmmm, @7:33 are you comparing result to casted char * of (-1) ?

    • @hasanalattar9561
      @hasanalattar9561 2 года назад

      shouldnt it be: if (*result == IPC_RESULT_ERROR) ? ..

  • @nagesha5539
    @nagesha5539 2 года назад

    Ok , but how to implement that shared memory functions (shmget()) without using existing header files, I mean implement that header files by your own sir

  • @goksanisil9107
    @goksanisil9107 2 года назад

    What is the idea behind using a FILENAME and ftok to generate a key for the shmget? Why not hardcode a number that both reader and writer agree on?

    • @smrtfasizmu6161
      @smrtfasizmu6161 2 года назад

      I coded along while watching the video and I just wrote
      #define SEMAPHOR_PRODUCER "seemaphor producer"
      And did the same thing for semaphor consumer as well.

  • @zxuiji
    @zxuiji 2 года назад +1

    I'm guessing they were supposed to be pronounced "shared get", "shared ctrl" etc

  • @florianunterfrauner2041
    @florianunterfrauner2041 7 месяцев назад

    Can a bool function return NULL in c? 9:08 (line 52)

  • @obeid_s
    @obeid_s 2 года назад

    i came from Java , No unsigned byte , No accessing Shared Memory,
    Going to C++.
    Thank you.

  • @productiveprogrammer4060
    @productiveprogrammer4060 3 года назад

    Can you plz make a video series in tool chain of gcc or one video on elf file format?

    • @JacobSorber
      @JacobSorber  3 года назад

      What aspects of the toolchain are you most interested in? There are a lot of pieces in there.

    • @productiveprogrammer4060
      @productiveprogrammer4060 3 года назад

      tools that help us to find memory faults like Coredump

    • @productiveprogrammer4060
      @productiveprogrammer4060 3 года назад

      @@JacobSorber Can you also make a video on Program execution sequence , what actually happens when we enter ./a.out or (run any executable file)internally in O.S

  • @60hit99
    @60hit99 3 года назад

    What you mean by associating an address with filename?

    • @JacobSorber
      @JacobSorber  3 года назад

      I mean that the block of shared memory is associated with a filename. So, if a process wants to find the block of memory, it looks it up using the filename. It's simply the mechanism for finding the block. There is no relationship between the shared memory and the contents of the file.

  • @prshntpnd00
    @prshntpnd00 3 года назад

    I can see OBJS=shared_memory.o but you don't have any shared_memory.o .. so this should give error no such file or directory

    • @prshntpnd00
      @prshntpnd00 3 года назад

      Like if I decode it : I am writing filename different .small
      GCC -g -wall -c write.c shared_memory.o -o write.o
      GCC:error: shared_memory.o: no such file or directory
      Consider write.c as writeshmem.c

  • @rafalmichalski4893
    @rafalmichalski4893 3 года назад

    Hello Jacob - great talk !. Could you make some content about Makefiles ?

    • @JacobSorber
      @JacobSorber  3 года назад

      Thanks. I already have some. What aspects of makefiles would you like to see more about?

    • @rafalmichalski4893
      @rafalmichalski4893 3 года назад

      Hello Jacob, due to Makefiles I think following topics to consider:
      - %.c : %.o notations and alternatives if any
      - some defaults rules to write makefile as short as possible with some variables describing comiler, compile/linkage flags
      - how to mix C and C++ build in makefile
      - considering CMake to generate makefiles
      - imvoking one makefile from another if possible

  • @ciph3r836
    @ciph3r836 3 года назад

    I use /tmp/file as a shared mem

  • @j_mkg
    @j_mkg 2 года назад

    very difficult format for compiling as I dont know how to break down your method to compile alternatively - will check out your compile video **make: *** No rule to make target 'writer.elf', needed by 'all'. Stop.**

  • @yassinesafraoui
    @yassinesafraoui 5 месяцев назад

    shmdt, Shared Memory DeTach? duh?

  • @ciph3r836
    @ciph3r836 3 года назад

    How to detect sin wave in a wav audio file

    • @JacobSorber
      @JacobSorber  3 года назад

      Meaning, how to detect a particular frequency, additive noise (sine wave added on top of other signal), or how to detect whether the wave file is a single tone (sine wave)?

    • @ciph3r836
      @ciph3r836 3 года назад

      @@JacobSorber i am trying detect certain pattern . The sound pattern is a sin wave whose length is 0.01 seconds . The sound wave starts with a maximum amplitude but decreases gradually giving it a click sound . When i view the wav file in audacity I can clearly see the two spikes but when i read that file in to a numpy array things get messy . Tried finding the rms valve of 0.01 seconds of audio at a time . I thought I will get a abnormally large rms valve and i get that but i get multiple large rms value in a wav file with just 1 click

    • @ciph3r836
      @ciph3r836 3 года назад

      @@JacobSorber the sin wave is played by speaker and my mic records that so the sin wave is with some noice lke cpu fan,ceiling fan noise or tv noise

    • @JacobSorber
      @JacobSorber  3 года назад

      @@ciph3r836 One option would be to compute an FFT of your audio signal, and look for a spike at the expected frequency.

    • @ciph3r836
      @ciph3r836 3 года назад

      @@JacobSorber sir i just started doing this just minutes earlier. Fft seems to be promising

  • @Nick-lx4fo
    @Nick-lx4fo 2 года назад +1

    What tfok!!??