updates
[silc.git] / lib / silccore / silcprivate.c
1 /*
2
3   silcprivate.c
4
5   Author: Pekka Riikonen <priikone@poseidon.pspt.fi>
6
7   Copyright (C) 1997 - 2001 Pekka Riikonen
8
9   This program is free software; you can redistribute it and/or modify
10   it under the terms of the GNU General Public License as published by
11   the Free Software Foundation; either version 2 of the License, or
12   (at your option) any later version.
13   
14   This program is distributed in the hope that it will be useful,
15   but WITHOUT ANY WARRANTY; without even the implied warranty of
16   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17   GNU General Public License for more details.
18
19 */
20 /* Includes the Private Message Payload implementation */
21 /* $Id$ */
22
23 #include "silcincludes.h"
24 #include "silcprivate.h"
25
26 /******************************************************************************
27
28                            Private Message Payload
29
30 ******************************************************************************/
31
32 /* Private Message Payload structure. Contents of this structure is parsed
33    from SILC packets. */
34 struct SilcPrivateMessagePayloadStruct {
35   uint16 flags;
36   uint16 message_len;
37   unsigned char *message;
38 };
39
40 /* Parses private message payload returning new private mesage payload 
41    structure. This also decrypts the message if the `cipher' is provided. */
42
43 SilcPrivateMessagePayload 
44 silc_private_message_payload_parse(SilcBuffer buffer, SilcCipher cipher)
45 {
46   SilcPrivateMessagePayload new;
47   int ret;
48
49   SILC_LOG_DEBUG(("Parsing private message payload"));
50
51   /* Decrypt the payload */
52   if (cipher)
53     silc_cipher_decrypt(cipher, buffer->data, buffer->data, 
54                         buffer->len, cipher->iv);
55
56   new = silc_calloc(1, sizeof(*new));
57
58   /* Parse the Private Message Payload. Ignore the padding. */
59   ret = silc_buffer_unformat(buffer,
60                              SILC_STR_UI_SHORT(&new->flags),
61                              SILC_STR_UI16_NSTRING_ALLOC(&new->message, 
62                                                          &new->message_len),
63                              SILC_STR_END);
64   if (ret == -1)
65     goto err;
66
67   if ((new->message_len < 1 || new->message_len > buffer->len)) {
68     SILC_LOG_ERROR(("Incorrect private message payload in packet, "
69                     "packet dropped"));
70     goto err;
71   }
72
73   return new;
74
75  err:
76   silc_private_message_payload_free(new);
77   return NULL;
78 }
79
80 /* Encodes private message payload into a buffer and returns it.  If
81    the cipher is provided the packet is also encrypted here.  It is provided
82    if the private message private keys are used. */
83
84 SilcBuffer silc_private_message_payload_encode(uint16 flags,
85                                                uint16 data_len,
86                                                unsigned char *data,
87                                                SilcCipher cipher)
88 {
89   int i;
90   SilcBuffer buffer;
91   uint32 len, pad_len = 0;
92   unsigned char pad[SILC_PACKET_MAX_PADLEN];
93
94   SILC_LOG_DEBUG(("Encoding private message payload"));
95
96   len = 4 + data_len;
97
98   if (cipher) {
99     /* Calculate length of padding. */
100     pad_len = SILC_PACKET_PADLEN((len + 2));
101     len += pad_len;
102
103     /* Generate padding */
104     for (i = 0; i < pad_len; i++) pad[i] = silc_rng_global_get_byte();
105   }
106
107   /* Allocate private message payload buffer */
108   buffer = silc_buffer_alloc(len);
109
110   /* Encode the Channel Message Payload */
111   silc_buffer_pull_tail(buffer, SILC_BUFFER_END(buffer));
112   silc_buffer_format(buffer, 
113                      SILC_STR_UI_SHORT(flags),
114                      SILC_STR_UI_SHORT(data_len),
115                      SILC_STR_UI_XNSTRING(data, data_len),
116                      SILC_STR_UI_XNSTRING(pad, pad_len),
117                      SILC_STR_END);
118
119   if (cipher) {
120     /* Encrypt payload of the packet. */
121     silc_cipher_encrypt(cipher, buffer->data, buffer->data, 
122                         buffer->len, cipher->iv);
123     memset(pad, 0, sizeof(pad));
124   }
125
126   return buffer;
127 }
128
129 /* Frees Private Message Payload */
130
131 void silc_private_message_payload_free(SilcPrivateMessagePayload payload)
132 {
133   if (payload->message) {
134     memset(payload->message, 0, payload->message_len);
135     silc_free(payload->message);
136   }
137   silc_free(payload);
138 }
139
140 /* Return flags */
141
142 uint16 
143 silc_private_message_get_flags(SilcPrivateMessagePayload payload)
144 {
145   return payload->flags;
146 }
147
148 /* Return message */
149
150 unsigned char *
151 silc_private_message_get_message(SilcPrivateMessagePayload payload,
152                                  uint32 *message_len)
153 {
154   if (message_len)
155     *message_len = payload->message_len;
156
157   return payload->message;
158 }