2020-01-18 11:38:21 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 11:38:21 +03:00
|
|
|
*/
|
|
|
|
|
2021-05-31 17:43:25 +03:00
|
|
|
#include <AK/Format.h>
|
2019-05-03 23:59:58 +03:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/stat.h>
|
2019-06-07 12:49:31 +03:00
|
|
|
#include <unistd.h>
|
2019-05-03 23:59:58 +03:00
|
|
|
|
2020-10-20 19:08:13 +03:00
|
|
|
constexpr unsigned encoded_device(unsigned major, unsigned minor)
|
2019-05-03 23:59:58 +03:00
|
|
|
{
|
|
|
|
return (minor & 0xff) | (major << 8) | ((minor & ~0xff) << 12);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int usage()
|
|
|
|
{
|
2021-05-31 17:43:25 +03:00
|
|
|
warnln("usage: mknod <name> <c|b|p> [<major> <minor>]");
|
2019-05-03 23:59:58 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
2020-01-27 23:38:36 +03:00
|
|
|
if (pledge("stdio dpath", nullptr) < 0) {
|
|
|
|
perror("pledge");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-05-03 23:59:58 +03:00
|
|
|
// FIXME: Add some kind of option for specifying the file permissions.
|
2020-07-17 00:34:43 +03:00
|
|
|
if (argc < 3)
|
2019-05-03 23:59:58 +03:00
|
|
|
return usage();
|
|
|
|
|
2020-07-17 00:34:43 +03:00
|
|
|
if (argv[2][0] == 'p') {
|
|
|
|
if (argc != 3)
|
|
|
|
return usage();
|
|
|
|
} else if (argc != 5) {
|
|
|
|
return usage();
|
|
|
|
}
|
|
|
|
|
2019-05-03 23:59:58 +03:00
|
|
|
const char* name = argv[1];
|
|
|
|
mode_t mode = 0666;
|
|
|
|
switch (argv[2][0]) {
|
|
|
|
case 'c':
|
|
|
|
case 'u':
|
|
|
|
mode |= S_IFCHR;
|
|
|
|
break;
|
|
|
|
case 'b':
|
|
|
|
mode |= S_IFBLK;
|
|
|
|
break;
|
|
|
|
case 'p':
|
|
|
|
mode |= S_IFIFO;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return usage();
|
|
|
|
}
|
|
|
|
|
2020-07-17 00:34:43 +03:00
|
|
|
int major = 0;
|
|
|
|
int minor = 0;
|
|
|
|
if (argc == 5) {
|
|
|
|
major = atoi(argv[3]);
|
|
|
|
minor = atoi(argv[4]);
|
|
|
|
}
|
2019-05-03 23:59:58 +03:00
|
|
|
|
|
|
|
int rc = mknod(name, mode, encoded_device(major, minor));
|
|
|
|
if (rc < 0) {
|
|
|
|
perror("mknod");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|