2017-09-28 23:04:05 +02:00
|
|
|
/*
|
|
|
|
* This file is part of Jehanne.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2015 Giacomo Tesio <giacomo@tesio.it>
|
|
|
|
*
|
|
|
|
* Jehanne 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, version 2 of the License.
|
|
|
|
*
|
|
|
|
* Jehanne 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 Jehanne. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#include <u.h>
|
|
|
|
#include <lib9.h>
|
|
|
|
|
|
|
|
/* check devdup Nctl format */
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
main(void)
|
|
|
|
{
|
|
|
|
char buf[256];
|
|
|
|
int fd, r;
|
|
|
|
|
2019-11-28 02:35:52 +01:00
|
|
|
fd = sys_open("/fd/0ctl", OREAD|OCEXEC);
|
2017-09-28 23:04:05 +02:00
|
|
|
if(fd < 0)
|
|
|
|
goto Fail;
|
2019-11-28 02:35:52 +01:00
|
|
|
r = jehanne_read(fd, buf, sizeof(buf));
|
2017-09-28 23:04:05 +02:00
|
|
|
if(r < 0)
|
|
|
|
goto Fail;
|
2019-11-28 02:35:52 +01:00
|
|
|
sys_close(fd);
|
2017-09-28 23:04:05 +02:00
|
|
|
print("Got 0ctl: %s\n", buf);
|
|
|
|
|
2019-11-28 02:35:52 +01:00
|
|
|
fd = sys_open("/fd/1ctl", OREAD|OCEXEC);
|
2017-09-28 23:04:05 +02:00
|
|
|
if(fd < 0)
|
|
|
|
goto Fail;
|
2019-11-28 02:35:52 +01:00
|
|
|
r = jehanne_read(fd, buf, sizeof(buf));
|
2017-09-28 23:04:05 +02:00
|
|
|
if(r < 0)
|
|
|
|
goto Fail;
|
2019-11-28 02:35:52 +01:00
|
|
|
sys_close(fd);
|
2017-09-28 23:04:05 +02:00
|
|
|
print("Got 1ctl: %s\n", buf);
|
|
|
|
|
2019-11-28 02:35:52 +01:00
|
|
|
fd = sys_open("/fd/2ctl", OREAD|OCEXEC);
|
2017-09-28 23:04:05 +02:00
|
|
|
if(fd < 0)
|
|
|
|
goto Fail;
|
2019-11-28 02:35:52 +01:00
|
|
|
r = jehanne_read(fd, buf, sizeof(buf));
|
2017-09-28 23:04:05 +02:00
|
|
|
if(r < 0)
|
|
|
|
goto Fail;
|
|
|
|
print("Got 2ctl: %s\n", buf);
|
|
|
|
|
|
|
|
snprint(buf, sizeof(buf), "/fd/%dctl", fd);
|
2019-11-28 02:35:52 +01:00
|
|
|
fd = sys_open(buf, OREAD);
|
2017-09-28 23:04:05 +02:00
|
|
|
if(fd < 0)
|
|
|
|
goto Fail;
|
2019-11-28 02:35:52 +01:00
|
|
|
r = jehanne_read(fd, buf, sizeof(buf));
|
2017-09-28 23:04:05 +02:00
|
|
|
if(r < 0)
|
|
|
|
goto Fail;
|
|
|
|
print("Got: %s\n", buf);
|
2019-11-28 02:35:52 +01:00
|
|
|
sys_close(fd);
|
2017-09-28 23:04:05 +02:00
|
|
|
exits(nil);
|
|
|
|
|
|
|
|
Fail:
|
|
|
|
print("FAIL\n");
|
|
|
|
exits("FAIL");
|
|
|
|
}
|