1 /* Test message queue passing.
2 Copyright (C) 2004-2015 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Jakub Jelinek <jakub@redhat.com>, 2004.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
32 #include "tst-mqueue.h"
35 #define TEST_FUNCTION do_test ()
41 char name
[sizeof "/tst-mqueue4-" + sizeof (pid_t
) * 3 + NAME_MAX
];
43 p
= name
+ snprintf (name
, sizeof (name
), "/tst-mqueue4-%u", getpid ());
44 struct mq_attr attr
= { .mq_maxmsg
= 2, .mq_msgsize
= 2 };
45 mqd_t q
= mq_open (name
, O_CREAT
| O_EXCL
| O_RDWR
, 0600, &attr
);
49 printf ("mq_open failed with: %m\n");
56 memset (p
+ 1, 'x', NAME_MAX
+ 1 - (p
- name
));
57 name
[NAME_MAX
+ 1] = '\0';
59 mqd_t q2
= mq_open (name
, O_CREAT
| O_EXCL
| O_RDWR
, 0600, &attr
);
62 printf ("mq_open with NAME_MAX long name compoment failed with: %m\n");
66 if (mq_unlink (name
) != 0)
68 printf ("mq_unlink failed: %m\n");
72 if (mq_close (q2
) != 0)
74 printf ("mq_close failed: %m\n");
78 name
[NAME_MAX
+ 1] = 'x';
79 name
[NAME_MAX
+ 2] = '\0';
80 q2
= mq_open (name
, O_CREAT
| O_EXCL
| O_RDWR
, 0600, &attr
);
83 puts ("mq_open with too long name component unexpectedly succeeded");
88 else if (errno
!= ENAMETOOLONG
)
90 printf ("mq_open with too long name component did not fail with "
91 "ENAMETOOLONG: %m\n");
95 if (mq_unlink (name
) == 0)
97 puts ("mq_unlink with too long name component unexpectedly succeeded");
100 else if (errno
!= ENAMETOOLONG
)
102 printf ("mq_unlink with too long name component did not fail with "
103 "ENAMETOOLONG: %m\n");
110 q2
= mq_open (name
, O_CREAT
| O_RDWR
, 0600, &attr
);
111 if (q2
== (mqd_t
) -1)
113 printf ("mq_open without O_EXCL failed with %m\n");
119 if (mq_send (q
, buf
, 2, 4) != 0)
121 printf ("mq_send failed: %m\n");
125 if (mq_send (q
, buf
+ 1, 1, 5) != 0)
127 printf ("mq_send failed: %m\n");
131 if (mq_getattr (q2
, &attr
) != 0)
133 printf ("mq_getattr failed: %m\n");
137 if ((attr
.mq_flags
& O_NONBLOCK
)
138 || attr
.mq_maxmsg
!= 2
139 || attr
.mq_msgsize
!= 2
140 || attr
.mq_curmsgs
!= 2)
142 printf ("mq_getattr returned unexpected { .mq_flags = %jd,\n"
143 ".mq_maxmsg = %jd, .mq_msgsize = %jd, .mq_curmsgs = %jd }\n",
144 (intmax_t) attr
.mq_flags
, (intmax_t) attr
.mq_maxmsg
,
145 (intmax_t) attr
.mq_msgsize
, (intmax_t) attr
.mq_curmsgs
);
150 if (clock_gettime (CLOCK_REALTIME
, &ts
) == 0)
154 ts
.tv_sec
= time (NULL
) + 1;
158 if (mq_timedsend (q2
, buf
, 1, 1, &ts
) == 0)
160 puts ("mq_timedsend unexpectedly succeeded");
163 else if (errno
!= ETIMEDOUT
)
165 printf ("mq_timedsend did not fail with ETIMEDOUT: %m\n");
169 if (mq_close (q2
) != 0)
171 printf ("mq_close failed: %m\n");
175 q2
= mq_open (name
, O_RDONLY
, 0600);
176 if (q2
== (mqd_t
) -1)
178 printf ("mq_open without O_CREAT failed with %m\n");
182 mqd_t q3
= mq_open (name
, O_RDONLY
, 0600);
183 if (q3
== (mqd_t
) -1)
185 printf ("mq_open without O_CREAT failed with %m\n");
189 memset (buf
, ' ', sizeof (buf
));
192 ssize_t rets
= mq_receive (q2
, buf
, 2, &prio
);
196 printf ("mq_receive failed with: %m\n");
198 printf ("mq_receive returned %zd != 1\n", rets
);
201 else if (prio
!= 5 || memcmp (buf
, "k ", 3) != 0)
203 printf ("mq_receive returned prio %u (2) buf \"%c%c%c\" (\"k \")\n",
204 prio
, buf
[0], buf
[1], buf
[2]);
208 if (mq_getattr (q3
, &attr
) != 0)
210 printf ("mq_getattr failed: %m\n");
214 if ((attr
.mq_flags
& O_NONBLOCK
)
215 || attr
.mq_maxmsg
!= 2
216 || attr
.mq_msgsize
!= 2
217 || attr
.mq_curmsgs
!= 1)
219 printf ("mq_getattr returned unexpected { .mq_flags = %jd,\n"
220 ".mq_maxmsg = %jd, .mq_msgsize = %jd, .mq_curmsgs = %jd }\n",
221 (intmax_t) attr
.mq_flags
, (intmax_t) attr
.mq_maxmsg
,
222 (intmax_t) attr
.mq_msgsize
, (intmax_t) attr
.mq_curmsgs
);
226 rets
= mq_receive (q3
, buf
, 2, NULL
);
230 printf ("mq_receive failed with: %m\n");
232 printf ("mq_receive returned %zd != 2\n", rets
);
235 else if (memcmp (buf
, "jk ", 3) != 0)
237 printf ("mq_receive returned buf \"%c%c%c\" != \"jk \"\n",
238 buf
[0], buf
[1], buf
[2]);
242 if (clock_gettime (CLOCK_REALTIME
, &ts
) == 0)
246 ts
.tv_sec
= time (NULL
) + 1;
250 if (mq_timedreceive (q2
, buf
, 2, NULL
, &ts
) != -1)
252 puts ("mq_timedreceive on empty queue unexpectedly succeeded");
255 else if (errno
!= ETIMEDOUT
)
257 printf ("mq_timedreceive on empty queue did not fail with "
262 if (mq_unlink (name
) != 0)
264 printf ("mq_unlink failed: %m\n");
268 if (mq_close (q
) != 0)
270 printf ("mq_close failed: %m\n");
274 if (mq_close (q2
) != 0)
276 printf ("mq_close failed: %m\n");
280 if (mq_close (q3
) != 0)
282 printf ("mq_close failed: %m\n");
289 #include "../test-skeleton.c"