memfd.c revision 4531a9bc206c0c22e29b56ac4a7528afba2e9c83
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2013 Lennart Poettering
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <stdio.h>
#include <fcntl.h>
#include "util.h"
#include "bus-label.h"
#include "missing.h"
#include "memfd.h"
_cleanup_free_ char *g = NULL;
int fd;
if (name) {
/* The kernel side is pretty picky about the character
* set here, let's do the usual bus escaping to deal
* with that. */
g = bus_label_escape(name);
if (!g)
return -ENOMEM;
name = g;
} else {
char pr[17] = {};
/* If no name is specified we generate one. We include
* a hint indicating our library implementation, and
* add the thread name to it */
name = "sd";
else {
_cleanup_free_ char *e = NULL;
e = bus_label_escape(pr);
if (!e)
return -ENOMEM;
g = strappend("sd-", e);
if (!g)
return -ENOMEM;
name = g;
}
}
if (fd < 0)
return -errno;
return fd;
}
void *q;
int sealed;
assert(p);
if (sealed < 0)
return sealed;
if (sealed)
else
if (q == MAP_FAILED)
return -errno;
*p = q;
return 0;
}
int memfd_set_sealed(int fd) {
int r;
if (r < 0)
return -errno;
return 0;
}
int memfd_get_sealed(int fd) {
int r;
if (r < 0)
return -errno;
}
int r;
if (r < 0)
return -errno;
return r;
}
int r;
if (r < 0)
return -errno;
return r;
}
int r;
assert(p);
if (fd < 0)
return fd;
if (r < 0)
return r;
if (r < 0)
return r;
r = fd;
fd = -1;
return r;
}
_cleanup_free_ char *n = NULL;
ssize_t k;
if (k < 0)
return -errno;
return -E2BIG;
buf[k] = 0;
if (!delim)
return -EIO;
if (!delim)
return -EIO;
delim++;
if (!end)
return -EIO;
if (!n)
return -ENOMEM;
e = bus_label_unescape(n);
if (!e)
return -ENOMEM;
*name = e;
return 0;
}