summaryrefslogtreecommitdiffstats
path: root/mozglue/android/Ashmem.cpp
blob: edfeb495dd9cc4330517f6b3a972881e85003e08 (plain)
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
64
65
66
67
68
69
70
71
72
73
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#include <cstring>
#include <dlfcn.h>
#include <fcntl.h>
#include <linux/ashmem.h>
#include <stdio.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/ioctl.h>
#include <unistd.h>

#include "Ashmem.h"

namespace mozilla {
namespace android {

static void* libhandle() {
  static void* handle = dlopen("libandroid.so", RTLD_LAZY | RTLD_LOCAL);
  return handle;
}

int ashmem_create(const char* name, size_t size) {
  static auto fCreate =
      (int (*)(const char*, size_t))dlsym(libhandle(), "ASharedMemory_create");

  if (fCreate) {
    return fCreate(name, size);
  }

  int fd = open("/" ASHMEM_NAME_DEF, O_RDWR);
  if (fd < 0) {
    return fd;
  }

  if (name) {
    char str[ASHMEM_NAME_LEN];
    strlcpy(str, name, sizeof(str));
    ioctl(fd, ASHMEM_SET_NAME, str);
  }

  if (ioctl(fd, ASHMEM_SET_SIZE, size) != 0) {
    close(fd);
    return -1;
  }

  return fd;
}

size_t ashmem_getSize(int fd) {
  static auto fGetSize =
      (size_t(*)(int))dlsym(libhandle(), "ASharedMemory_getSize");
  if (fGetSize) {
    return fGetSize(fd);
  }

  return (size_t)ioctl(fd, ASHMEM_GET_SIZE, nullptr);
}

int ashmem_setProt(int fd, int prot) {
  static auto fSetProt =
      (int (*)(int, int))dlsym(libhandle(), "ASharedMemory_setProt");
  if (fSetProt) {
    return fSetProt(fd, prot);
  }

  return ioctl(fd, ASHMEM_SET_PROT_MASK, prot);
}

}  // namespace android
}  // namespace mozilla