summaryrefslogtreecommitdiff
path: root/src/shared/dlt_shm.c
blob: 59915ba9c78164d6ccfaeb2a3c5cafda7b9a77fa (plain)
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
/*
* Dlt- Diagnostic Log and Trace user library
* @licence app begin@
 *
 * Copyright (C) 2011, BMW AG - Alexander Wenzel <alexander.wenzel@bmw.de>
 * 
 * This program is free software; you can redistribute it and/or modify it under the terms of the 
 * GNU Lesser General Public License, version 2.1, as published by the Free Software Foundation.
 * 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, version 2.1, for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public License, version 2.1, along 
 * with this program; if not, see <http://www.gnu.org/licenses/lgpl-2.1.html>.
 * 
 * Note that the copyright holders assume that the GNU Lesser General Public License, version 2.1, may 
 * also be applicable to programs even in cases in which the program is not a library in the technical sense.
 * 
 * Linking DLT statically or dynamically with other modules is making a combined work based on DLT. You may 
 * license such other modules under the GNU Lesser General Public License, version 2.1. If you do not want to 
 * license your linked modules under the GNU Lesser General Public License, version 2.1, you 
 * may use the program under the following exception.
 * 
 * As a special exception, the copyright holders of DLT give you permission to combine DLT 
 * with software programs or libraries that are released under any license unless such a combination is not
 * permitted by the license of such a software program or library. You may copy and distribute such a 
 * system following the terms of the GNU Lesser General Public License, version 2.1, including this
 * special exception, for DLT and the licenses of the other code concerned.
 * 
 * Note that people who make modified versions of DLT are not obligated to grant this special exception 
 * for their modified versions; it is their choice whether to do so. The GNU Lesser General Public License, 
 * version 2.1, gives permission to release a modified version without this exception; this exception 
 * also makes it possible to release a modified version which carries forward this exception.
 *
 * @licence end@
*/


/*******************************************************************************
**                                                                            **
**  SRC-MODULE: dlt_shm.c                                                     **
**                                                                            **
**  TARGET    : linux                                                         **
**                                                                            **
**  PROJECT   : DLT                                                           **
**                                                                            **
**  AUTHOR    : Alexander Wenzel Alexander.AW.Wenzel@bmw.de                   **
**                                                                            **
**  PURPOSE   :                                                               **
**                                                                            **
**  REMARKS   :                                                               **
**                                                                            **
**  PLATFORM DEPENDANT [yes/no]: yes                                          **
**                                                                            **
**  TO BE CHANGED BY USER [yes/no]: no                                        **
**                                                                            **
*******************************************************************************/

/*******************************************************************************
**                      Author Identity                                       **
********************************************************************************
**                                                                            **
** Initials     Name                       Company                            **
** --------     -------------------------  ---------------------------------- **
**  aw          Alexander Wenzel           BMW                                **
*******************************************************************************/

#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#include <sys/sem.h>
#include <sys/stat.h>
#include <stdio.h>
#include <string.h>

#if !defined(_MSC_VER)
#include <unistd.h>
#include <syslog.h>
#endif

#include <dlt_shm.h>
#include <dlt_common.h>

void dlt_shm_print_hex(char *ptr,int size)
{
    int num;

    for (num=0;num<size;num++)
    {
		if((num%16)==15)
			printf("%.2x\n",((unsigned char*)ptr)[num]);
		else
			printf("%.2x ",((unsigned char*)ptr)[num]);
    }
    printf("\n");
}

void dlt_shm_pv(int id,int operation)
{
	static struct sembuf semaphor;
	
	semaphor.sem_op = operation;
	semaphor.sem_flg = SEM_UNDO;
	
	if(semop(id, &semaphor,1) == -1) {
		dlt_log(LOG_ERR,"SHM: semop");
	}
}

