summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-11-26 22:28:24 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-11-26 22:28:24 +0000
commit8cb410c63cbec58dc736e160ffe88a67af46e4c9 (patch)
tree557c8cea9558af595265778be29a851a4afd4c28
parentba5404d93e40e61176ffb150b66ddc3b349603a7 (diff)
Tidy up various bits of the paste code, make the data buffer char * and add
comments.
-rw-r--r--cmd-list-buffers.c2
-rw-r--r--cmd-load-buffer.c35
-rw-r--r--cmd-paste-buffer.c2
-rw-r--r--cmd-set-buffer.c2
-rw-r--r--paste.c28
-rw-r--r--status.c4
-rw-r--r--tmux.h6
7 files changed, 55 insertions, 24 deletions
diff --git a/cmd-list-buffers.c b/cmd-list-buffers.c
index ab08928e..30235295 100644
--- a/cmd-list-buffers.c
+++ b/cmd-list-buffers.c
@@ -64,7 +64,7 @@ cmd_list_buffers_exec(struct cmd *self, struct cmd_ctx *ctx)
strvisx(tmp, pb->data, len, VIS_OCTAL|VIS_TAB|VIS_NL);
/*
- * If the first 50 characterswere encoded as a longer string,
+ * If the first 50 characters were encoded as a longer string,
* or there is definitely more data, add "...".
*/
if (size > 50 || strlen(tmp) > 50) {
diff --git a/cmd-load-buffer.c b/cmd-load-buffer.c
index 354aa463..944c1237 100644
--- a/cmd-load-buffer.c
+++ b/cmd-load-buffer.c
@@ -50,7 +50,8 @@ cmd_load_buffer_exec(struct cmd *self, struct cmd_ctx *ctx)
struct session *s;
struct stat sb;
FILE *f;
- u_char *buf;
+ char *pdata = NULL;
+ size_t psize;
u_int limit;
if ((s = cmd_find_session(ctx, data->target)) == NULL)
@@ -63,39 +64,45 @@ cmd_load_buffer_exec(struct cmd *self, struct cmd_ctx *ctx)
if (fstat(fileno(f), &sb) < 0) {
ctx->error(ctx, "%s: %s", data->arg, strerror(errno));
- fclose(f);
- return (-1);
+ goto error;
+ }
+ if (sb.st_size > SIZE_MAX) {
+ ctx->error(ctx, "%s: file too large", data->arg);
+ goto error;
}
+ psize = (size_t) sb.st_size;
/*
* We don't want to die due to memory exhaustion, hence xmalloc can't
* be used here.
*/
- if ((buf = malloc(sb.st_size + 1)) == NULL) {
+ if ((pdata = malloc(psize)) == NULL) {
ctx->error(ctx, "malloc error: %s", strerror(errno));
- fclose(f);
- return (-1);
+ goto error;
}
- if (fread(buf, 1, sb.st_size, f) != (size_t) sb.st_size) {
+ if (fread(pdata, 1, psize, f) != psize) {
ctx->error(ctx, "%s: fread error", data->arg);
- xfree(buf);
- fclose(f);
- return (-1);
+ goto error;
}
fclose(f);
limit = options_get_number(&s->options, "buffer-limit");
if (data->buffer == -1) {
- paste_add(&s->buffers, buf, sb.st_size, limit);
+ paste_add(&s->buffers, pdata, psize, limit);
return (0);
}
- if (paste_replace(&s->buffers, data->buffer, buf, sb.st_size) != 0) {
+ if (paste_replace(&s->buffers, data->buffer, pdata, psize) != 0) {
ctx->error(ctx, "no buffer %d", data->buffer);
- xfree(buf);
- return (-1);
+ goto error;
}
return (0);
+
+error:
+ if (pdata != NULL)
+ xfree(pdata);
+ fclose(f);
+ return (-1);
}
diff --git a/cmd-paste-buffer.c b/cmd-paste-buffer.c
index 11f70f1f..7d13ae0a 100644
--- a/cmd-paste-buffer.c
+++ b/cmd-paste-buffer.c
@@ -62,7 +62,7 @@ cmd_paste_buffer_exec(struct cmd *self, struct cmd_ctx *ctx)
}
}
- if (pb != NULL && *pb->data != '\0') {
+ if (pb != NULL) {
/* -r means raw data without LF->CR conversion. */
if (cmd_check_flag(data->chflags, 'r'))
bufferevent_write(wp->event, pb->data, pb->size);
diff --git a/cmd-set-buffer.c b/cmd-set-buffer.c
index 4e50cc7a..a93a0adf 100644
--- a/cmd-set-buffer.c
+++ b/cmd-set-buffer.c
@@ -45,7 +45,7 @@ cmd_set_buffer_exec(struct cmd *self, struct cmd_ctx *ctx)
struct cmd_buffer_data *data = self->data;
struct session *s;
u_int limit;
- u_char *pdata;
+ char *pdata;
size_t psize;
if ((s = cmd_find_session(ctx, data->target)) == NULL)
diff --git a/paste.c b/paste.c
index 142e46cf..81dad57f 100644
--- a/paste.c
+++ b/paste.c
@@ -23,6 +23,11 @@
#include "tmux.h"
+/*
+ * Stack of paste buffers. Note that paste buffer data is not necessarily a C
+ * string!
+ */
+
void
paste_init_stack(struct paste_stack *ps)
{
@@ -36,6 +41,7 @@ paste_free_stack(struct paste_stack *ps)
;
}
+/* Return each item of the stack in turn. */
struct paste_buffer *
paste_walk_stack(struct paste_stack *ps, uint *idx)
{
@@ -46,6 +52,7 @@ paste_walk_stack(struct paste_stack *ps, uint *idx)
return (pb);
}
+/* Get the top item on the stack. */
struct paste_buffer *
paste_get_top(struct paste_stack *ps)
{
@@ -54,6 +61,7 @@ paste_get_top(struct paste_stack *ps)
return (ARRAY_FIRST(ps));
}
+/* Get an item by its index. */
struct paste_buffer *
paste_get_index(struct paste_stack *ps, u_int idx)
{
@@ -62,6 +70,7 @@ paste_get_index(struct paste_stack *ps, u_int idx)
return (ARRAY_ITEM(ps, idx));
}
+/* Free the top item on the stack. */
int
paste_free_top(struct paste_stack *ps)
{
@@ -79,6 +88,7 @@ paste_free_top(struct paste_stack *ps)
return (0);
}
+/* Free an item by index. */
int
paste_free_index(struct paste_stack *ps, u_int idx)
{
@@ -96,12 +106,16 @@ paste_free_index(struct paste_stack *ps, u_int idx)
return (0);
}
+/*
+ * Add an item onto the top of the stack, freeing the bottom if at limit. Note
+ * that the caller is responsible for allocating data.
+ */
void
-paste_add(struct paste_stack *ps, u_char *data, size_t size, u_int limit)
+paste_add(struct paste_stack *ps, char *data, size_t size, u_int limit)
{
struct paste_buffer *pb;
- if (*data == '\0')
+ if (size == 0)
return;
while (ARRAY_LENGTH(ps) >= limit) {
@@ -118,11 +132,19 @@ paste_add(struct paste_stack *ps, u_char *data, size_t size, u_int limit)
pb->size = size;
}
+
+/*
+ * Replace an item on the stack. Note that the caller is responsible for
+ * allocating data.
+ */
int
-paste_replace(struct paste_stack *ps, u_int idx, u_char *data, size_t size)
+paste_replace(struct paste_stack *ps, u_int idx, char *data, size_t size)
{
struct paste_buffer *pb;
+ if (size == 0)
+ return (0);
+
if (idx >= ARRAY_LENGTH(ps))
return (-1);
diff --git a/status.c b/status.c
index 3ab7a90e..fa452d53 100644
--- a/status.c
+++ b/status.c
@@ -882,6 +882,7 @@ status_prompt_key(struct client *c, int key)
{
struct paste_buffer *pb;
char *s, *first, *last, word[64], swapc;
+ u_char ch;
size_t size, n, off, idx;
size = strlen(c->prompt_buffer);
@@ -1023,7 +1024,8 @@ status_prompt_key(struct client *c, int key)
if ((pb = paste_get_top(&c->session->buffers)) == NULL)
break;
for (n = 0; n < pb->size; n++) {
- if (pb->data[n] < 32 || pb->data[n] == 127)
+ ch = (u_char) pb->data[n];
+ if (ch < 32 || ch == 127)
break;
}
diff --git a/tmux.h b/tmux.h
index 90943516..d99972c1 100644
--- a/tmux.h
+++ b/tmux.h
@@ -884,7 +884,7 @@ struct layout_cell {
/* Paste buffer. */
struct paste_buffer {
- char *data;
+ char *data;
size_t size;
};
ARRAY_DECL(paste_stack, struct paste_buffer *);
@@ -1403,8 +1403,8 @@ struct paste_buffer *paste_get_top(struct paste_stack *);
struct paste_buffer *paste_get_index(struct paste_stack *, u_int);
int paste_free_top(struct paste_stack *);
int paste_free_index(struct paste_stack *, u_int);
-void paste_add(struct paste_stack *, u_char *, size_t, u_int);
-int paste_replace(struct paste_stack *, u_int, u_char *, size_t);
+void paste_add(struct paste_stack *, char *, size_t, u_int);
+int paste_replace(struct paste_stack *, u_int, char *, size_t);
/* clock.c */
extern const char clock_table[14][5][5];