summaryrefslogtreecommitdiffstats
path: root/usr.bin
diff options
context:
space:
mode:
authorglebius <glebius@FreeBSD.org>2012-02-13 14:40:15 +0000
committerglebius <glebius@FreeBSD.org>2012-02-13 14:40:15 +0000
commitba096335bf7b58f4644641e38c058502f57e67ee (patch)
treeba9061bc7eee30d63960c2c0f6c20e27fd31671f /usr.bin
parent01913307cadcc6347df3e467eddbb8dd7d777db7 (diff)
downloadFreeBSD-src-ba096335bf7b58f4644641e38c058502f57e67ee.zip
FreeBSD-src-ba096335bf7b58f4644641e38c058502f57e67ee.tar.gz
Fix write(1) to support wide characters.
Submitted by: amdmi3 PR: bin/164317
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/write/write.16
-rw-r--r--usr.bin/write/write.c39
2 files changed, 17 insertions, 28 deletions
diff --git a/usr.bin/write/write.1 b/usr.bin/write/write.1
index 84b5018..4aa92c0 100644
--- a/usr.bin/write/write.1
+++ b/usr.bin/write/write.1
@@ -31,7 +31,7 @@
.\" @(#)write.1 8.1 (Berkeley) 6/6/93
.\" $FreeBSD$
.\"
-.Dd July 17, 2004
+.Dd February 13, 2012
.Dt WRITE 1
.Os
.Sh NAME
@@ -107,7 +107,3 @@ setting is used to determine which characters are safe to write to a
terminal, not the receiver's (which
.Nm
has no way of knowing).
-.Pp
-The
-.Nm
-utility does not recognize multibyte characters.
diff --git a/usr.bin/write/write.c b/usr.bin/write/write.c
index acf996a..2008fd2 100644
--- a/usr.bin/write/write.c
+++ b/usr.bin/write/write.c
@@ -60,12 +60,14 @@ __FBSDID("$FreeBSD$");
#include <string.h>
#include <unistd.h>
#include <utmpx.h>
+#include <wchar.h>
+#include <wctype.h>
void done(int);
void do_write(char *, char *, uid_t);
static void usage(void);
int term_chk(char *, int *, time_t *, int);
-void wr_fputs(unsigned char *s);
+void wr_fputs(wchar_t *s);
void search_utmp(char *, char *, char *, uid_t);
int utmp_chk(char *, char *);
@@ -243,7 +245,8 @@ do_write(char *tty, char *mytty, uid_t myuid)
char *nows;
struct passwd *pwd;
time_t now;
- char path[MAXPATHLEN], host[MAXHOSTNAMELEN], line[512];
+ char path[MAXPATHLEN], host[MAXHOSTNAMELEN];
+ wchar_t line[512];
/* Determine our login name before we reopen() stdout */
if ((login = getlogin()) == NULL) {
@@ -269,7 +272,7 @@ do_write(char *tty, char *mytty, uid_t myuid)
(void)printf("\r\n\007\007\007Message from %s@%s on %s at %s ...\r\n",
login, host, mytty, nows + 11);
- while (fgets(line, sizeof(line), stdin) != NULL)
+ while (fgetws(line, sizeof(line)/sizeof(wchar_t), stdin) != NULL)
wr_fputs(line);
}
@@ -288,30 +291,20 @@ done(int n __unused)
* turns \n into \r\n
*/
void
-wr_fputs(unsigned char *s)
+wr_fputs(wchar_t *s)
{
-#define PUTC(c) if (putchar(c) == EOF) err(1, NULL);
+#define PUTC(c) if (putwchar(c) == WEOF) err(1, NULL);
- for (; *s != '\0'; ++s) {
- if (*s == '\n') {
- PUTC('\r');
- } else if (((*s & 0x80) && *s < 0xA0) ||
- /* disable upper controls */
- (!isprint(*s) && !isspace(*s) &&
- *s != '\a' && *s != '\b')
- ) {
- if (*s & 0x80) {
- *s &= ~0x80;
- PUTC('M');
- PUTC('-');
- }
- if (iscntrl(*s)) {
- *s ^= 0x40;
- PUTC('^');
- }
+ for (; *s != L'\0'; ++s) {
+ if (*s == L'\n') {
+ PUTC(L'\r');
+ PUTC(L'\n');
+ } else if (iswprint(*s) || iswspace(*s)) {
+ PUTC(*s);
+ } else {
+ wprintf(L"<0x%X>", *s);
}
- PUTC(*s);
}
return;
#undef PUTC
OpenPOWER on IntegriCloud