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 #define SILC_PRIVATE_MESSAGE_PAD(__payloadlen) (16 - (__payloadlen) % 16)
33
34 /* Private Message Payload structure. Contents of this structure is parsed
35    from SILC packets. */
36 struct SilcPrivateMessagePayloadStruct {
37   SilcUInt16 flags;
38   SilcUInt16 message_len;
39   unsigned char *message;
40 };
41
42 /* Parses private message payload returning new private mesage payload 
43    structure. This also decrypts the message if the `cipher' is provided. */
44
45 SilcPrivateMessagePayload 
46 silc_private_message_payload_parse(unsigned char *payload,
47                                    SilcUInt32 payload_len,
48                                    SilcCipher cipher)
49 {
50   SilcBufferStruct buffer;
51   SilcPrivateMessagePayload newp;
52   int ret;
53
54   SILC_LOG_DEBUG(("Parsing private message payload"));
55
56   silc_buffer_set(&buffer, payload, payload_len);
57
58   /* Decrypt the payload */
59   if (cipher)
60     silc_cipher_decrypt(cipher, buffer.data, buffer.data, 
61                         buffer.len, cipher->iv);
62
63   newp = silc_calloc(1, sizeof(*newp));
64   if (!newp)
65     return NULL;
66
67   /* Parse the Private Message Payload. Ignore the padding. */
68   ret = silc_buffer_unformat(&buffer,
69                              SILC_STR_UI_SHORT(&newp->flags),
70                              SILC_STR_UI16_NSTRING_ALLOC(&newp->message, 
71                                                          &newp->message_len),
72                              SILC_STR_END);
73   if (ret == -1) {
74     SILC_LOG_DEBUG(("Incorrect private message payload"));
75     goto err;
76   }
77
78   if ((newp->message_len < 1 || newp->message_len > buffer.len)) {
79     SILC_LOG_DEBUG(("Incorrect private message payload in packet, "
80                     "packet dropped"));
81     goto err;
82   }
83
84   return newp;
85
86  err:
87   silc_private_message_payload_free(newp);
88   return NULL;
89 }
90
91 /* Encodes private message payload into a buffer and returns it.  If
92    the cipher is provided the packet is also encrypted here.  It is provided
93    if the private message private keys are used. */
94
95 SilcBuffer silc_private_message_payload_encode(SilcUInt16 flags,
96                                                SilcUInt16 data_len,
97                                                const unsigned char *data,
98                                                SilcCipher cipher)
99 {
100   int i;
101   SilcBuffer buffer;
102   SilcUInt32 len, pad_len = 0;
103   unsigned char pad[16];
104
105   SILC_LOG_DEBUG(("Encoding private message payload"));
106
107   len = 4 + data_len;
108
109   if (cipher) {
110     /* Calculate length of padding. */
111     pad_len = SILC_PRIVATE_MESSAGE_PAD(len);
112     len += pad_len;
113
114     /* Generate padding */
115     for (i = 0; i < pad_len; i++) pad[i] = silc_rng_global_get_byte();
116   }
117
118   /* Allocate private message payload buffer */
119   buffer = silc_buffer_alloc_size(len);
120   if (!buffer)
121     return NULL;
122
123   /* Encode the Channel Message Payload */
124   silc_buffer_format(buffer, 
125                      SILC_STR_UI_SHORT(flags),
126                      SILC_STR_UI_SHORT(data_len),
127                      SILC_STR_UI_XNSTRING(data, data_len),
128                      SILC_STR_UI_XNSTRING(pad, pad_len),
129                      SILC_STR_END);
130
131   if (cipher) {
132     /* Encrypt payload of the packet. */
133     silc_cipher_encrypt(cipher, buffer->data, buffer->data, 
134                         buffer->len, cipher->iv);
135     memset(pad, 0, sizeof(pad));
136   }
137
138   return buffer;
139 }
140
141 /* Frees Private Message Payload */
142
143 void silc_private_message_payload_free(SilcPrivateMessagePayload payload)
144 {
145   if (payload->message) {
146     memset(payload->message, 0, payload->message_len);
147     silc_free(payload->message);
148   }
149   silc_free(payload);
150 }
151
152 /* Return flags */
153
154 SilcUInt16 
155 silc_private_message_get_flags(SilcPrivateMessagePayload payload)
156 {
157   return payload->flags;
158 }
159
160 /* Return message */
161
162 unsigned char *
163 silc_private_message_get_message(SilcPrivateMessagePayload payload,
164                                  SilcUInt32 *message_len)
165 {
166   if (message_len)
167     *message_len = payload->message_len;
168
169   return payload->message;
170 }