int dlt_shm_init_server(DltShm *buf,int key,int size) {
	struct shmid_ds shm_buf;
	char str[256];

	// Init parameters
	buf->shm = NULL;
	buf->shmid = 0;
	buf->semid = 0;
	buf->size = 0;
	buf->mem = 0;

    // Create the segment.
    if ((buf->shmid = shmget(key, size, IPC_CREAT | 0666)) < 0) {
        dlt_log(LOG_ERR,"SHM: shmget");
        return -1; /* ERROR */
    }

	// get the size of shm
	if (shmctl(buf->shmid,  IPC_STAT, &shm_buf))
	{
		dlt_log(LOG_ERR,"SHM: shmctl");
        return -1; /* ERROR */
	}	

    // Now we attach the segment to our data space.
    if ((buf->shm = shmat(buf->shmid, NULL, 0)) == (char *) -1) {
        dlt_log(LOG_ERR,"SHM: shmat");
        return -1; /* ERROR */
    }
	
	// Init semaphore
	if( (buf->semid = semget(DLT_SHM_SEM,1,S_IRWXU|S_IRWXG|S_IRWXO|IPC_CREAT|IPC_EXCL)) == -1 ) {
		if( (buf->semid = semget(DLT_SHM_SEM,1,S_IRWXU|S_IRWXG|S_IRWXO|IPC_EXCL)) == -1 ) {
			dlt_log(LOG_ERR,"SHM: semget");
			return -1; /* ERROR */
		}
	}
	if( semctl(buf->semid,0,SETVAL,(int)1) == -1 ) {
        dlt_log(LOG_ERR,"SHM: semctl");
        return -1; /* ERROR */
	}
	
	// Init pointers
    ((int*)(buf->shm))[0] = 0;  // pointer to write memory  
    ((int*)(buf->shm))[1] = 0;  // pointer to read memory
    ((int*)(buf->shm))[2] = 0;  // number of packets
    buf->mem = (char*)(&(((int*)(buf->shm))[3]));
    buf->size = shm_buf.shm_segsz - (buf->mem - buf->shm);

	// clear memory
	memset(buf->mem,0,buf->size);
    
	snprintf(str,sizeof(str),"SHM: Size %d\n",buf->size);
	dlt_log(LOG_INFO, str);

	return 0; /* OK */
}

int dlt_shm_init_client(DltShm *buf,int key) {
	struct shmid_ds shm_buf;

	// init parameters
	buf->shm = NULL;
	buf->shmid = 0;
	buf->semid = 0;
	buf->size = 0;
	buf->mem = 0;

    // Create the segment.
    if ((buf->shmid = shmget(key, 0, 0666)) < 0) {
        dlt_log(LOG_ERR,"SHM: shmget");
        return -1; /* ERROR */
    }

	// get the size of shm
	if (shmctl(buf->shmid,  IPC_STAT, &shm_buf))
	{
	    dlt_log(LOG_ERR,"SHM: shmctl");
            return -1; /* ERROR */
	}	

	// Now we attach the segment to our data space.
	if ((buf->shm = shmat(buf->shmid, NULL, 0)) == (char *) -1) {
		dlt_log(LOG_ERR,"shmat");
		return -1; /* ERROR */
	}
        	
	// Init semaphore
	if( (buf->semid = semget(DLT_SHM_SEM,0,0)) == -1 ) {
            dlt_log(LOG_ERR,"SHM: semget");
            return -1; /* ERROR */
	}

	// Init pointers
	buf->mem = (char*)(&(((int*)(buf->shm))[3]));
	buf->size = shm_buf.shm_segsz - (buf->mem - buf->shm);
    
	return 0; /* OK */
}

void dlt_shm_info(DltShm *buf)
{
	char str[256];

	snprintf(str,sizeof(str),"SHM: SHM id: %d\n",buf->shmid);
	dlt_log(LOG_INFO, str);
	snprintf(str,sizeof(str),"SHM: Available size: %d\n",buf->size);
	dlt_log(LOG_INFO, str);
	snprintf(str,sizeof(str),"SHM: SHM full start address: %lX\n",(unsigned long)buf->shm);
	dlt_log(LOG_INFO, str);
	snprintf(str,sizeof(str),"SHM: SHM start address: %lX\n",(unsigned long)buf->mem);
	dlt_log(LOG_INFO, str);

}

