Remove silc_attribute_payload_encode_list, improved the
[silc.git] / lib / silccore / silcattrs.h
1 /*
2
3   silcattrs.h 
4
5   Author: Pekka Riikonen <priikone@silcnet.org>
6
7   Copyright (C) 2002 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; version 2 of the License.
12
13   This program is distributed in the hope that it will be useful,
14   but WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16   GNU General Public License for more details.
17
18 */
19
20 /****h* silccore/SILC Attribute Interface
21  *
22  * DESCRIPTION
23  *
24  * Implementation of the Attribute Payload that may be used to send and
25  * retrieve user online precense information in the SILC network.  This
26  * implements the draft-riikonen-precense-attrs draft.
27  *
28  ***/
29
30 #ifndef SILCATTRS_H
31 #define SILCATTRS_H
32
33 /****s* silccore/SilcAttributesAPI/SilcAttributePayload
34  *
35  * NAME
36  * 
37  *    typedef struct SilcAttributePayloadStruct *SilcAttributePayload;
38  *
39  * DESCRIPTION
40  *
41  *    This context is the actual Attribute Payload and is allocated
42  *    by silc_attribute_payload_parse and given as attribute usually to
43  *    all silc_attribute_payload_* functions.  It is freed by the
44  *    silc_attribute_payload_free function.
45  *
46  ***/
47 typedef struct SilcAttributePayloadStruct *SilcAttributePayload;
48
49 /****d* silccore/SilcAttributesAPI/SilcAttribute
50  *
51  * NAME
52  * 
53  *    typedef SilcUInt8 SilcAttribute;
54  *
55  * DESCRIPTION
56  *
57  *    The SilcAttribute type definition and the attributes. The attributes
58  *    listed here are the official attributes defined in the internet
59  *    draft.  They define the contents of the attribute payload and the
60  *    type of the attribute.
61  *
62  * SOURCE
63  */
64 typedef SilcUInt8 SilcAttribute;
65
66 /* All defined attributes.  See the specs for detailed information.  The
67    comment is the structure or data type that must be used with the
68    silc_attribute_get_object function to fetch parsed attribute. */
69 #define SILC_ATTRIBUTE_NONE                     0
70 #define SILC_ATTRIBUTE_USER_INFO                1
71 #define SILC_ATTRIBUTE_SERVICE                  2 /* SilcAttributeObjService */
72 #define SILC_ATTRIBUTE_STATUS_MOOD              3 /* SilcAttributeMood */
73 #define SILC_ATTRIBUTE_STATUS_FREETEXT          4 /* char * (UTF-8 string) */
74 #define SILC_ATTRIBUTE_STATUS_MESSAGE           5 /* SilcAttributeObjMime */
75 #define SILC_ATTRIBUTE_PREFERRED_LANGUAGE       6 /* char * (UTF-8 string) */
76 #define SILC_ATTRIBUTE_PREFERRED_CONTACT        7 /* SilcAttributeContact */
77 #define SILC_ATTRIBUTE_TIMEZONE                 8 /* char * (UTF-8 string */
78 #define SILC_ATTRIBUTE_GEOLOCATION              9 /* SilcAttributeObjGeo */
79 #define SILC_ATTRIBUTE_DEVICE_INFO              10 /* SilcAttributeObjDevice */
80 #define SILC_ATTRIBUTE_EXTENSION                11 /* SilcAttributeObjMime */
81 #define SILC_ATTRIBUTE_USER_PUBLIC_KEY          12 /* SilcAttributeObjPk */
82 #define SILC_ATTRIBUTE_SERVER_PUBLIC_KEY        13 /* SilcAttributeObjPk */
83 #define SILC_ATTRIBUTE_USER_DIGITAL_SIGNATURE   14 /* SilcAttributeObjPk */
84 #define SILC_ATTRIBUTE_SERVER_DIGITAL_SIGNATURE 15 /* SilcAttributeObjPk */
85 /***/
86
87 /****d* silccore/SilcAttributesAPI/SilcAttributeFlags
88  *
89  * NAME
90  * 
91  *    typedef SilcUInt8 SilcAttributeFlags;
92  *
93  * DESCRIPTION
94  *
95  *    Attribute Payload flags defined by the specification.
96  *
97  * SOURCE
98  */
99 typedef SilcUInt8 SilcAttributeFlags;
100
101 /* All defined flags */
102 #define SILC_ATTRIBUTE_FLAG_NONE          0x00    /* No flags */
103 #define SILC_ATTRIBUTE_FLAG_INVALID       0x01    /* Invalid attribute */
104 #define SILC_ATTRIBUTE_FLAG_VALID         0x02    /* Valid attribute */
105 /***/
106
107 /****d* silccore/SilcAttributesAPI/SilcAttributeMood
108  *
109  * NAME
110  * 
111  *    typedef enum { ... } SilcAttributeMood;
112  *
113  * DESCRIPTION
114  *
115  *    The user mood indicators defined by the specification.  This is
116  *    bit mask.
117  *
118  * SOURCE
119  */
120 typedef enum {
121   SILC_ATTRIBUTE_MOOD_NORMAL      = 0x00000000,   /* normal mood */
122   SILC_ATTRIBUTE_MOOD_HAPPY       = 0x00000001,   /* user feel happy */
123   SILC_ATTRIBUTE_MOOD_SAD         = 0x00000002,   /* user feel sad */
124   SILC_ATTRIBUTE_MOOD_ANGRY       = 0x00000004,   /* user feel angry */
125   SILC_ATTRIBUTE_MOOD_JEALOUS     = 0x00000008,   /* user feel jealous */
126   SILC_ATTRIBUTE_MOOD_ASHAMED     = 0x00000010,   /* user feel ashamed */
127   SILC_ATTRIBUTE_MOOD_INVINCIBLE  = 0x00000020,   /* user feel invincible */
128   SILC_ATTRIBUTE_MOOD_INLOVE      = 0x00000040,   /* user feel in love */
129   SILC_ATTRIBUTE_MOOD_SLEEPY      = 0x00000080,   /* user feel sleepy */
130   SILC_ATTRIBUTE_MOOD_BORED       = 0x00000100,   /* user feel bored */
131   SILC_ATTRIBUTE_MOOD_EXCITED     = 0x00000200,   /* user feel exited */
132   SILC_ATTRIBUTE_MOOD_ANXIOUS     = 0x00000400,   /* user feel anxious */
133 } SilcAttributeMood;
134 /***/
135
136 /****d* silccore/SilcAttributesAPI/SilcAttributeContact
137  *
138  * NAME
139  * 
140  *    typedef enum { ... } SilcAttributeContact;
141  *
142  * DESCRIPTION
143  *
144  *    The defined preferred contact methods defined by the specification.
145  *    This is bit mask.
146  *
147  * SOURCE
148  */
149 typedef enum {
150   SILC_ATTRIBUTE_CONTACT_NONE    = 0x00000000,    /* no specific method */
151   SILC_ATTRIBUTE_CONTACT_EMAIL   = 0x00000001,    /* email preferred */
152   SILC_ATTRIBUTE_CONTACT_CALL    = 0x00000002,    /* phone call preferred */
153   SILC_ATTRIBUTE_CONTACT_PAGE    = 0x00000004,    /* "paging" preferred */
154   SILC_ATTRIBUTE_CONTACT_SMS     = 0x00000008,    /* SMS preferred */
155   SILC_ATTRIBUTE_CONTACT_MMS     = 0x00000010,    /* MMS preferred */
156   SILC_ATTRIBUTE_CONTACT_CHAT    = 0x00000020,    /* chatting preferred */
157 } SilcAttributeContact;
158 /***/
159
160 /****d* silccore/SilcAttributesAPI/SilcAttributeDevice
161  *
162  * NAME
163  * 
164  *    typedef enum { ... } SilcAttributeDevice;
165  *
166  * DESCRIPTION
167  *
168  *    The defined device types defined by the specification.
169  *
170  * SOURCE
171  */
172 typedef enum {
173   SILC_ATTRIBUTE_DEVICE_COMPUTER      = 0,        /* device is computer */
174   SILC_ATTRIBUTE_DEVICE_MOBILE_PHONE  = 1,        /* device is mobile phone */
175   SILC_ATTRIBUTE_DEVICE_PDA           = 2,        /* device is PDA */
176   SILC_ATTRIBUTE_DEVICE_TERMINAL      = 3,        /* device is terminal */
177 } SilcAttributeDevice;
178 /***/
179
180 /****f* silccore/SilcAttributesAPI/silc_attribute_payload_parse
181  *
182  * SYNOPSIS
183  *
184  *    SilcAttributePayload
185  *    silc_attribute_payload_parse(const unsigned char *payload,
186  *                                 SilcUInt32 payload_len);
187  *
188  * DESCRIPTION
189  *
190  *    Parses one attribute payload sent as argument and saves it to
191  *    SilcAttributePayload context.  The new allocated context is returned.
192  *
193  ***/
194 SilcAttributePayload
195 silc_attribute_payload_parse(const unsigned char *payload,
196                              SilcUInt32 payload_len);
197
198 /****f* silccore/SilcAttributesAPI/silc_attribute_payload_encode
199  *
200  * SYNOPSIS
201  *
202  *    SilcBuffer silc_attribute_payload_encode(SilcBuffer attrs,
203  *                                             SilcAttribute attribute,
204  *                                             SilcAttributeFlags flags,
205  *                                             void *object,
206  *                                             SilcUInt32 object_size);
207  *
208  * DESCRIPTION
209  *
210  *    Encodes one attribute payload into the `attrs' buffer and returns
211  *    pointer to the buffer, which may be different in case the buffer
212  *    was reallocated.  If `attrs' is NULL for first attribute this
213  *    allocates the buffer and returns it.  This can be called multiple
214  *    times to add multiple attributes to the `attrs' buffer.  The `flags'
215  *    indicates the validity of the added attribute.
216  *
217  *    The `object' must always be the same data type as defined with
218  *    SilcAttribute (see the comments) for all attributes.
219  *
220  ***/
221 SilcBuffer silc_attribute_payload_encode(SilcBuffer attrs,
222                                          SilcAttribute attribute,
223                                          SilcAttributeFlags flags,
224                                          void *object,
225                                          SilcUInt32 object_size);
226
227 /****f* silccore/SilcAttributesAPI/silc_attribute_payload_parse_list
228  *
229  * SYNOPSIS
230  *
231  *    SilcDList
232  *    silc_attribute_payload_parse_list(const unsigned char *payload,
233  *                                      SilcUInt32 payload_len);
234  *
235  * DESCRIPTION
236  *
237  *    Parses list of Attribute payloads returning list of payloads. This
238  *    is equivalent to the silc_attribute_payload_parse except that the
239  *    `buffer' now includes multiple Attribute Payloads one after the other.
240  *    You can produce such a list with silc_attribute_payload_encode
241  *    function.
242  *
243  ***/
244 SilcDList silc_attribute_payload_parse_list(const unsigned char *payload,
245                                             SilcUInt32 payload_len);
246
247 /****f* silccore/SilcAttributesAPI/silc_attribute_payload_free
248  *
249  * SYNOPSIS
250  *
251  *    void silc_attribute_payload_free(SilcAttributePayload payload);
252  *
253  * DESCRIPTION
254  *
255  *    Frees the Attribute Payload and all data in it.
256  *
257  ***/
258 void silc_attribute_payload_free(SilcAttributePayload payload);
259
260 /****f* silccore/SilcAttributesAPI/silc_attribute_payload_list_free
261  *
262  * SYNOPSIS
263  *
264  *    void silc_attribute_payload_list_free(SilcDList list);
265  *
266  * DESCRIPTION
267  *
268  *    Frees list of Attribute Payloads and all data in them.
269  *
270  ***/
271 void silc_attribute_payload_list_free(SilcDList list);
272
273 /****f* silccore/SilcAttributesAPI/silc_attribute_get_attribute
274  *
275  * SYNOPSIS
276  *
277  *    SilcAttribute silc_attribute_get_attribute(SilcAttributePayload payload);
278  *
279  * DESCRIPTION
280  *
281  *    Return the attribute type from the payload indicated by `payload'.
282  *
283  ***/
284 SilcAttribute silc_attribute_get_attribute(SilcAttributePayload payload);
285
286 /****f* silccore/SilcAttributesAPI/silc_attribute_get_flags
287  *
288  * SYNOPSIS
289  *
290  *    SilcAttributeFlags
291  *    silc_attribute_get_flags(SilcAttributePayload payload);
292  *
293  * DESCRIPTION
294  *
295  *    Return the attribute flags from the payload indicated by `payload'.
296  *
297  ***/
298 SilcAttributeFlags silc_attribute_get_flags(SilcAttributePayload payload);
299
300 /****f* silccore/SilcAttributesAPI/silc_attribute_get_data
301  *
302  * SYNOPSIS
303  *
304  *    const unsigned char *
305  *    silc_attribute_get_data(SilcAttributePayload payload,
306  *                            SilcUInt32 *data_len);
307  *
308  * DESCRIPTION
309  *
310  *    Returns the attribute data from the payload indicated by the `payload'
311  *    The caller must not free the returned data pointer.
312  *
313  ***/
314 const unsigned char *silc_attribute_get_data(SilcAttributePayload payload,
315                                              SilcUInt32 *data_len);
316
317 /* Object structures */
318
319 /****s* silccore/SilcAttributesAPI/SilcAttributesObjService
320  *
321  * NAME
322  * 
323  *    typedef struct { ... } SilcAttributesObjService;
324  *
325  * DESCRIPTION
326  *
327  *    SILC_ATTRIBUTE_SERVICE type object structure.
328  *
329  * SOURCE
330  */
331 typedef struct {
332   SilcUInt32 port;              /* IANA specified service port */
333   char address[256];            /* service address */
334   bool status;                  /* online status (TRUE present in service) */
335 } SilcAttributeObjService;
336 /***/
337
338 /****s* silccore/SilcAttributesAPI/SilcAttributesObjMime
339  *
340  * NAME
341  * 
342  *    typedef struct { ... } SilcAttributesObjMime;
343  *
344  * DESCRIPTION
345  *
346  *    Data type for MIME object as attribute.  The data in the structure
347  *    is valid as long as the payload structure is valid.
348  *
349  * SOURCE
350  */
351 typedef struct {
352   const unsigned char *mime;    /* MIME buffer */
353   SilcUInt32 mime_len;          /* length of the MIME buffer */
354 } SilcAttributeObjMime;
355 /***/
356
357 /****s* silccore/SilcAttributesAPI/SilcAttributesObjGeo
358  *
359  * NAME
360  * 
361  *    typedef struct { ... } SilcAttributesObjGeo;
362  *
363  * DESCRIPTION
364  *
365  *    SILC_ATTRIBUTE_GEOLOCATION type object.  The caller must free the
366  *    strings inside the structure.
367  *
368  * SOURCE
369  */
370 typedef struct {
371   char *longitude;              /* Longitude */
372   char *latitude;               /* Latitude */
373   char *altitude;               /* Altitude */
374   char *accuracy;               /* Accuracy in meters */
375 } SilcAttributeObjGeo;
376 /***/
377
378 /****s* silccore/SilcAttributesAPI/SilcAttributesObjDevice
379  *
380  * NAME
381  * 
382  *    typedef struct { ... } SilcAttributesObjDevice;
383  *
384  * DESCRIPTION
385  *
386  *    SILC_ATTRIBUTE_DEVICE_INFO type object.  The caller must free the
387  *    strings inside the structure.
388  *
389  * SOURCE
390  */
391 typedef struct {
392   SilcAttributeDevice type;     /* device type */
393   char *manufacturer;           /* manufacturer of the device */
394   char *version;                /* device version string */
395   char *model;                  /* device model string */
396   char *language;               /* device language (ISO 639-2/T) */
397 } SilcAttributeObjDevice;
398 /***/
399
400 /****s* silccore/SilcAttributesAPI/SilcAttributesObjPk
401  *
402  * NAME
403  * 
404  *    typedef struct { ... } SilcAttributesObjPk;
405  *
406  * DESCRIPTION
407  *
408  *    Data type for public key, certificate or digital signatures.  The
409  *    caller must free the data inside the structure.
410  *
411  * SOURCE
412  */
413 typedef struct {
414   char *type;                   /* public key/certificate type, NULL
415                                    when contains digital signature. */
416   unsigned char *data;          /* public key/cert/signature data. The
417                                    encoding depends of the `type'. */
418   SilcUInt32 data_len;          /* data length */
419 } SilcAttributeObjPk;
420 /***/
421
422 /****f* silccore/SilcAttributesAPI/silc_attribute_get_object
423  *
424  * SYNOPSIS
425  *
426  *    bool silc_attribute_get_object(SilcAttributePayload payload,
427  *                                   SilcAttribute attribute,
428  *                                   void **object,
429  *                                   SilcUInt32 object_size);
430  *
431  * DESCRIPTION
432  *
433  *    Returns the already parsed attribute object by the attribute type
434  *    indicated by `attribute'.  Copies the data into the `object' which
435  *    must be sent as argument (and must be of correct type and size).
436  *    The `object_size' indicates the size of the `*object' sent.
437  *    Returns TRUE if the `attribute' attribute was found and FALSE
438  *    if such attribute is not present in the `payload', or the `object_size'
439  *    is not sufficient.  See the definition of SilcAttribute for the
440  *    list of attributes and the required object types for attributes.
441  *
442  ***/
443 bool silc_attribute_get_object(SilcAttributePayload payload,
444                                SilcAttribute attribute,
445                                void **object, SilcUInt32 object_size);
446
447 #endif /* SILCATTRS_H */