clang -cc1 -cc1 -triple x86_64-unknown-linux-gnu -O3 -analyze -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name RFConf.cc -analyzer-checker=core -analyzer-checker=apiModeling -analyzer-checker=unix -analyzer-checker=deadcode -analyzer-checker=cplusplus -analyzer-checker=security.insecureAPI.UncheckedReturn -analyzer-checker=security.insecureAPI.getpw -analyzer-checker=security.insecureAPI.gets -analyzer-checker=security.insecureAPI.mktemp -analyzer-checker=security.insecureAPI.mkstemp -analyzer-checker=security.insecureAPI.vfork -analyzer-checker=nullability.NullPassedToNonnull -analyzer-checker=nullability.NullReturnedFromNonnull -analyzer-output plist -w -setup-static-analyzer -mrelocation-model pic -pic-level 2 -fhalf-no-semantic-interposition -mframe-pointer=none -fmath-errno -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -tune-cpu generic -debugger-tuning=gdb -fdebug-compilation-dir=/data/b2soft/buildbot/development/build -fcoverage-compilation-dir=/data/b2soft/buildbot/development/build -resource-dir /cvmfs/belle.cern.ch/el9/externals/v02-04-00/Linux_x86_64/common/lib/clang/21 -isystem /cvmfs/belle.cern.ch/el9/externals/v02-04-00/Linux_x86_64/common/include/c++ -isystem /cvmfs/belle.cern.ch/el9/externals/v02-04-00/Linux_x86_64/common/include/c++/x86_64-redhat-linux -isystem /cvmfs/belle.cern.ch/el9/externals/v02-04-00/Linux_x86_64/common/include/c++/backward -isystem /cvmfs/belle.cern.ch/el9/externals/v02-04-00/include -isystem /cvmfs/belle.cern.ch/el9/externals/v02-04-00/Linux_x86_64/common/include/python3.12 -isystem /cvmfs/belle.cern.ch/el9/externals/v02-04-00/include/CLHEP -isystem /cvmfs/belle.cern.ch/el9/externals/v02-04-00/Linux_x86_64/common/include/Geant4 -isystem /cvmfs/belle.cern.ch/el9/externals/v02-04-00/Linux_x86_64/common/include -isystem /cvmfs/belle.cern.ch/el9/externals/v02-04-00/include/root -isystem /cvmfs/belle.cern.ch/el9/externals/v02-04-00/include/belle_legacy -I include/ -D _PACKAGE_="daq" -D G4UI_USE_TCSH -D RaveDllExport= -D HAS_SQLITE -D HAS_CALLGRIND -I include -I /cvmfs/belle.cern.ch/el9/externals/v02-04-00/Linux_x86_64/common/include/libxml2 -internal-isystem /cvmfs/belle.cern.ch/el9/externals/v02-04-00/Linux_x86_64/common/bin/../lib64/gcc/x86_64-redhat-linux/15.2.0/../../../../include/c++ -internal-isystem /cvmfs/belle.cern.ch/el9/externals/v02-04-00/Linux_x86_64/common/bin/../lib64/gcc/x86_64-redhat-linux/15.2.0/../../../../include/c++/x86_64-redhat-linux -internal-isystem /cvmfs/belle.cern.ch/el9/externals/v02-04-00/Linux_x86_64/common/bin/../lib64/gcc/x86_64-redhat-linux/15.2.0/../../../../include/c++/backward -internal-isystem /cvmfs/belle.cern.ch/el9/externals/v02-04-00/Linux_x86_64/common/lib/clang/21/include -internal-isystem /usr/local/include -internal-isystem /cvmfs/belle.cern.ch/el9/externals/v02-04-00/Linux_x86_64/common/bin/../lib64/gcc/x86_64-redhat-linux/15.2.0/../../../../x86_64-redhat-linux/include -internal-externc-isystem /include -internal-externc-isystem /usr/include -Wno-missing-braces -Wno-unused-command-line-argument -std=c++20 -fdeprecated-macro -ferror-limit 19 -fgnuc-version=4.2.1 -fno-implicit-modules -fskip-odr-check-in-gmf -fcxx-exceptions -fexceptions -vectorize-loops -vectorize-slp -analyzer-output=html -faddrsig -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o /scan_build/2026-05-31-004316-385593-1 -x c++ daq/rfarm/manager/src/RFConf.cc
| 1 | |
| 2 | |
| 3 | |
| 4 | |
| 5 | |
| 6 | |
| 7 | |
| 8 | |
| 9 | #include "daq/rfarm/manager/RFConf.h" |
| 10 | |
| 11 | #include <cctype> |
| 12 | #include <cstdlib> |
| 13 | #include <cstring> |
| 14 | |
| 15 | using namespace std; |
| 16 | using namespace Belle2; |
| 17 | |
| 18 | RFConf::RFConf(const char* filename) |
| 19 | { |
| 20 | m_fd = fopen(filename, "r"); |
| 21 | if (m_fd == NULL) { |
| 22 | fprintf(stderr, "RFConf : config file not found %s\n", filename); |
| 23 | exit(-1); |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | RFConf::~RFConf() |
| 28 | { |
| 29 | fclose(m_fd); |
| 30 | } |
| 31 | |
| 32 | |
| 33 | |
| 34 | char* RFConf::getconf(const char* key1, const char* key2, const char* key3) |
| 35 | { |
| 36 | char buf[1024], keybuf[256]; |
| 37 | char* p, *q; |
| 38 | |
| 39 | struct RFConf_t top, *cur; |
| 40 | top.key = NULL; |
| 41 | |
| 42 | |
| 43 | |
| 44 | |
| 45 | if (key3) |
| 2 | | Assuming 'key3' is non-null | |
|
| |
| 46 | sprintf(keybuf, "%s.%s.%s", key1, key2, key3); |
| 47 | else if (key2) |
| 48 | sprintf(keybuf, "%s.%s", key1, key2); |
| 49 | else if (key1) |
| 50 | strcpy(keybuf, key1); |
| 51 | else |
| 52 | return NULL; |
| 53 | |
| 54 | |
| 55 | rewind(m_fd); |
| 56 | if (! top.key) { |
| |
| 57 | int line = 0; |
| 58 | cur = ⊤ |
| 59 | while (fgets(buf, sizeof(buf), m_fd)) { |
| 5 | | Loop condition is false. Execution continues on line 122 | |
|
| 60 | line++; |
| 61 | |
| 62 | p = strchr(buf, '\n'); |
| 63 | if (! p) { |
| 64 | fprintf(stderr, "RFConf : line %d too long\n", line); |
| 65 | while (fgets(buf, sizeof(buf), m_fd) && !strchr(buf, '\n')) |
| 66 | ; |
| 67 | continue; |
| 68 | } |
| 69 | *p = 0; |
| 70 | |
| 71 | |
| 72 | |
| 73 | char* keyp = nullptr; |
| 74 | char* delp = nullptr; |
| 75 | char* valp = nullptr; |
| 76 | for (p = buf; *p && *p != '#'; p++) { |
| 77 | if (! keyp) { |
| 78 | if (! isspace(*p)) keyp = p; |
| 79 | } else if (! delp) { |
| 80 | if (isspace(*p)) { |
| 81 | if (!isspace(*(p + 1)) && *(p + 1) != ':') { |
| 82 | fprintf(stderr, "RFConf : invalid key at line %d\n", line); |
| 83 | break; |
| 84 | } |
| 85 | *p = 0; |
| 86 | } else if (*p == ':') { |
| 87 | *(delp = p) = 0; |
| 88 | } |
| 89 | } else if (! valp) { |
| 90 | if (! isspace(*p)) { |
| 91 | valp = q = p; |
| 92 | q++; |
| 93 | } |
| 94 | } else if (! isspace(*p)) { |
| 95 | *q++ = *p; |
| 96 | } else if (! isspace(*(p + 1))) { |
| 97 | *q++ = ' '; |
| 98 | } |
| 99 | } |
| 100 | if (valp) { |
| 101 | for (*q-- = 0; isspace(*q); *q-- = 0) |
| 102 | ; |
| 103 | } |
| 104 | if (delp) { |
| 105 | cur->next = (RFConf_t*)malloc(sizeof(*cur)); |
| 106 | cur = cur->next; |
| 107 | cur->next = 0; |
| 108 | cur->key = (char*)malloc(strlen(keyp) + 1); |
| 109 | strcpy(cur->key, keyp); |
| 110 | if (valp) { |
| 111 | cur->val = (char*)malloc(strlen(valp) + 1); |
| 112 | strcpy(cur->val, valp); |
| 113 | } else { |
| 114 | cur->val = 0; |
| 115 | } |
| 116 | } |
| 117 | } |
| 118 | } else if (! top.val) { |
| 119 | return NULL; |
| 120 | } |
| 121 | |
| 122 | int nitem = 0; |
| 123 | for (cur = ⊤ cur; cur = cur->next) { |
| 6 | | Loop condition is true. Entering loop body | |
|
| 9 | | Assigned value is uninitialized |
|
| 124 | if (cur->key == NULL) continue; |
| |
| 8 | | Execution continues on line 123 | |
|
| 125 | if (strcmp(cur->key, keybuf) == 0) return cur->val; |
| 126 | nitem++; |
| 127 | } |
| 128 | printf("RFConf: Key %s not found\n", keybuf); |
| 129 | printf("nitem = %d, keybuf = %s\n", nitem, keybuf); |
| 130 | return NULL; |
| 131 | } |
| 132 | |
| 133 | int RFConf::getconfi(const char* key1, const char* key2, const char* key3) |
| 134 | { |
| 135 | return atoi(getconf(key1, key2, key3)); |
| 1 | Calling 'RFConf::getconf' | |
|
| 136 | } |
| 137 | |
| 138 | |