aboutsummaryrefslogtreecommitdiff
path: root/testcases/open_posix_testsuite/conformance/interfaces/mq_open/27-1.c
blob: 7737b02215801cfa7f9b55b1ffe6f9b7ca6b1319 (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
/*
 * Copyright (c) 2003, Intel Corporation. All rights reserved.
 * Created by:  julie.n.fleischer REMOVE-THIS AT intel DOT com
 * This file is licensed under the GPL license.  For the full content
 * of this license, see the COPYING file at the top level of this
 * source tree.
 */

/*
 * Test that mq_open() fails with ENAMETOOLONG if the name parameter's
 * length is greater than PATH_MAX.
 */

#include <stdio.h>
#include <mqueue.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <limits.h>
#include "posixtest.h"

int main(void)
{
	char qname[PATH_MAX * 2];
	mqd_t queue;
	int i;

	sprintf(qname, "/mq_open_27-1_%d", getpid());

	/* Ensures queue name will have > PATH_MAX chars */
	for (i = 0; i < PATH_MAX; i++)
		strcat(qname, "0");

	queue = mq_open(qname, O_CREAT | O_RDWR, S_IRUSR | S_IWUSR, NULL);
	if (queue != (mqd_t) - 1) {
		printf("mq_open() should have failed with queue name %s\n",
		       qname);
		printf("Test FAILED\n");
		mq_close(queue);
		mq_unlink(qname);
		return PTS_FAIL;
	}
#ifdef DEBUG
	printf("mq_open() failed as expected\n");
#endif

	if (errno != ENAMETOOLONG) {
		printf("errno != ENAMETOOLONG\n");
		printf("Test FAILED\n");
		return PTS_FAIL;
	}
#ifdef DEBUG
	printf("errno == ENAMETOOLONG\n");
#endif

	printf("Test PASSED\n");
	return PTS_PASS;
}