Usermode/libposix - Fixed getpass for new PTY
authorJohn Hodge <[email protected]>
Mon, 20 May 2013 08:20:57 +0000 (16:20 +0800)
committerJohn Hodge <[email protected]>
Mon, 20 May 2013 08:20:57 +0000 (16:20 +0800)
Usermode/Libraries/libposix.so_src/include_exp/unistd.h
Usermode/Libraries/libposix.so_src/unistd.c

index 8a644a7..118cdfe 100644 (file)
@@ -39,6 +39,7 @@ extern int    close(int fd);
 
 extern ssize_t write(int fd, const void *buf, size_t count);
 extern ssize_t read(int fd, void *buf, size_t count);
+extern off_t   lseek(int fd, off_t offset, int whence);
 
 extern int     fork(void);
 extern int     execv(const char *b, char *v[]);
index 78896db..e41ebfd 100644 (file)
@@ -11,6 +11,7 @@
 #include <sys/select.h>
 #include <stdio.h>
 #include <string.h>
+#include <acess/devices/pty.h>
 
 // === CODE ===
 int unlink(const char *pathname)
@@ -78,6 +79,11 @@ int seek(int fd, int whence, off_t dest)
        return _SysSeek(fd, whence, dest);
 }
 
+off_t lseek(int fd, off_t offset, int whence)
+{
+       return _SysSeek(fd, whence, offset);
+}
+
 off_t tell(int fd)
 {
        return _SysTell(fd);
@@ -180,11 +186,19 @@ int mkdir(const char *pathname, mode_t mode)
 char *getpass(const char *prompt)
 {
        static char passbuf[PASS_MAX+1];
+       struct ptymode  oldmode, mode;
+       _SysIOCtl(STDIN_FILENO, PTY_IOCTL_GETMODE, &oldmode);
+       mode.InputMode = PTYIMODE_CANON;
+       mode.OutputMode = 0;
+       _SysIOCtl(STDIN_FILENO, PTY_IOCTL_SETMODE, &mode);
        fprintf(stderr, "%s", prompt);
        fgets(passbuf, PASS_MAX+1, stdin);
        fprintf(stderr, "\n");
        for( int i = strlen(passbuf); i > 0 && (passbuf[i-1] == '\r' || passbuf[i-1] == '\n'); i -- )
                passbuf[i-1] = 0;
+
+       _SysIOCtl(STDIN_FILENO, PTY_IOCTL_SETMODE, &oldmode);
+
        return passbuf;
 }
 

UCC git Repository :: git.ucc.asn.au