SST 15.0
Structural Simulation Toolkit
mmapparent.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_MMAP_PARENT_H
13#define SST_CORE_INTERPROCESS_TUNNEL_MMAP_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 an mmap'd file.
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 memory-mapped file and initializes a
40 * TunnelType data structure in the mmap'd 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 * @expectedChildren How many child processes will connect to the tunnel
46 */
47 MMAPParent(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), "/tmp/sst_shmem_%u-%" PRIu32 "-%d", getpid(), comp_id, rand());
55 filename = key;
56
57 fd = 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
67 if ( fd < 0 ) {
68 // Not using Output because IPC means Output might not be available
69 fprintf(stderr, "Failed to create IPC region '%s': %s\n", filename.c_str(), strerror(errno));
70 exit(1);
71 }
72
73 tunnel = new TunnelType(numBuffers, bufferSize, expectedChildren);
74 shmSize = tunnel->getTunnelSize();
75
76 if ( ftruncate(fd, shmSize) ) {
77 // Not using Output because IPC means Output might not be available
78 fprintf(stderr, "Resizing shared file '%s' failed: %s\n", filename.c_str(), strerror(errno));
79 exit(1);
80 }
81
82 shmPtr = mmap(nullptr, shmSize, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
83 if ( shmPtr == MAP_FAILED ) {
84 // Not using Output because IPC means Output might not be available
85 fprintf(stderr, "mmap failed: %s\n", strerror(errno));
86 exit(1);
87 }
88 close(fd);
89
90 memset(shmPtr, '\0', shmSize);
91 tunnel->initialize(shmPtr);
92 }
93
94 /** Destructor */
95 virtual ~MMAPParent()
96 {
97 delete tunnel;
98
99 munmap(shmPtr, shmSize);
100 if ( remove(filename.c_str()) != 0 ) {
101 fprintf(stderr, "Error deleting tunnel file: %s\n", filename.c_str());
102 }
103 }
104
105 /** returns name of the mmap'd file */
106 const std::string& getRegionName() const { return filename; }
107
108 /** return the created tunnel pointer */
109 TunnelType* getTunnel() { return tunnel; }
110
111private:
112 void* shmPtr;
113 int fd;
114
115 std::string filename;
116 size_t shmSize;
117
118 TunnelType* tunnel;
119};
120
121} // namespace SST::Core::Interprocess
122
123#endif // SST_CORE_INTERPROCESS_TUNNEL_MMAP_PARENT_H
TunnelType * getTunnel()
return the created tunnel pointer
Definition mmapparent.h:109
virtual ~MMAPParent()
Destructor.
Definition mmapparent.h:95
MMAPParent(uint32_t comp_id, size_t numBuffers, size_t bufferSize, uint32_t expectedChildren=1)
Parent/master manager for an IPC Tunnel Creates a memory-mapped file and initializes a TunnelType dat...
Definition mmapparent.h:47
const std::string & getRegionName() const
returns name of the mmap'd file
Definition mmapparent.h:106