/* Copyright (c) 2020 Advanced Micro Devices, Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef NCCL_SHM_OBJECT_H_ #define NCCL_SHM_OBJECT_H_ #include #include #include #include #include #include #include "MsgQueue.h" #include "nccl.h" #include "core.h" #include "shm.h" // ShmObject abstracts away the nitty-gritty when multiple processes need to handle opening a shared // memory object at the same time. static ncclResult_t shmSetupExclusive(const char* shmname, const int shmsize, int* fd, void** ptr, int create) { *fd = shm_open(shmname, O_CREAT | O_RDWR | O_EXCL, S_IRUSR | S_IWUSR); if (*fd == -1) return ncclSystemError; if (create) SYSCHECK(shm_allocate(*fd, shmsize), "posix_fallocate"); SYSCHECK(shm_map(*fd, shmsize, ptr), "mmap"); close(*fd); *fd = -1; if (create) memset(*ptr, 0, shmsize); return ncclSuccess; } template class ShmObject { public: ShmObject(size_t size, std::string const& fileName, int rank, int numRanks, int projid) : m_shmSize(size), m_shmName(fileName), m_rank(rank), m_numRanks(numRanks), m_projid(projid), m_alloc(false), m_shmPtr(nullptr) {} ShmObject() : m_shmSize(0), m_shmName(""), m_rank(0), m_numRanks(0), m_projid(0), m_alloc(false), m_shmPtr(nullptr) {} ~ShmObject() {} ncclResult_t Open(); ncclResult_t Close() { if (m_alloc) { SYSCHECK(munmap(m_shmPtr, m_shmSize), "munmap"); } return ncclSuccess; } T*& Get() { return m_shmPtr; } protected: ncclResult_t BroadcastMessage(mqd_t& mq_desc, bool pass) const { char msg_text[1]; msg_text[0] = (pass == 0 ? 'F': 'P'); for (int rank = 0; rank < m_numRanks; rank++) { if (rank == m_rank) continue; NCCLCHECK(MsgQueueSend(mq_desc, &msg_text[0], sizeof(msg_text))); } return ncclSuccess; } ncclResult_t BroadcastAndCloseMessageQueue(mqd_t& mq_desc, bool pass) { ncclResult_t res; NCCLCHECKGOTO(BroadcastMessage(mq_desc, pass), res, dropback); NCCLCHECKGOTO(MsgQueueWaitUntilEmpty(mq_desc), res, dropback); NCCLCHECK(MsgQueueClose(m_shmName, mq_desc, true)); return ncclSuccess; dropback: WARN("Root rank unable to broadcast across message queue. Closing message queue."); NCCLCHECK(MsgQueueClose(m_shmName, mq_desc, true)); return ncclSystemError; } // tag for dispatch template struct OpenTag{}; static ncclResult_t InitIfSemaphore(OpenTag tag); ncclResult_t InitIfSemaphore(OpenTag tag); static ncclResult_t InitIfSemaphore(OpenTag tag); ncclResult_t InitIfSemaphore(OpenTag tag); static ncclResult_t InitIfSemaphore(OpenTag> tag); size_t m_shmSize; std::string m_shmName; int m_rank; int m_numRanks; int m_projid; bool m_alloc; T* m_shmPtr; }; template ncclResult_t ShmObject::Open() { mqd_t mq_desc; if (m_alloc == false) { int shmFd; INFO(NCCL_INIT, "Rank %d Initializing message queue for %s\n", m_rank, m_shmName.c_str()); NCCLCHECK(MsgQueueGetId(m_shmName, false, mq_desc)); if (m_rank == 0) { ncclResult_t resultSetup = shmSetupExclusive(m_shmName.c_str(), m_shmSize, &shmFd, (void**)&m_shmPtr, 1); ncclResult_t resultSemInit = InitIfSemaphore(OpenTag{}); if ((resultSetup != ncclSuccess && errno != EEXIST) || (resultSemInit != ncclSuccess)) { NCCLCHECK(BroadcastAndCloseMessageQueue(mq_desc, false)); WARN("Call to ShmObject::Open in root rank failed : %s", strerror(errno)); if (resultSetup == ncclSuccess) { Close(); } return ncclSystemError; } ncclResult_t result; // Broadcast two sets of messages: one set is consumed by the other ranks to acknowledge root rank // has successfully opened shared memory; second set is consumed by the other ranks to indicate // that they have successfully opened shared memory and root rank can now unlink shared memory NCCLCHECK(BroadcastMessage(mq_desc, true)); NCCLCHECK(BroadcastAndCloseMessageQueue(mq_desc, true)); int retVal = shm_unlink(m_shmName.c_str()); if (retVal == -1 && errno != ENOENT) { WARN("Call to shm_unlink in ShmObject failed : %s", strerror(errno)); return ncclSystemError; } } else { char msg_text[1]; ncclResult_t res; NCCLCHECKGOTO(MsgQueueRecv(mq_desc, &msg_text[0], sizeof(msg_text)), res, dropback); if (msg_text[0] == 'P') { NCCLCHECK(shmSetup(m_shmName.c_str(), m_shmSize, &shmFd, (void**)&m_shmPtr, 0)); NCCLCHECKGOTO(MsgQueueRecv(mq_desc, &msg_text[0], sizeof(msg_text)), res, dropback); NCCLCHECK(MsgQueueClose(m_shmName, mq_desc, false)); } else { NCCLCHECK(MsgQueueClose(m_shmName, mq_desc, false)); WARN("Call to shm_open from non-root rank in ShmObject failed : %s", strerror(errno)); return ncclSystemError; } } m_alloc = true; } else { WARN("Cannot allocate ShmObject twice.\n"); return ncclInvalidUsage; } return ncclSuccess; dropback: WARN("Rank %d failed ShmObject::Open(). Closing message queue.", m_rank); NCCLCHECK(MsgQueueClose(m_shmName, mq_desc, false)); SYSCHECK(shm_unlink(m_shmName.c_str()), "shm_unlink"); NCCLCHECK(Close()); return ncclSystemError; } template ncclResult_t ShmObject::InitIfSemaphore(OpenTag tag) { return ncclSuccess; } template ncclResult_t ShmObject::InitIfSemaphore(OpenTag tag) { return ncclSuccess; } template ncclResult_t ShmObject::InitIfSemaphore(OpenTag tag) { return ncclSuccess; } template ncclResult_t ShmObject::InitIfSemaphore(OpenTag> tag) { return ncclSuccess; } template ncclResult_t ShmObject::InitIfSemaphore(OpenTag tag) { size_t numMutexes = m_shmSize / sizeof(sem_t); for (size_t i = 0; i < numMutexes; i++) { SYSCHECK(sem_init(static_cast(&m_shmPtr[i]), 1, 1), "sem_init"); } return ncclSuccess; } #endif