Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Linux/samples/binderfs/   (Open Source Betriebssystem Version 6.17.9©)  Datei vom 24.10.2025 mit Größe 1 kB image not shown  

Quelle  binderfs_example.c   Sprache: C

 
// SPDX-License-Identifier: GPL-2.0

#define _GNU_SOURCE
#include <errno.h>
#include <fcntl.h>
#include <sched.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/mount.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <linux/android/binder.h>
#include <linux/android/binderfs.h>

int main(int argc, char *argv[])
{
 int fd, ret, saved_errno;
 struct binderfs_device device = { 0 };

 ret = unshare(CLONE_NEWNS);
 if (ret < 0) {
  fprintf(stderr, "%s - Failed to unshare mount namespace\n",
   strerror(errno));
  exit(EXIT_FAILURE);
 }

 ret = mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, 0);
 if (ret < 0) {
  fprintf(stderr, "%s - Failed to mount / as private\n",
   strerror(errno));
  exit(EXIT_FAILURE);
 }

 ret = mkdir("/dev/binderfs", 0755);
 if (ret < 0 && errno != EEXIST) {
  fprintf(stderr, "%s - Failed to create binderfs mountpoint\n",
   strerror(errno));
  exit(EXIT_FAILURE);
 }

 ret = mount(NULL, "/dev/binderfs""binder", 0, 0);
 if (ret < 0) {
  fprintf(stderr, "%s - Failed to mount binderfs\n",
   strerror(errno));
  exit(EXIT_FAILURE);
 }

 memcpy(device.name, "my-binder", strlen("my-binder"));

 fd = open("/dev/binderfs/binder-control", O_RDONLY | O_CLOEXEC);
 if (fd < 0) {
  fprintf(stderr, "%s - Failed to open binder-control device\n",
   strerror(errno));
  exit(EXIT_FAILURE);
 }

 ret = ioctl(fd, BINDER_CTL_ADD, &device);
 saved_errno = errno;
 close(fd);
 errno = saved_errno;
 if (ret < 0) {
  fprintf(stderr, "%s - Failed to allocate new binder device\n",
   strerror(errno));
  exit(EXIT_FAILURE);
 }

 printf("Allocated new binder device with major %d, minor %d, and name %s\n",
        device.major, device.minor, device.name);

 ret = unlink("/dev/binderfs/my-binder");
 if (ret < 0) {
  fprintf(stderr, "%s - Failed to delete binder device\n",
   strerror(errno));
  exit(EXIT_FAILURE);
 }

 /* Cleanup happens when the mount namespace dies. */
 exit(EXIT_SUCCESS);
}

Messung V0.5
C=100 H=100 G=100

¤ Dauer der Verarbeitung: 0.3 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.