ret = mkdir_recursive(path, S_IRWXU | S_IRWXG, geteuid(), getegid());
if (ret < 0) {
+ PERROR("Cannot create debugfs path");
goto error;
}
ret = mount(type, path, type, 0, NULL);
if (ret < 0) {
- perror("mount debugfs");
+ PERROR("Cannot mount debugfs");
goto error;
}
}
ret = mount_debugfs(debugfs_path);
if (ret < 0) {
+ perror("Cannot mount debugfs");
goto error;
}
}
* Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
* Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
*
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; only version 2
- * of the License.
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the Free
+ * Software Foundation; only version 2 of the License.
*
- * This program 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 General Public License for more details.
+ * This program 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 General Public License for
+ * more details.
*
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * You should have received a copy of the GNU General Public License along with
+ * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
+ * Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#define _GNU_SOURCE
#include <sys/stat.h>
#include <unistd.h>
+#include <lttngerr.h>
+
#include "utils.h"
/*
ret = write(wpipe, "!", 1);
if (ret < 0) {
- perror("write poll pipe");
+ PERROR("write poll pipe");
}
return ret;
ret = snprintf(tmp, sizeof(tmp), "%s", path);
if (ret < 0) {
- perror("snprintf mkdir");
+ PERROR("snprintf mkdir");
goto error;
}
ret = mkdir(tmp, mode);
if (ret < 0) {
if (!(errno == EEXIST)) {
- perror("mkdir recursive");
+ PERROR("mkdir recursive");
ret = -errno;
goto umask_error;
}
*/
ret = chown(tmp, uid, gid);
if (ret < 0) {
- perror("chown in mkdir recursive");
+ PERROR("chown in mkdir recursive");
ret = -errno;
goto umask_error;
}
ret = mkdir(tmp, mode);
if (ret < 0) {
- ret = -errno;
+ if (!(errno == EEXIST)) {
+ PERROR("mkdir recursive last piece");
+ ret = -errno;
+ } else {
+ ret = 0;
+ }
} else if (ret == 0) {
/*
* We created the directory. Set its ownership to the user/group
*/
ret = chown(tmp, uid, gid);
if (ret < 0) {
- perror("chown in mkdir recursive");
+ PERROR("chown in mkdir recursive");
ret = -errno;
goto umask_error;
}