void dlt_shm_status(DltShm *buf)
{
	int write, read, count;
	char str[256];

	write = ((int*)(buf->shm))[0];
	read = ((int*)(buf->shm))[1];
	count = ((int*)(buf->shm))[2];

	snprintf(str,sizeof(str),"SHM: Write: %d\n",write);
	dlt_log(LOG_INFO, str);
	snprintf(str,sizeof(str),"SHM: Read: %d\n",read);
	dlt_log(LOG_INFO, str);
	snprintf(str,sizeof(str),"SHM: Count: %d\n",count);
	dlt_log(LOG_INFO, str);
}

int dlt_shm_get_total_size(DltShm *buf)
{
	return buf->size;
}

int dlt_shm_get_used_size(DltShm *buf)
{
	int write, read, count;

	DLT_SHM_SEM_GET(buf->semid);
	write = ((int*)(buf->shm))[0];
	read = ((int*)(buf->shm))[1];
	count = ((int*)(buf->shm))[2];
	DLT_SHM_SEM_FREE(buf->semid);

	if(count == 0)
		return 0;
		
	if(write>read)
		return (write - read);
	
	return (buf->size - read + write);
}

int dlt_shm_get_message_count(DltShm *buf)
{
	return ((int*)(buf->shm))[2];
}

void dlt_shm_write_block(DltShm *buf,int *write, const unsigned char *data,unsigned int size)
{
	if((*write+size) <= buf->size) {
		// write one block
		memcpy(buf->mem+*write,data,size);
		*write += size;
	}
	else {
		// write two blocks
		memcpy(buf->mem+*write, data, buf->size-*write);
		memcpy(buf->mem, data+buf->size-*write, size-buf->size+*write);
		*write += size-buf->size;
	}
}

void dlt_shm_read_block(DltShm *buf,int *read,unsigned char *data,unsigned int size)
{
	if((*read+size) <= buf->size) {
		// read one block
		memcpy(data,buf->mem+*read,size);
		*read += size;
	}
	else {
		// read two blocks
		memcpy(data, buf->mem+*read, buf->size-*read);
		memcpy(data+buf->size-*read, buf->mem, size-buf->size+*read);
		*read += size-buf->size;
	}
}
int dlt_shm_push(DltShm *buf,const unsigned char *data1,unsigned int size1,const unsigned char *data2,unsigned int size2,const unsigned char *data3,unsigned int size3)
{
	int free_size;	
	int write, read;
	DltShmBlockHead head;
	
	if(!buf->mem) {
		// shm not initialised
		dlt_log(LOG_ERR,"SHM: SHM not initialised\n");
		return -1; /* ERROR */
	}

	// get semaphore
	DLT_SHM_SEM_GET(buf->semid);

	// get current write pointer
	write = ((int*)(buf->shm))[0];
	read = ((int*)(buf->shm))[1];

	// check pointers
	if((read>buf->size) || (write>buf->size))
	{
		dlt_log(LOG_ERR,"SHM: Pointer out of range\n");
		dlt_shm_reset(buf);
		return -1; // ERROR		
	}

	// calculate free size
	if(read>write)
		free_size = read - write;
	else
		free_size = buf->size - write + read;
	
	// check size
	if(free_size < (sizeof(DltShmBlockHead)+size1+size2+size3)) {
		DLT_SHM_SEM_FREE(buf->semid);
		dlt_log(LOG_ERR,"SHM: SHM is full\n");
		return -1; // ERROR
	}

	// set header
	strcpy(head.head,DLT_SHM_HEAD);
	head.status = 2;
	head.size = size1+size2+size3;

	// write data
	dlt_shm_write_block(buf,&write,(unsigned char*)&head,sizeof(DltShmBlockHead));
	if(size1) dlt_shm_write_block(buf,&write,data1,size1);
	if(size2) dlt_shm_write_block(buf,&write,data2,size2);
	if(size3) dlt_shm_write_block(buf,&write,data3,size3);

	// update global shm pointers
	((int*)(buf->shm))[0] = write; // set new write pointer 	
	((int*)(buf->shm))[2] += 1; // increase counter

	// free semaphore
	DLT_SHM_SEM_FREE(buf->semid);

	return 0; // OK
}

