SST 15.0
Structural Simulation Toolkit
shmparent.h
1// Copyright 2009-2025 NTESS. Under the terms
2// of Contract DE-NA0003525 with NTESS, the U.S.
3// Government retains certain rights in this software.
4//
5// Copyright (c) 2009-2025, NTESS
6// All rights reserved.
7//
8// This file is part of the SST software package. For license
9// information, see the LICENSE file in the top level directory of the
10// distribution.
11
12#ifndef SST_CORE_INTERPROCESS_TUNNEL_SHM_PARENT_H
13#define SST_CORE_INTERPROCESS_TUNNEL_SHM_PARENT_H
14
15#include <cstdio>
16#include <cstdlib>
17#include <cstring>
18#include <errno.h>
19#include <fcntl.h>
20#include <inttypes.h>
21#include <string>
22#include <sys/mman.h>
23#include <sys/stat.h>
24#include <unistd.h>
25
26namespace SST::Core::Interprocess {
27
28/** Class supports an IPC tunnel between two or more processes via posix shared memory
29 * This class creates the tunnel for the parent/master process
30 *
31 * @tparam TunnelType Tunnel definition
32 */
33template <typename TunnelType>
35{
36
37public:
38 /** Parent/master manager for an IPC tunnel
39 * Creates a shared memory region and initializes a
40 * TunnelType data strucgture in the region
41 *
42 * @param comp_id Component ID of owner
43 * @param numBuffers Number of buffers for which we should tunnel
44 * @param bufferSize How large each core's buffer should be
45 * @param expectedChildren How many child processes will connect to the tunnel
46 */
47 SHMParent(uint32_t comp_id, size_t numBuffers, size_t bufferSize, uint32_t expectedChildren = 1) :
48 shmPtr(nullptr),
49 fd(-1)
50 {
51 char key[256];
52 memset(key, '\0', sizeof(key));
53 do {
54 snprintf(key, sizeof(key), "/sst_shmem_%u-%" PRIu32 "-%d", getpid(), comp_id, rand());
55 filename = key;
56
57 fd = shm_open(filename.c_str(), O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
58 /* There's a rare chance that a file we are looking to use exists.
59 * It's unlikely, but perhaps a previous run (with the same PID
60 * and random number) crashed before the * clients all connected.
61 *
62 * So, if we get an error, and the error is EEXIST, try again with
63 * a different random number.
64 */
65 } while ( (fd < 0) && (errno == EEXIST) );
66 if ( fd < 0 ) {
67 // Not using Output because IPC means Output might not be available
68 fprintf(stderr, "Failed to create IPC region '%s': %s\n", filename.c_str(), strerror(errno));
69 exit(1);
70 }
71
72 tunnel = new TunnelType(numBuffers, bufferSize, expectedChildren);
73 shmSize = tunnel->getTunnelSize();
74
75 if ( ftruncate(fd, shmSize) ) {
76 // Not using Output because IPC means Output might not be available
77 fprintf(stderr, "Resizing shared file '%s' failed: %s\n", filename.c_str(), strerror(errno));
78 exit(1);
79 }
80
81 shmPtr = mmap(nullptr, shmSize, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
82 if ( shmPtr == MAP_FAILED ) {
83 // Not using Output because IPC means Output might not be available
84 fprintf(stderr, "mmap failed: %s\n", strerror(errno));
85 exit(1);
86 }
87 memset(shmPtr, '\0', shmSize);
88 tunnel->initialize(shmPtr);
89 }
90
91 /** Destructor */
92 virtual ~SHMParent()
93 {
94 delete tunnel;
95 if ( shmPtr ) {
96 munmap(shmPtr, shmSize);
97 shmPtr = nullptr;
98 shmSize = 0;
99 }
100 if ( fd >= 0 ) {
101 close(fd);
102 fd = -1;
103 }
104 }
105
106 /** returns name of the mmap'd region */
107 const std::string& getRegionName() const { return filename; }
108
109 /** return the created tunnel pointer */
110 TunnelType* getTunnel() { return tunnel; }
111
112private:
113 void* shmPtr;
114 int fd;
115
116 std::string filename;
117 size_t shmSize;
118
119 TunnelType* tunnel;
120};
121
122} // namespace SST::Core::Interprocess
123
124#endif // SST_CORE_INTERPROCESS_TUNNEL_SHM_PARENT_H
TunnelType * getTunnel()
return the created tunnel pointer
Definition shmparent.h:110
const std::string & getRegionName() const
returns name of the mmap'd region
Definition shmparent.h:107
SHMParent(uint32_t comp_id, size_t numBuffers, size_t bufferSize, uint32_t expectedChildren=1)
Parent/master manager for an IPC tunnel Creates a shared memory region and initializes a TunnelType d...
Definition shmparent.h:47
virtual ~SHMParent()
Destructor.
Definition shmparent.h:92