1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
|
/*
* Seahorse
*
* Copyright (C) 2010 Stefan Walter
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This program 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#include "config.h"
#include "seahorse-secure-buffer.h"
#define GCR_API_SUBJECT_TO_CHANGE 1
#include <gcr/gcr.h>
#include <string.h>
/* Initial size of buffer, in bytes */
#define MIN_SIZE 16
struct _SeahorseSecureBufferPrivate
{
gchar *text;
gsize text_size;
gsize text_bytes;
guint text_chars;
};
G_DEFINE_TYPE (SeahorseSecureBuffer, seahorse_secure_buffer, GTK_TYPE_ENTRY_BUFFER);
/* --------------------------------------------------------------------------------
* SECURE IMPLEMENTATIONS OF TEXT BUFFER
*/
static const gchar*
seahorse_secure_buffer_real_get_text (GtkEntryBuffer *buffer, gsize *n_bytes)
{
SeahorseSecureBuffer *self = SEAHORSE_SECURE_BUFFER (buffer);
if (n_bytes)
*n_bytes = self->priv->text_bytes;
if (!self->priv->text)
return "";
return self->priv->text;
}
static guint
seahorse_secure_buffer_real_get_length (GtkEntryBuffer *buffer)
{
SeahorseSecureBuffer *self = SEAHORSE_SECURE_BUFFER (buffer);
return self->priv->text_chars;
}
static guint
seahorse_secure_buffer_real_insert_text (GtkEntryBuffer *buffer, guint position,
const gchar *chars, guint n_chars)
{
SeahorseSecureBuffer *self = SEAHORSE_SECURE_BUFFER (buffer);
SeahorseSecureBufferPrivate *pv = self->priv;
gsize n_bytes;
gsize at;
n_bytes = g_utf8_offset_to_pointer (chars, n_chars) - chars;
/* Need more memory */
if (n_bytes + pv->text_bytes + 1 > pv->text_size) {
/* Calculate our new buffer size */
while (n_bytes + pv->text_bytes + 1 > pv->text_size) {
if (pv->text_size == 0) {
pv->text_size = MIN_SIZE;
} else {
if (2 * pv->text_size < GTK_ENTRY_BUFFER_MAX_SIZE) {
pv->text_size *= 2;
} else {
pv->text_size = GTK_ENTRY_BUFFER_MAX_SIZE;
if (n_bytes > pv->text_size - pv->text_bytes - 1) {
n_bytes = pv->text_size - pv->text_bytes - 1;
n_bytes = g_utf8_find_prev_char (chars, chars + n_bytes + 1) - chars;
n_chars = g_utf8_strlen (chars, n_bytes);
}
break;
}
}
}
pv->text = gcr_secure_memory_realloc (pv->text, pv->text_size);
}
/* Actual text insertion */
at = g_utf8_offset_to_pointer (pv->text, position) - pv->text;
g_memmove (pv->text + at + n_bytes, pv->text + at, pv->text_bytes - at);
memcpy (pv->text + at, chars, n_bytes);
/* Book keeping */
pv->text_bytes += n_bytes;
pv->text_chars += n_chars;
pv->text[pv->text_bytes] = '\0';
gtk_entry_buffer_emit_inserted_text (buffer, position, chars, n_chars);
return n_chars;
}
static guint
seahorse_secure_buffer_real_delete_text (GtkEntryBuffer *buffer, guint position, guint n_chars)
{
SeahorseSecureBuffer *self = SEAHORSE_SECURE_BUFFER (buffer);
SeahorseSecureBufferPrivate *pv = self->priv;
gsize start, end;
if (position > pv->text_chars)
position = pv->text_chars;
if (position + n_chars > pv->text_chars)
n_chars = pv->text_chars - position;
if (n_chars > 0) {
start = g_utf8_offset_to_pointer (pv->text, position) - pv->text;
end = g_utf8_offset_to_pointer (pv->text, position + n_chars) - pv->text;
g_memmove (pv->text + start, pv->text + end, pv->text_bytes + 1 - end);
pv->text_chars -= n_chars;
pv->text_bytes -= (end - start);
gtk_entry_buffer_emit_deleted_text (buffer, position, n_chars);
}
return n_chars;
}
/* --------------------------------------------------------------------------------
*
*/
static void
seahorse_secure_buffer_init (SeahorseSecureBuffer *self)
{
SeahorseSecureBufferPrivate *pv;
pv = self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self, SEAHORSE_TYPE_SECURE_BUFFER, SeahorseSecureBufferPrivate);
pv->text = NULL;
pv->text_chars = 0;
pv->text_bytes = 0;
pv->text_size = 0;
}
static void
seahorse_secure_buffer_finalize (GObject *obj)
{
SeahorseSecureBuffer *self = SEAHORSE_SECURE_BUFFER (obj);
SeahorseSecureBufferPrivate *pv = self->priv;
if (pv->text) {
gcr_secure_memory_free (pv->text);
pv->text = NULL;
pv->text_bytes = pv->text_size = 0;
pv->text_chars = 0;
}
G_OBJECT_CLASS (seahorse_secure_buffer_parent_class)->finalize (obj);
}
static void
seahorse_secure_buffer_class_init (SeahorseSecureBufferClass *klass)
{
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
GtkEntryBufferClass *buffer_class = GTK_ENTRY_BUFFER_CLASS (klass);
gobject_class->finalize = seahorse_secure_buffer_finalize;
buffer_class->get_text = seahorse_secure_buffer_real_get_text;
buffer_class->get_length = seahorse_secure_buffer_real_get_length;
buffer_class->insert_text = seahorse_secure_buffer_real_insert_text;
buffer_class->delete_text = seahorse_secure_buffer_real_delete_text;
g_type_class_add_private (gobject_class, sizeof (SeahorseSecureBufferPrivate));
}
/* --------------------------------------------------------------------------------
*
*/
GtkEntryBuffer*
seahorse_secure_buffer_new (void)
{
return g_object_new (SEAHORSE_TYPE_SECURE_BUFFER, NULL);
}
|