int dlt_shm_pull(DltShm *buf,unsigned char *data, int max_size)
{
	int used_size;	
	int write, read, count;
	char head_compare[] = DLT_SHM_HEAD;
	DltShmBlockHead head;
	
	if(!buf->mem) {
		// shm not initialised
		dlt_log(LOG_ERR,"SHM: SHM not initialised\n");
		return -1; /* ERROR */
	}

	// get current write pointer
	DLT_SHM_SEM_GET(buf->semid);
	write = ((int*)(buf->shm))[0];
	read = ((int*)(buf->shm))[1];
	count = ((int*)(buf->shm))[2];

	// check pointers
	if((read>buf->size) || (write>buf->size) || (count<0))
	{
		dlt_log(LOG_ERR,"SHM: Pointer out of range\n");
		dlt_shm_reset(buf);
		return -1; // ERROR		
	}

	// check if data is in there
	if(count==0) {
		DLT_SHM_SEM_FREE(buf->semid);
		if(write!=read)
		{
			dlt_log(LOG_ERR,"SHM: SHM should be empty, but is not\n");
			dlt_shm_reset(buf);
		}
		return -1; // ERROR		
	}

	// calculate used size
	if(write>read)
		used_size = write - read;
	else	
		used_size = buf->size - read + write;

	// first check size
	if(used_size < (sizeof(DltShmBlockHead))) {
		DLT_SHM_SEM_FREE(buf->semid);
		dlt_log(LOG_ERR,"SHM: Size check 1 failed\n");
		dlt_shm_reset(buf);
		return -1; // ERROR
	}

	// read header
	dlt_shm_read_block(buf,&read,(unsigned char*)&head,sizeof(DltShmBlockHead));

	// check header
	if(memcmp((unsigned char*)(head.head),head_compare,sizeof(head_compare))!=0)
	{
		DLT_SHM_SEM_FREE(buf->semid);
		dlt_log(LOG_ERR,"SHM: Header head check failed\n");
		dlt_shm_reset(buf);
		return -1; // ERROR
	}
	if(head.status != 2)
	{
		DLT_SHM_SEM_FREE(buf->semid);
		dlt_log(LOG_ERR,"SHM: Header status check failed\n");
		dlt_shm_reset(buf);
		return -1; // ERROR
	}

	// second check size
	if(used_size < (sizeof(DltShmBlockHead)+head.size)) {
		DLT_SHM_SEM_FREE(buf->semid);
		dlt_log(LOG_ERR,"SHM: Size check 2 failed\n");
		dlt_shm_reset(buf);
		return -1; // ERROR
	}

	// third check size
	if(head.size > max_size) {
		dlt_log(LOG_ERR,"SHM: Size check 3 failed\n");
		// nothing to do but data does not fit provided buffer
	}

	// read data
	dlt_shm_read_block(buf,&read,data,head.size);

	// update buffer pointers
	((int*)(buf->shm))[1] = read; // set new read pointer 	
	((int*)(buf->shm))[2] -= 1; // decrease counter

	DLT_SHM_SEM_FREE(buf->semid);

	return head.size; // OK
}

