File: android-cloexec-memfd-create.cpp

package info (click to toggle)
llvm-toolchain-11 1%3A11.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 995,808 kB
  • sloc: cpp: 4,767,656; ansic: 760,916; asm: 477,436; python: 170,940; objc: 69,804; lisp: 29,914; sh: 23,855; f90: 18,173; pascal: 7,551; perl: 7,471; ml: 5,603; awk: 3,489; makefile: 2,573; xml: 915; cs: 573; fortran: 503; javascript: 452
file content (63 lines) | stat: -rw-r--r-- 1,976 bytes parent folder | download | duplicates (25)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// RUN: %check_clang_tidy %s android-cloexec-memfd-create %t

#define MFD_ALLOW_SEALING 1
#define __O_CLOEXEC 3
#define MFD_CLOEXEC __O_CLOEXEC
#define TEMP_FAILURE_RETRY(exp) \
  ({                            \
    int _rc;                    \
    do {                        \
      _rc = (exp);              \
    } while (_rc == -1);        \
  })
#define NULL 0

extern "C" int memfd_create(const char *name, unsigned int flags);

void a() {
  memfd_create(NULL, MFD_ALLOW_SEALING);
  // CHECK-MESSAGES: :[[@LINE-1]]:39: warning: 'memfd_create' should use MFD_CLOEXEC where possible [android-cloexec-memfd-create]
  // CHECK-FIXES: memfd_create(NULL, MFD_ALLOW_SEALING | MFD_CLOEXEC)
  TEMP_FAILURE_RETRY(memfd_create(NULL, MFD_ALLOW_SEALING));
  // CHECK-MESSAGES: :[[@LINE-1]]:58: warning: 'memfd_create'
  // CHECK-FIXES: TEMP_FAILURE_RETRY(memfd_create(NULL, MFD_ALLOW_SEALING | MFD_CLOEXEC))
}

void f() {
  memfd_create(NULL, 3);
  // CHECK-MESSAGES: :[[@LINE-1]]:23: warning: 'memfd_create'
  // CHECK-FIXES: memfd_create(NULL, 3 | MFD_CLOEXEC)
  TEMP_FAILURE_RETRY(memfd_create(NULL, 3));
  // CHECK-MESSAGES: :[[@LINE-1]]:42: warning: 'memfd_create'
  // CHECK-FIXES: TEMP_FAILURE_RETRY(memfd_create(NULL, 3 | MFD_CLOEXEC))

  int flag = 3;
  memfd_create(NULL, flag);
  TEMP_FAILURE_RETRY(memfd_create(NULL, flag));
}

namespace i {
int memfd_create(const char *name, unsigned int flags);

void d() {
  memfd_create(NULL, MFD_ALLOW_SEALING);
  TEMP_FAILURE_RETRY(memfd_create(NULL, MFD_ALLOW_SEALING));
}

} // namespace i

void e() {
  memfd_create(NULL, MFD_CLOEXEC);
  TEMP_FAILURE_RETRY(memfd_create(NULL, MFD_CLOEXEC));
  memfd_create(NULL, MFD_ALLOW_SEALING | MFD_CLOEXEC);
  TEMP_FAILURE_RETRY(memfd_create(NULL, MFD_ALLOW_SEALING | MFD_CLOEXEC));
}

class G {
public:
  int memfd_create(const char *name, unsigned int flags);
  void d() {
    memfd_create(NULL, MFD_ALLOW_SEALING);
    TEMP_FAILURE_RETRY(memfd_create(NULL, MFD_ALLOW_SEALING));
  }
};