int dlt_shm_copy(DltShm *buf,unsigned char *data, int max_size)
{
	int used_size;	
	int write, read, count;
	char head_compare[] = DLT_SHM_HEAD;
	DltShmBlockHead head;
	
	if(!buf->mem) {
		// shm not initialised
		dlt_log(LOG_ERR,"SHM: SHM not initialised\n");
		return -1; /* ERROR */
	}

	// get current write pointer
	DLT_SHM_SEM_GET(buf->semid);
	write = ((int*)(buf->shm))[0];
	read = ((int*)(buf->shm))[1];
	count = ((int*)(buf->shm))[2];

	// check pointers
	if((read>buf->size) || (write>buf->size) || (count<0))
	{
		dlt_log(LOG_ERR,"SHM: Pointer out of range\n");
		dlt_shm_reset(buf);
		return -1; // ERROR		
	}

	// check if data is in there
	if(count==0) {
		DLT_SHM_SEM_FREE(buf->semid);
		if(write!=read)
		{
			dlt_log(LOG_ERR,"SHM: SHM should be empty, but is not\n");
			dlt_shm_reset(buf);
		}
		return -1; // ERROR		
	}

	// calculate used size
	if(write>read)
		used_size = write - read;
	else	
		used_size = buf->size - read + write;

	// first check size
	if(used_size < (sizeof(DltShmBlockHead))) {
		DLT_SHM_SEM_FREE(buf->semid);
		dlt_log(LOG_ERR,"SHM: Size check 1 failed\n");
		dlt_shm_reset(buf);
		return -1; // ERROR
	}

	// read header
	dlt_shm_read_block(buf,&read,(unsigned char*)&head,sizeof(DltShmBlockHead));

	// check header
	if(memcmp((unsigned char*)(head.head),head_compare,sizeof(head_compare))!=0)
	{
		DLT_SHM_SEM_FREE(buf->semid);
		dlt_log(LOG_ERR,"SHM: Header head check failed\n");
		dlt_shm_reset(buf);
		return -1; // ERROR
	}
	if(head.status != 2)
	{
		DLT_SHM_SEM_FREE(buf->semid);
		dlt_log(LOG_ERR,"SHM: Header status check failed\n");
		dlt_shm_reset(buf);
		return -1; // ERROR
	}

	// second check size
	if(used_size < (sizeof(DltShmBlockHead)+head.size)) {
		DLT_SHM_SEM_FREE(buf->semid);
		dlt_log(LOG_ERR,"SHM: Size check 2 failed\n");
		dlt_shm_reset(buf);
		return -1; // ERROR
	}

	// third check size
	if(head.size > max_size) {
		dlt_log(LOG_ERR,"SHM: Size check 3 failed\n");
		// nothing to do but data does not fit provided buffer
	}

	// read data
	dlt_shm_read_block(buf,&read,data,head.size);

	// do not update pointers

	DLT_SHM_SEM_FREE(buf->semid);

	return head.size; // OK
}

int dlt_shm_remove(DltShm *buf)
{
	int used_size;	
	int write, read, count;
	char head_compare[] = DLT_SHM_HEAD;
	DltShmBlockHead head;
	
	if(!buf->mem) {
		// shm not initialised
		dlt_log(LOG_ERR,"SHM: SHM not initialised\n");
		return -1; /* ERROR */
	}

	// get current write pointer
	DLT_SHM_SEM_GET(buf->semid);
	write = ((int*)(buf->shm))[0];
	read = ((int*)(buf->shm))[1];
	count = ((int*)(buf->shm))[2];

	// check pointers
	if((read>buf->size) || (write>buf->size) || (count<0))
	{
		dlt_log(LOG_ERR,"SHM: Pointer out of range\n");
		dlt_shm_reset(buf);
		return -1; // ERROR		
	}

	// check if data is in there
	if(count==0) {
		DLT_SHM_SEM_FREE(buf->semid);
		if(write!=read)
		{
			dlt_log(LOG_ERR,"SHM: SHM should be empty, but is not\n");
			dlt_shm_reset(buf);
		}
		return -1; // ERROR		
	}

	// calculate used size
	if(write>read)
		used_size = write - read;
	else	
		used_size = buf->size - read + write;

	// first check size
	if(used_size < (sizeof(DltShmBlockHead))) {
		DLT_SHM_SEM_FREE(buf->semid);
		dlt_log(LOG_ERR,"SHM: Size check 1 failed\n");
		dlt_shm_reset(buf);
		return -1; // ERROR
	}

	// read header
	dlt_shm_read_block(buf,&read,(unsigned char*)&head,sizeof(DltShmBlockHead));

	// check header
	if(memcmp((unsigned char*)(head.head),head_compare,sizeof(head_compare))!=0)
	{
		DLT_SHM_SEM_FREE(buf->semid);
		dlt_log(LOG_ERR,"SHM: Header head check failed\n");
		dlt_shm_reset(buf);
		return -1; // ERROR
	}
	if(head.status != 2)
	{
		DLT_SHM_SEM_FREE(buf->semid);
		dlt_log(LOG_ERR,"SHM: Header status check failed\n");
		dlt_shm_reset(buf);
		return -1; // ERROR
	}

	// second check size
	if(used_size < (sizeof(DltShmBlockHead)+head.size)) {
		DLT_SHM_SEM_FREE(buf->semid);
		dlt_log(LOG_ERR,"SHM: Size check 2 failed\n");
		dlt_shm_reset(buf);
		return -1; // ERROR
	}

	// do not copy data

	// update buffer pointers
	if( (read+head.size) <= buf->size)
		((int*)(buf->shm))[1] = read+head.size; // set new read pointer 	
	else
		((int*)(buf->shm))[1] = read+head.size-buf->size; // set new read pointer 		
	((int*)(buf->shm))[2] -= 1; // decrease counter

	DLT_SHM_SEM_FREE(buf->semid);

	return head.size; // OK	
}

int dlt_shm_reset(DltShm *buf) {
	
	dlt_log(LOG_ERR,"SHM: SHM reset triggered.\n");

	/* reset pointers and counters */	
	DLT_SHM_SEM_GET(buf->semid);
	((int*)(buf->shm))[0] = 0;  // pointer to write memory  
	((int*)(buf->shm))[1] = 0;  // pointer to read memory
	((int*)(buf->shm))[2] = 0;  // number of packets
	DLT_SHM_SEM_FREE(buf->semid);

	return 0; /* OK */
}

int dlt_shm_recover(DltShm *buf) {

	return -1; /* OK */
}

int dlt_shm_free_server(DltShm *buf) {

	if(!buf->shm) {
        dlt_log(LOG_ERR,"SHM: Shared memory segment not attached\n");
        return -1; /* ERROR */
    }
		
	if(shmdt(buf->shm)) {
        dlt_log(LOG_ERR,"SHM: shmdt");
        return -1; /* ERROR */
    }

	if(shmctl(buf->shmid,IPC_RMID,NULL) == -1) {
        dlt_log(LOG_ERR,"SHM: shmdt");
        return -1; /* ERROR */
	}

	if(semctl(buf->semid,0,IPC_RMID,(int)0) == -1) {
        dlt_log(LOG_ERR,"SHM: shmdt");
        return -1; /* ERROR */
	}

	// Reset parameters
	buf->shm = NULL;
	buf->shmid = 0;
	buf->semid = 0;
	buf->size = 0;
	buf->mem = 0;
		
	return 0; /* OK */
}

int dlt_shm_free_client(DltShm *buf) {

	if(!buf->shm) {
        dlt_log(LOG_ERR,"SHM: Shared memory segment not attached\n");
        return -1; /* ERROR */
    }
		
	if(shmdt(buf->shm)) {
        dlt_log(LOG_ERR,"SHM: shmdt");
        return -1; /* ERROR */
    }

	// Reset parameters
	buf->shm = NULL;
	buf->shmid = 0;
	buf->semid = 0;
	buf->size = 0;
	buf->mem = 0;
		
	return 0; /* OK */
}