Gentoo Archives: gentoo-commits

From: Jason Zaman <perfinion@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/hardened-refpolicy:master commit in: policy/modules/kernel/
Date: Thu, 30 Mar 2017 17:06:49
Message-Id: 1490887506.25add4e46adc491ea4a753fc9177db349b9d8959.perfinion@gentoo
1 commit: 25add4e46adc491ea4a753fc9177db349b9d8959
2 Author: Jason Zaman <jason <AT> perfinion <DOT> com>
3 AuthorDate: Thu Mar 30 15:25:06 2017 +0000
4 Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 30 15:25:06 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/hardened-refpolicy.git/commit/?id=25add4e4
7
8 corenetwork: regenerate files
9
10 policy/modules/kernel/corenetwork.if | 18981 +++++++++++++++++++--------------
11 policy/modules/kernel/corenetwork.te | 61 +-
12 2 files changed, 11101 insertions(+), 7941 deletions(-)
13
14 diff --git a/policy/modules/kernel/corenetwork.if b/policy/modules/kernel/corenetwork.if
15 index ee210d40..d7473484 100644
16 --- a/policy/modules/kernel/corenetwork.if
17 +++ b/policy/modules/kernel/corenetwork.if
18 @@ -859,7 +859,7 @@ interface(`corenet_udp_bind_generic_node',`
19
20 ########################################
21 ## <summary>
22 -## Bind raw sockets to genric nodes.
23 +## Bind raw sockets to generic nodes.
24 ## </summary>
25 ## <param name="domain">
26 ## <summary>
27 @@ -2757,12 +2757,12 @@ interface(`corenet_all_recvfrom_labeled',`
28
29 ########################################
30 ## <summary>
31 -## Make the specified type usable
32 -## for labeled ipsec.
33 +## Allow specified type to set the context of
34 +## a SPD entry for labeled ipsec associations.
35 ## </summary>
36 ## <param name="domain">
37 ## <summary>
38 -## Type to be used for labeled ipsec.
39 +## Domain allowed access.
40 ## </summary>
41 ## </param>
42 #
43 @@ -43917,6 +43917,449 @@ interface(`corenet_relabelto_kismet_server_packets',`
44
45 ########################################
46 ## <summary>
47 +## Send and receive TCP traffic on the kdeconnect port.
48 +## </summary>
49 +## <param name="domain">
50 +## <summary>
51 +## Domain allowed access.
52 +## </summary>
53 +## </param>
54 +## <infoflow type="both" weight="10"/>
55 +#
56 +interface(`corenet_tcp_sendrecv_kdeconnect_port',`
57 + gen_require(`
58 + type kdeconnect_port_t;
59 + ')
60 +
61 + allow $1 kdeconnect_port_t:tcp_socket { send_msg recv_msg };
62 +')
63 +
64 +########################################
65 +## <summary>
66 +## Send UDP traffic on the kdeconnect port.
67 +## </summary>
68 +## <param name="domain">
69 +## <summary>
70 +## Domain allowed access.
71 +## </summary>
72 +## </param>
73 +## <infoflow type="write" weight="10"/>
74 +#
75 +interface(`corenet_udp_send_kdeconnect_port',`
76 + gen_require(`
77 + type kdeconnect_port_t;
78 + ')
79 +
80 + allow $1 kdeconnect_port_t:udp_socket send_msg;
81 +')
82 +
83 +########################################
84 +## <summary>
85 +## Do not audit attempts to send UDP traffic on the kdeconnect port.
86 +## </summary>
87 +## <param name="domain">
88 +## <summary>
89 +## Domain to not audit.
90 +## </summary>
91 +## </param>
92 +## <infoflow type="none"/>
93 +#
94 +interface(`corenet_dontaudit_udp_send_kdeconnect_port',`
95 + gen_require(`
96 + type kdeconnect_port_t;
97 + ')
98 +
99 + dontaudit $1 kdeconnect_port_t:udp_socket send_msg;
100 +')
101 +
102 +########################################
103 +## <summary>
104 +## Receive UDP traffic on the kdeconnect port.
105 +## </summary>
106 +## <param name="domain">
107 +## <summary>
108 +## Domain allowed access.
109 +## </summary>
110 +## </param>
111 +## <infoflow type="read" weight="10"/>
112 +#
113 +interface(`corenet_udp_receive_kdeconnect_port',`
114 + gen_require(`
115 + type kdeconnect_port_t;
116 + ')
117 +
118 + allow $1 kdeconnect_port_t:udp_socket recv_msg;
119 +')
120 +
121 +########################################
122 +## <summary>
123 +## Do not audit attempts to receive UDP traffic on the kdeconnect port.
124 +## </summary>
125 +## <param name="domain">
126 +## <summary>
127 +## Domain to not audit.
128 +## </summary>
129 +## </param>
130 +## <infoflow type="none"/>
131 +#
132 +interface(`corenet_dontaudit_udp_receive_kdeconnect_port',`
133 + gen_require(`
134 + type kdeconnect_port_t;
135 + ')
136 +
137 + dontaudit $1 kdeconnect_port_t:udp_socket recv_msg;
138 +')
139 +
140 +########################################
141 +## <summary>
142 +## Send and receive UDP traffic on the kdeconnect port.
143 +## </summary>
144 +## <param name="domain">
145 +## <summary>
146 +## Domain allowed access.
147 +## </summary>
148 +## </param>
149 +## <infoflow type="both" weight="10"/>
150 +#
151 +interface(`corenet_udp_sendrecv_kdeconnect_port',`
152 + corenet_udp_send_kdeconnect_port($1)
153 + corenet_udp_receive_kdeconnect_port($1)
154 +')
155 +
156 +########################################
157 +## <summary>
158 +## Do not audit attempts to send and receive
159 +## UDP traffic on the kdeconnect port.
160 +## </summary>
161 +## <param name="domain">
162 +## <summary>
163 +## Domain to not audit.
164 +## </summary>
165 +## </param>
166 +## <infoflow type="none"/>
167 +#
168 +interface(`corenet_dontaudit_udp_sendrecv_kdeconnect_port',`
169 + corenet_dontaudit_udp_send_kdeconnect_port($1)
170 + corenet_dontaudit_udp_receive_kdeconnect_port($1)
171 +')
172 +
173 +########################################
174 +## <summary>
175 +## Bind TCP sockets to the kdeconnect port.
176 +## </summary>
177 +## <param name="domain">
178 +## <summary>
179 +## Domain allowed access.
180 +## </summary>
181 +## </param>
182 +## <infoflow type="none"/>
183 +#
184 +interface(`corenet_tcp_bind_kdeconnect_port',`
185 + gen_require(`
186 + type kdeconnect_port_t;
187 + ')
188 +
189 + allow $1 kdeconnect_port_t:tcp_socket name_bind;
190 +
191 +')
192 +
193 +########################################
194 +## <summary>
195 +## Bind UDP sockets to the kdeconnect port.
196 +## </summary>
197 +## <param name="domain">
198 +## <summary>
199 +## Domain allowed access.
200 +## </summary>
201 +## </param>
202 +## <infoflow type="none"/>
203 +#
204 +interface(`corenet_udp_bind_kdeconnect_port',`
205 + gen_require(`
206 + type kdeconnect_port_t;
207 + ')
208 +
209 + allow $1 kdeconnect_port_t:udp_socket name_bind;
210 +
211 +')
212 +
213 +########################################
214 +## <summary>
215 +## Make a TCP connection to the kdeconnect port.
216 +## </summary>
217 +## <param name="domain">
218 +## <summary>
219 +## Domain allowed access.
220 +## </summary>
221 +## </param>
222 +#
223 +interface(`corenet_tcp_connect_kdeconnect_port',`
224 + gen_require(`
225 + type kdeconnect_port_t;
226 + ')
227 +
228 + allow $1 kdeconnect_port_t:tcp_socket name_connect;
229 +')
230 +
231 +
232 +########################################
233 +## <summary>
234 +## Send kdeconnect_client packets.
235 +## </summary>
236 +## <param name="domain">
237 +## <summary>
238 +## Domain allowed access.
239 +## </summary>
240 +## </param>
241 +## <infoflow type="write" weight="10"/>
242 +#
243 +interface(`corenet_send_kdeconnect_client_packets',`
244 + gen_require(`
245 + type kdeconnect_client_packet_t;
246 + ')
247 +
248 + allow $1 kdeconnect_client_packet_t:packet send;
249 +')
250 +
251 +########################################
252 +## <summary>
253 +## Do not audit attempts to send kdeconnect_client packets.
254 +## </summary>
255 +## <param name="domain">
256 +## <summary>
257 +## Domain to not audit.
258 +## </summary>
259 +## </param>
260 +## <infoflow type="none"/>
261 +#
262 +interface(`corenet_dontaudit_send_kdeconnect_client_packets',`
263 + gen_require(`
264 + type kdeconnect_client_packet_t;
265 + ')
266 +
267 + dontaudit $1 kdeconnect_client_packet_t:packet send;
268 +')
269 +
270 +########################################
271 +## <summary>
272 +## Receive kdeconnect_client packets.
273 +## </summary>
274 +## <param name="domain">
275 +## <summary>
276 +## Domain allowed access.
277 +## </summary>
278 +## </param>
279 +## <infoflow type="read" weight="10"/>
280 +#
281 +interface(`corenet_receive_kdeconnect_client_packets',`
282 + gen_require(`
283 + type kdeconnect_client_packet_t;
284 + ')
285 +
286 + allow $1 kdeconnect_client_packet_t:packet recv;
287 +')
288 +
289 +########################################
290 +## <summary>
291 +## Do not audit attempts to receive kdeconnect_client packets.
292 +## </summary>
293 +## <param name="domain">
294 +## <summary>
295 +## Domain allowed access.
296 +## </summary>
297 +## </param>
298 +## <infoflow type="none"/>
299 +#
300 +interface(`corenet_dontaudit_receive_kdeconnect_client_packets',`
301 + gen_require(`
302 + type kdeconnect_client_packet_t;
303 + ')
304 +
305 + dontaudit $1 kdeconnect_client_packet_t:packet recv;
306 +')
307 +
308 +########################################
309 +## <summary>
310 +## Send and receive kdeconnect_client packets.
311 +## </summary>
312 +## <param name="domain">
313 +## <summary>
314 +## Domain allowed access.
315 +## </summary>
316 +## </param>
317 +## <infoflow type="both" weight="10"/>
318 +#
319 +interface(`corenet_sendrecv_kdeconnect_client_packets',`
320 + corenet_send_kdeconnect_client_packets($1)
321 + corenet_receive_kdeconnect_client_packets($1)
322 +')
323 +
324 +########################################
325 +## <summary>
326 +## Do not audit attempts to send and receive kdeconnect_client packets.
327 +## </summary>
328 +## <param name="domain">
329 +## <summary>
330 +## Domain to not audit.
331 +## </summary>
332 +## </param>
333 +## <infoflow type="none"/>
334 +#
335 +interface(`corenet_dontaudit_sendrecv_kdeconnect_client_packets',`
336 + corenet_dontaudit_send_kdeconnect_client_packets($1)
337 + corenet_dontaudit_receive_kdeconnect_client_packets($1)
338 +')
339 +
340 +########################################
341 +## <summary>
342 +## Relabel packets to kdeconnect_client the packet type.
343 +## </summary>
344 +## <param name="domain">
345 +## <summary>
346 +## Domain allowed access.
347 +## </summary>
348 +## </param>
349 +#
350 +interface(`corenet_relabelto_kdeconnect_client_packets',`
351 + gen_require(`
352 + type kdeconnect_client_packet_t;
353 + ')
354 +
355 + allow $1 kdeconnect_client_packet_t:packet relabelto;
356 +')
357 +
358 +
359 +########################################
360 +## <summary>
361 +## Send kdeconnect_server packets.
362 +## </summary>
363 +## <param name="domain">
364 +## <summary>
365 +## Domain allowed access.
366 +## </summary>
367 +## </param>
368 +## <infoflow type="write" weight="10"/>
369 +#
370 +interface(`corenet_send_kdeconnect_server_packets',`
371 + gen_require(`
372 + type kdeconnect_server_packet_t;
373 + ')
374 +
375 + allow $1 kdeconnect_server_packet_t:packet send;
376 +')
377 +
378 +########################################
379 +## <summary>
380 +## Do not audit attempts to send kdeconnect_server packets.
381 +## </summary>
382 +## <param name="domain">
383 +## <summary>
384 +## Domain to not audit.
385 +## </summary>
386 +## </param>
387 +## <infoflow type="none"/>
388 +#
389 +interface(`corenet_dontaudit_send_kdeconnect_server_packets',`
390 + gen_require(`
391 + type kdeconnect_server_packet_t;
392 + ')
393 +
394 + dontaudit $1 kdeconnect_server_packet_t:packet send;
395 +')
396 +
397 +########################################
398 +## <summary>
399 +## Receive kdeconnect_server packets.
400 +## </summary>
401 +## <param name="domain">
402 +## <summary>
403 +## Domain allowed access.
404 +## </summary>
405 +## </param>
406 +## <infoflow type="read" weight="10"/>
407 +#
408 +interface(`corenet_receive_kdeconnect_server_packets',`
409 + gen_require(`
410 + type kdeconnect_server_packet_t;
411 + ')
412 +
413 + allow $1 kdeconnect_server_packet_t:packet recv;
414 +')
415 +
416 +########################################
417 +## <summary>
418 +## Do not audit attempts to receive kdeconnect_server packets.
419 +## </summary>
420 +## <param name="domain">
421 +## <summary>
422 +## Domain allowed access.
423 +## </summary>
424 +## </param>
425 +## <infoflow type="none"/>
426 +#
427 +interface(`corenet_dontaudit_receive_kdeconnect_server_packets',`
428 + gen_require(`
429 + type kdeconnect_server_packet_t;
430 + ')
431 +
432 + dontaudit $1 kdeconnect_server_packet_t:packet recv;
433 +')
434 +
435 +########################################
436 +## <summary>
437 +## Send and receive kdeconnect_server packets.
438 +## </summary>
439 +## <param name="domain">
440 +## <summary>
441 +## Domain allowed access.
442 +## </summary>
443 +## </param>
444 +## <infoflow type="both" weight="10"/>
445 +#
446 +interface(`corenet_sendrecv_kdeconnect_server_packets',`
447 + corenet_send_kdeconnect_server_packets($1)
448 + corenet_receive_kdeconnect_server_packets($1)
449 +')
450 +
451 +########################################
452 +## <summary>
453 +## Do not audit attempts to send and receive kdeconnect_server packets.
454 +## </summary>
455 +## <param name="domain">
456 +## <summary>
457 +## Domain to not audit.
458 +## </summary>
459 +## </param>
460 +## <infoflow type="none"/>
461 +#
462 +interface(`corenet_dontaudit_sendrecv_kdeconnect_server_packets',`
463 + corenet_dontaudit_send_kdeconnect_server_packets($1)
464 + corenet_dontaudit_receive_kdeconnect_server_packets($1)
465 +')
466 +
467 +########################################
468 +## <summary>
469 +## Relabel packets to kdeconnect_server the packet type.
470 +## </summary>
471 +## <param name="domain">
472 +## <summary>
473 +## Domain allowed access.
474 +## </summary>
475 +## </param>
476 +#
477 +interface(`corenet_relabelto_kdeconnect_server_packets',`
478 + gen_require(`
479 + type kdeconnect_server_packet_t;
480 + ')
481 +
482 + allow $1 kdeconnect_server_packet_t:packet relabelto;
483 +')
484 +
485 +
486 +
487 +
488 +########################################
489 +## <summary>
490 ## Send and receive TCP traffic on the kprop port.
491 ## </summary>
492 ## <param name="domain">
493 @@ -46132,6 +46575,449 @@ interface(`corenet_relabelto_lirc_server_packets',`
494
495 ########################################
496 ## <summary>
497 +## Send and receive TCP traffic on the llmnr port.
498 +## </summary>
499 +## <param name="domain">
500 +## <summary>
501 +## Domain allowed access.
502 +## </summary>
503 +## </param>
504 +## <infoflow type="both" weight="10"/>
505 +#
506 +interface(`corenet_tcp_sendrecv_llmnr_port',`
507 + gen_require(`
508 + type llmnr_port_t;
509 + ')
510 +
511 + allow $1 llmnr_port_t:tcp_socket { send_msg recv_msg };
512 +')
513 +
514 +########################################
515 +## <summary>
516 +## Send UDP traffic on the llmnr port.
517 +## </summary>
518 +## <param name="domain">
519 +## <summary>
520 +## Domain allowed access.
521 +## </summary>
522 +## </param>
523 +## <infoflow type="write" weight="10"/>
524 +#
525 +interface(`corenet_udp_send_llmnr_port',`
526 + gen_require(`
527 + type llmnr_port_t;
528 + ')
529 +
530 + allow $1 llmnr_port_t:udp_socket send_msg;
531 +')
532 +
533 +########################################
534 +## <summary>
535 +## Do not audit attempts to send UDP traffic on the llmnr port.
536 +## </summary>
537 +## <param name="domain">
538 +## <summary>
539 +## Domain to not audit.
540 +## </summary>
541 +## </param>
542 +## <infoflow type="none"/>
543 +#
544 +interface(`corenet_dontaudit_udp_send_llmnr_port',`
545 + gen_require(`
546 + type llmnr_port_t;
547 + ')
548 +
549 + dontaudit $1 llmnr_port_t:udp_socket send_msg;
550 +')
551 +
552 +########################################
553 +## <summary>
554 +## Receive UDP traffic on the llmnr port.
555 +## </summary>
556 +## <param name="domain">
557 +## <summary>
558 +## Domain allowed access.
559 +## </summary>
560 +## </param>
561 +## <infoflow type="read" weight="10"/>
562 +#
563 +interface(`corenet_udp_receive_llmnr_port',`
564 + gen_require(`
565 + type llmnr_port_t;
566 + ')
567 +
568 + allow $1 llmnr_port_t:udp_socket recv_msg;
569 +')
570 +
571 +########################################
572 +## <summary>
573 +## Do not audit attempts to receive UDP traffic on the llmnr port.
574 +## </summary>
575 +## <param name="domain">
576 +## <summary>
577 +## Domain to not audit.
578 +## </summary>
579 +## </param>
580 +## <infoflow type="none"/>
581 +#
582 +interface(`corenet_dontaudit_udp_receive_llmnr_port',`
583 + gen_require(`
584 + type llmnr_port_t;
585 + ')
586 +
587 + dontaudit $1 llmnr_port_t:udp_socket recv_msg;
588 +')
589 +
590 +########################################
591 +## <summary>
592 +## Send and receive UDP traffic on the llmnr port.
593 +## </summary>
594 +## <param name="domain">
595 +## <summary>
596 +## Domain allowed access.
597 +## </summary>
598 +## </param>
599 +## <infoflow type="both" weight="10"/>
600 +#
601 +interface(`corenet_udp_sendrecv_llmnr_port',`
602 + corenet_udp_send_llmnr_port($1)
603 + corenet_udp_receive_llmnr_port($1)
604 +')
605 +
606 +########################################
607 +## <summary>
608 +## Do not audit attempts to send and receive
609 +## UDP traffic on the llmnr port.
610 +## </summary>
611 +## <param name="domain">
612 +## <summary>
613 +## Domain to not audit.
614 +## </summary>
615 +## </param>
616 +## <infoflow type="none"/>
617 +#
618 +interface(`corenet_dontaudit_udp_sendrecv_llmnr_port',`
619 + corenet_dontaudit_udp_send_llmnr_port($1)
620 + corenet_dontaudit_udp_receive_llmnr_port($1)
621 +')
622 +
623 +########################################
624 +## <summary>
625 +## Bind TCP sockets to the llmnr port.
626 +## </summary>
627 +## <param name="domain">
628 +## <summary>
629 +## Domain allowed access.
630 +## </summary>
631 +## </param>
632 +## <infoflow type="none"/>
633 +#
634 +interface(`corenet_tcp_bind_llmnr_port',`
635 + gen_require(`
636 + type llmnr_port_t;
637 + ')
638 +
639 + allow $1 llmnr_port_t:tcp_socket name_bind;
640 +
641 +')
642 +
643 +########################################
644 +## <summary>
645 +## Bind UDP sockets to the llmnr port.
646 +## </summary>
647 +## <param name="domain">
648 +## <summary>
649 +## Domain allowed access.
650 +## </summary>
651 +## </param>
652 +## <infoflow type="none"/>
653 +#
654 +interface(`corenet_udp_bind_llmnr_port',`
655 + gen_require(`
656 + type llmnr_port_t;
657 + ')
658 +
659 + allow $1 llmnr_port_t:udp_socket name_bind;
660 +
661 +')
662 +
663 +########################################
664 +## <summary>
665 +## Make a TCP connection to the llmnr port.
666 +## </summary>
667 +## <param name="domain">
668 +## <summary>
669 +## Domain allowed access.
670 +## </summary>
671 +## </param>
672 +#
673 +interface(`corenet_tcp_connect_llmnr_port',`
674 + gen_require(`
675 + type llmnr_port_t;
676 + ')
677 +
678 + allow $1 llmnr_port_t:tcp_socket name_connect;
679 +')
680 +
681 +
682 +########################################
683 +## <summary>
684 +## Send llmnr_client packets.
685 +## </summary>
686 +## <param name="domain">
687 +## <summary>
688 +## Domain allowed access.
689 +## </summary>
690 +## </param>
691 +## <infoflow type="write" weight="10"/>
692 +#
693 +interface(`corenet_send_llmnr_client_packets',`
694 + gen_require(`
695 + type llmnr_client_packet_t;
696 + ')
697 +
698 + allow $1 llmnr_client_packet_t:packet send;
699 +')
700 +
701 +########################################
702 +## <summary>
703 +## Do not audit attempts to send llmnr_client packets.
704 +## </summary>
705 +## <param name="domain">
706 +## <summary>
707 +## Domain to not audit.
708 +## </summary>
709 +## </param>
710 +## <infoflow type="none"/>
711 +#
712 +interface(`corenet_dontaudit_send_llmnr_client_packets',`
713 + gen_require(`
714 + type llmnr_client_packet_t;
715 + ')
716 +
717 + dontaudit $1 llmnr_client_packet_t:packet send;
718 +')
719 +
720 +########################################
721 +## <summary>
722 +## Receive llmnr_client packets.
723 +## </summary>
724 +## <param name="domain">
725 +## <summary>
726 +## Domain allowed access.
727 +## </summary>
728 +## </param>
729 +## <infoflow type="read" weight="10"/>
730 +#
731 +interface(`corenet_receive_llmnr_client_packets',`
732 + gen_require(`
733 + type llmnr_client_packet_t;
734 + ')
735 +
736 + allow $1 llmnr_client_packet_t:packet recv;
737 +')
738 +
739 +########################################
740 +## <summary>
741 +## Do not audit attempts to receive llmnr_client packets.
742 +## </summary>
743 +## <param name="domain">
744 +## <summary>
745 +## Domain allowed access.
746 +## </summary>
747 +## </param>
748 +## <infoflow type="none"/>
749 +#
750 +interface(`corenet_dontaudit_receive_llmnr_client_packets',`
751 + gen_require(`
752 + type llmnr_client_packet_t;
753 + ')
754 +
755 + dontaudit $1 llmnr_client_packet_t:packet recv;
756 +')
757 +
758 +########################################
759 +## <summary>
760 +## Send and receive llmnr_client packets.
761 +## </summary>
762 +## <param name="domain">
763 +## <summary>
764 +## Domain allowed access.
765 +## </summary>
766 +## </param>
767 +## <infoflow type="both" weight="10"/>
768 +#
769 +interface(`corenet_sendrecv_llmnr_client_packets',`
770 + corenet_send_llmnr_client_packets($1)
771 + corenet_receive_llmnr_client_packets($1)
772 +')
773 +
774 +########################################
775 +## <summary>
776 +## Do not audit attempts to send and receive llmnr_client packets.
777 +## </summary>
778 +## <param name="domain">
779 +## <summary>
780 +## Domain to not audit.
781 +## </summary>
782 +## </param>
783 +## <infoflow type="none"/>
784 +#
785 +interface(`corenet_dontaudit_sendrecv_llmnr_client_packets',`
786 + corenet_dontaudit_send_llmnr_client_packets($1)
787 + corenet_dontaudit_receive_llmnr_client_packets($1)
788 +')
789 +
790 +########################################
791 +## <summary>
792 +## Relabel packets to llmnr_client the packet type.
793 +## </summary>
794 +## <param name="domain">
795 +## <summary>
796 +## Domain allowed access.
797 +## </summary>
798 +## </param>
799 +#
800 +interface(`corenet_relabelto_llmnr_client_packets',`
801 + gen_require(`
802 + type llmnr_client_packet_t;
803 + ')
804 +
805 + allow $1 llmnr_client_packet_t:packet relabelto;
806 +')
807 +
808 +
809 +########################################
810 +## <summary>
811 +## Send llmnr_server packets.
812 +## </summary>
813 +## <param name="domain">
814 +## <summary>
815 +## Domain allowed access.
816 +## </summary>
817 +## </param>
818 +## <infoflow type="write" weight="10"/>
819 +#
820 +interface(`corenet_send_llmnr_server_packets',`
821 + gen_require(`
822 + type llmnr_server_packet_t;
823 + ')
824 +
825 + allow $1 llmnr_server_packet_t:packet send;
826 +')
827 +
828 +########################################
829 +## <summary>
830 +## Do not audit attempts to send llmnr_server packets.
831 +## </summary>
832 +## <param name="domain">
833 +## <summary>
834 +## Domain to not audit.
835 +## </summary>
836 +## </param>
837 +## <infoflow type="none"/>
838 +#
839 +interface(`corenet_dontaudit_send_llmnr_server_packets',`
840 + gen_require(`
841 + type llmnr_server_packet_t;
842 + ')
843 +
844 + dontaudit $1 llmnr_server_packet_t:packet send;
845 +')
846 +
847 +########################################
848 +## <summary>
849 +## Receive llmnr_server packets.
850 +## </summary>
851 +## <param name="domain">
852 +## <summary>
853 +## Domain allowed access.
854 +## </summary>
855 +## </param>
856 +## <infoflow type="read" weight="10"/>
857 +#
858 +interface(`corenet_receive_llmnr_server_packets',`
859 + gen_require(`
860 + type llmnr_server_packet_t;
861 + ')
862 +
863 + allow $1 llmnr_server_packet_t:packet recv;
864 +')
865 +
866 +########################################
867 +## <summary>
868 +## Do not audit attempts to receive llmnr_server packets.
869 +## </summary>
870 +## <param name="domain">
871 +## <summary>
872 +## Domain allowed access.
873 +## </summary>
874 +## </param>
875 +## <infoflow type="none"/>
876 +#
877 +interface(`corenet_dontaudit_receive_llmnr_server_packets',`
878 + gen_require(`
879 + type llmnr_server_packet_t;
880 + ')
881 +
882 + dontaudit $1 llmnr_server_packet_t:packet recv;
883 +')
884 +
885 +########################################
886 +## <summary>
887 +## Send and receive llmnr_server packets.
888 +## </summary>
889 +## <param name="domain">
890 +## <summary>
891 +## Domain allowed access.
892 +## </summary>
893 +## </param>
894 +## <infoflow type="both" weight="10"/>
895 +#
896 +interface(`corenet_sendrecv_llmnr_server_packets',`
897 + corenet_send_llmnr_server_packets($1)
898 + corenet_receive_llmnr_server_packets($1)
899 +')
900 +
901 +########################################
902 +## <summary>
903 +## Do not audit attempts to send and receive llmnr_server packets.
904 +## </summary>
905 +## <param name="domain">
906 +## <summary>
907 +## Domain to not audit.
908 +## </summary>
909 +## </param>
910 +## <infoflow type="none"/>
911 +#
912 +interface(`corenet_dontaudit_sendrecv_llmnr_server_packets',`
913 + corenet_dontaudit_send_llmnr_server_packets($1)
914 + corenet_dontaudit_receive_llmnr_server_packets($1)
915 +')
916 +
917 +########################################
918 +## <summary>
919 +## Relabel packets to llmnr_server the packet type.
920 +## </summary>
921 +## <param name="domain">
922 +## <summary>
923 +## Domain allowed access.
924 +## </summary>
925 +## </param>
926 +#
927 +interface(`corenet_relabelto_llmnr_server_packets',`
928 + gen_require(`
929 + type llmnr_server_packet_t;
930 + ')
931 +
932 + allow $1 llmnr_server_packet_t:packet relabelto;
933 +')
934 +
935 +
936 +
937 +
938 +########################################
939 +## <summary>
940 ## Send and receive TCP traffic on the lmtp port.
941 ## </summary>
942 ## <param name="domain">
943 @@ -49233,7 +50119,7 @@ interface(`corenet_relabelto_mmcc_server_packets',`
944
945 ########################################
946 ## <summary>
947 -## Send and receive TCP traffic on the monopd port.
948 +## Send and receive TCP traffic on the mon port.
949 ## </summary>
950 ## <param name="domain">
951 ## <summary>
952 @@ -49242,17 +50128,17 @@ interface(`corenet_relabelto_mmcc_server_packets',`
953 ## </param>
954 ## <infoflow type="both" weight="10"/>
955 #
956 -interface(`corenet_tcp_sendrecv_monopd_port',`
957 +interface(`corenet_tcp_sendrecv_mon_port',`
958 gen_require(`
959 - type monopd_port_t;
960 + type mon_port_t;
961 ')
962
963 - allow $1 monopd_port_t:tcp_socket { send_msg recv_msg };
964 + allow $1 mon_port_t:tcp_socket { send_msg recv_msg };
965 ')
966
967 ########################################
968 ## <summary>
969 -## Send UDP traffic on the monopd port.
970 +## Send UDP traffic on the mon port.
971 ## </summary>
972 ## <param name="domain">
973 ## <summary>
974 @@ -49261,17 +50147,17 @@ interface(`corenet_tcp_sendrecv_monopd_port',`
975 ## </param>
976 ## <infoflow type="write" weight="10"/>
977 #
978 -interface(`corenet_udp_send_monopd_port',`
979 +interface(`corenet_udp_send_mon_port',`
980 gen_require(`
981 - type monopd_port_t;
982 + type mon_port_t;
983 ')
984
985 - allow $1 monopd_port_t:udp_socket send_msg;
986 + allow $1 mon_port_t:udp_socket send_msg;
987 ')
988
989 ########################################
990 ## <summary>
991 -## Do not audit attempts to send UDP traffic on the monopd port.
992 +## Do not audit attempts to send UDP traffic on the mon port.
993 ## </summary>
994 ## <param name="domain">
995 ## <summary>
996 @@ -49280,17 +50166,17 @@ interface(`corenet_udp_send_monopd_port',`
997 ## </param>
998 ## <infoflow type="none"/>
999 #
1000 -interface(`corenet_dontaudit_udp_send_monopd_port',`
1001 +interface(`corenet_dontaudit_udp_send_mon_port',`
1002 gen_require(`
1003 - type monopd_port_t;
1004 + type mon_port_t;
1005 ')
1006
1007 - dontaudit $1 monopd_port_t:udp_socket send_msg;
1008 + dontaudit $1 mon_port_t:udp_socket send_msg;
1009 ')
1010
1011 ########################################
1012 ## <summary>
1013 -## Receive UDP traffic on the monopd port.
1014 +## Receive UDP traffic on the mon port.
1015 ## </summary>
1016 ## <param name="domain">
1017 ## <summary>
1018 @@ -49299,17 +50185,17 @@ interface(`corenet_dontaudit_udp_send_monopd_port',`
1019 ## </param>
1020 ## <infoflow type="read" weight="10"/>
1021 #
1022 -interface(`corenet_udp_receive_monopd_port',`
1023 +interface(`corenet_udp_receive_mon_port',`
1024 gen_require(`
1025 - type monopd_port_t;
1026 + type mon_port_t;
1027 ')
1028
1029 - allow $1 monopd_port_t:udp_socket recv_msg;
1030 + allow $1 mon_port_t:udp_socket recv_msg;
1031 ')
1032
1033 ########################################
1034 ## <summary>
1035 -## Do not audit attempts to receive UDP traffic on the monopd port.
1036 +## Do not audit attempts to receive UDP traffic on the mon port.
1037 ## </summary>
1038 ## <param name="domain">
1039 ## <summary>
1040 @@ -49318,17 +50204,17 @@ interface(`corenet_udp_receive_monopd_port',`
1041 ## </param>
1042 ## <infoflow type="none"/>
1043 #
1044 -interface(`corenet_dontaudit_udp_receive_monopd_port',`
1045 +interface(`corenet_dontaudit_udp_receive_mon_port',`
1046 gen_require(`
1047 - type monopd_port_t;
1048 + type mon_port_t;
1049 ')
1050
1051 - dontaudit $1 monopd_port_t:udp_socket recv_msg;
1052 + dontaudit $1 mon_port_t:udp_socket recv_msg;
1053 ')
1054
1055 ########################################
1056 ## <summary>
1057 -## Send and receive UDP traffic on the monopd port.
1058 +## Send and receive UDP traffic on the mon port.
1059 ## </summary>
1060 ## <param name="domain">
1061 ## <summary>
1062 @@ -49337,15 +50223,15 @@ interface(`corenet_dontaudit_udp_receive_monopd_port',`
1063 ## </param>
1064 ## <infoflow type="both" weight="10"/>
1065 #
1066 -interface(`corenet_udp_sendrecv_monopd_port',`
1067 - corenet_udp_send_monopd_port($1)
1068 - corenet_udp_receive_monopd_port($1)
1069 +interface(`corenet_udp_sendrecv_mon_port',`
1070 + corenet_udp_send_mon_port($1)
1071 + corenet_udp_receive_mon_port($1)
1072 ')
1073
1074 ########################################
1075 ## <summary>
1076 ## Do not audit attempts to send and receive
1077 -## UDP traffic on the monopd port.
1078 +## UDP traffic on the mon port.
1079 ## </summary>
1080 ## <param name="domain">
1081 ## <summary>
1082 @@ -49354,14 +50240,14 @@ interface(`corenet_udp_sendrecv_monopd_port',`
1083 ## </param>
1084 ## <infoflow type="none"/>
1085 #
1086 -interface(`corenet_dontaudit_udp_sendrecv_monopd_port',`
1087 - corenet_dontaudit_udp_send_monopd_port($1)
1088 - corenet_dontaudit_udp_receive_monopd_port($1)
1089 +interface(`corenet_dontaudit_udp_sendrecv_mon_port',`
1090 + corenet_dontaudit_udp_send_mon_port($1)
1091 + corenet_dontaudit_udp_receive_mon_port($1)
1092 ')
1093
1094 ########################################
1095 ## <summary>
1096 -## Bind TCP sockets to the monopd port.
1097 +## Bind TCP sockets to the mon port.
1098 ## </summary>
1099 ## <param name="domain">
1100 ## <summary>
1101 @@ -49370,18 +50256,18 @@ interface(`corenet_dontaudit_udp_sendrecv_monopd_port',`
1102 ## </param>
1103 ## <infoflow type="none"/>
1104 #
1105 -interface(`corenet_tcp_bind_monopd_port',`
1106 +interface(`corenet_tcp_bind_mon_port',`
1107 gen_require(`
1108 - type monopd_port_t;
1109 + type mon_port_t;
1110 ')
1111
1112 - allow $1 monopd_port_t:tcp_socket name_bind;
1113 + allow $1 mon_port_t:tcp_socket name_bind;
1114
1115 ')
1116
1117 ########################################
1118 ## <summary>
1119 -## Bind UDP sockets to the monopd port.
1120 +## Bind UDP sockets to the mon port.
1121 ## </summary>
1122 ## <param name="domain">
1123 ## <summary>
1124 @@ -49390,18 +50276,18 @@ interface(`corenet_tcp_bind_monopd_port',`
1125 ## </param>
1126 ## <infoflow type="none"/>
1127 #
1128 -interface(`corenet_udp_bind_monopd_port',`
1129 +interface(`corenet_udp_bind_mon_port',`
1130 gen_require(`
1131 - type monopd_port_t;
1132 + type mon_port_t;
1133 ')
1134
1135 - allow $1 monopd_port_t:udp_socket name_bind;
1136 + allow $1 mon_port_t:udp_socket name_bind;
1137
1138 ')
1139
1140 ########################################
1141 ## <summary>
1142 -## Make a TCP connection to the monopd port.
1143 +## Make a TCP connection to the mon port.
1144 ## </summary>
1145 ## <param name="domain">
1146 ## <summary>
1147 @@ -49409,18 +50295,18 @@ interface(`corenet_udp_bind_monopd_port',`
1148 ## </summary>
1149 ## </param>
1150 #
1151 -interface(`corenet_tcp_connect_monopd_port',`
1152 +interface(`corenet_tcp_connect_mon_port',`
1153 gen_require(`
1154 - type monopd_port_t;
1155 + type mon_port_t;
1156 ')
1157
1158 - allow $1 monopd_port_t:tcp_socket name_connect;
1159 + allow $1 mon_port_t:tcp_socket name_connect;
1160 ')
1161
1162
1163 ########################################
1164 ## <summary>
1165 -## Send monopd_client packets.
1166 +## Send mon_client packets.
1167 ## </summary>
1168 ## <param name="domain">
1169 ## <summary>
1170 @@ -49429,17 +50315,17 @@ interface(`corenet_tcp_connect_monopd_port',`
1171 ## </param>
1172 ## <infoflow type="write" weight="10"/>
1173 #
1174 -interface(`corenet_send_monopd_client_packets',`
1175 +interface(`corenet_send_mon_client_packets',`
1176 gen_require(`
1177 - type monopd_client_packet_t;
1178 + type mon_client_packet_t;
1179 ')
1180
1181 - allow $1 monopd_client_packet_t:packet send;
1182 + allow $1 mon_client_packet_t:packet send;
1183 ')
1184
1185 ########################################
1186 ## <summary>
1187 -## Do not audit attempts to send monopd_client packets.
1188 +## Do not audit attempts to send mon_client packets.
1189 ## </summary>
1190 ## <param name="domain">
1191 ## <summary>
1192 @@ -49448,17 +50334,17 @@ interface(`corenet_send_monopd_client_packets',`
1193 ## </param>
1194 ## <infoflow type="none"/>
1195 #
1196 -interface(`corenet_dontaudit_send_monopd_client_packets',`
1197 +interface(`corenet_dontaudit_send_mon_client_packets',`
1198 gen_require(`
1199 - type monopd_client_packet_t;
1200 + type mon_client_packet_t;
1201 ')
1202
1203 - dontaudit $1 monopd_client_packet_t:packet send;
1204 + dontaudit $1 mon_client_packet_t:packet send;
1205 ')
1206
1207 ########################################
1208 ## <summary>
1209 -## Receive monopd_client packets.
1210 +## Receive mon_client packets.
1211 ## </summary>
1212 ## <param name="domain">
1213 ## <summary>
1214 @@ -49467,17 +50353,17 @@ interface(`corenet_dontaudit_send_monopd_client_packets',`
1215 ## </param>
1216 ## <infoflow type="read" weight="10"/>
1217 #
1218 -interface(`corenet_receive_monopd_client_packets',`
1219 +interface(`corenet_receive_mon_client_packets',`
1220 gen_require(`
1221 - type monopd_client_packet_t;
1222 + type mon_client_packet_t;
1223 ')
1224
1225 - allow $1 monopd_client_packet_t:packet recv;
1226 + allow $1 mon_client_packet_t:packet recv;
1227 ')
1228
1229 ########################################
1230 ## <summary>
1231 -## Do not audit attempts to receive monopd_client packets.
1232 +## Do not audit attempts to receive mon_client packets.
1233 ## </summary>
1234 ## <param name="domain">
1235 ## <summary>
1236 @@ -49486,17 +50372,17 @@ interface(`corenet_receive_monopd_client_packets',`
1237 ## </param>
1238 ## <infoflow type="none"/>
1239 #
1240 -interface(`corenet_dontaudit_receive_monopd_client_packets',`
1241 +interface(`corenet_dontaudit_receive_mon_client_packets',`
1242 gen_require(`
1243 - type monopd_client_packet_t;
1244 + type mon_client_packet_t;
1245 ')
1246
1247 - dontaudit $1 monopd_client_packet_t:packet recv;
1248 + dontaudit $1 mon_client_packet_t:packet recv;
1249 ')
1250
1251 ########################################
1252 ## <summary>
1253 -## Send and receive monopd_client packets.
1254 +## Send and receive mon_client packets.
1255 ## </summary>
1256 ## <param name="domain">
1257 ## <summary>
1258 @@ -49505,14 +50391,14 @@ interface(`corenet_dontaudit_receive_monopd_client_packets',`
1259 ## </param>
1260 ## <infoflow type="both" weight="10"/>
1261 #
1262 -interface(`corenet_sendrecv_monopd_client_packets',`
1263 - corenet_send_monopd_client_packets($1)
1264 - corenet_receive_monopd_client_packets($1)
1265 +interface(`corenet_sendrecv_mon_client_packets',`
1266 + corenet_send_mon_client_packets($1)
1267 + corenet_receive_mon_client_packets($1)
1268 ')
1269
1270 ########################################
1271 ## <summary>
1272 -## Do not audit attempts to send and receive monopd_client packets.
1273 +## Do not audit attempts to send and receive mon_client packets.
1274 ## </summary>
1275 ## <param name="domain">
1276 ## <summary>
1277 @@ -49521,14 +50407,14 @@ interface(`corenet_sendrecv_monopd_client_packets',`
1278 ## </param>
1279 ## <infoflow type="none"/>
1280 #
1281 -interface(`corenet_dontaudit_sendrecv_monopd_client_packets',`
1282 - corenet_dontaudit_send_monopd_client_packets($1)
1283 - corenet_dontaudit_receive_monopd_client_packets($1)
1284 +interface(`corenet_dontaudit_sendrecv_mon_client_packets',`
1285 + corenet_dontaudit_send_mon_client_packets($1)
1286 + corenet_dontaudit_receive_mon_client_packets($1)
1287 ')
1288
1289 ########################################
1290 ## <summary>
1291 -## Relabel packets to monopd_client the packet type.
1292 +## Relabel packets to mon_client the packet type.
1293 ## </summary>
1294 ## <param name="domain">
1295 ## <summary>
1296 @@ -49536,18 +50422,18 @@ interface(`corenet_dontaudit_sendrecv_monopd_client_packets',`
1297 ## </summary>
1298 ## </param>
1299 #
1300 -interface(`corenet_relabelto_monopd_client_packets',`
1301 +interface(`corenet_relabelto_mon_client_packets',`
1302 gen_require(`
1303 - type monopd_client_packet_t;
1304 + type mon_client_packet_t;
1305 ')
1306
1307 - allow $1 monopd_client_packet_t:packet relabelto;
1308 + allow $1 mon_client_packet_t:packet relabelto;
1309 ')
1310
1311
1312 ########################################
1313 ## <summary>
1314 -## Send monopd_server packets.
1315 +## Send mon_server packets.
1316 ## </summary>
1317 ## <param name="domain">
1318 ## <summary>
1319 @@ -49556,17 +50442,17 @@ interface(`corenet_relabelto_monopd_client_packets',`
1320 ## </param>
1321 ## <infoflow type="write" weight="10"/>
1322 #
1323 -interface(`corenet_send_monopd_server_packets',`
1324 +interface(`corenet_send_mon_server_packets',`
1325 gen_require(`
1326 - type monopd_server_packet_t;
1327 + type mon_server_packet_t;
1328 ')
1329
1330 - allow $1 monopd_server_packet_t:packet send;
1331 + allow $1 mon_server_packet_t:packet send;
1332 ')
1333
1334 ########################################
1335 ## <summary>
1336 -## Do not audit attempts to send monopd_server packets.
1337 +## Do not audit attempts to send mon_server packets.
1338 ## </summary>
1339 ## <param name="domain">
1340 ## <summary>
1341 @@ -49575,17 +50461,17 @@ interface(`corenet_send_monopd_server_packets',`
1342 ## </param>
1343 ## <infoflow type="none"/>
1344 #
1345 -interface(`corenet_dontaudit_send_monopd_server_packets',`
1346 +interface(`corenet_dontaudit_send_mon_server_packets',`
1347 gen_require(`
1348 - type monopd_server_packet_t;
1349 + type mon_server_packet_t;
1350 ')
1351
1352 - dontaudit $1 monopd_server_packet_t:packet send;
1353 + dontaudit $1 mon_server_packet_t:packet send;
1354 ')
1355
1356 ########################################
1357 ## <summary>
1358 -## Receive monopd_server packets.
1359 +## Receive mon_server packets.
1360 ## </summary>
1361 ## <param name="domain">
1362 ## <summary>
1363 @@ -49594,17 +50480,17 @@ interface(`corenet_dontaudit_send_monopd_server_packets',`
1364 ## </param>
1365 ## <infoflow type="read" weight="10"/>
1366 #
1367 -interface(`corenet_receive_monopd_server_packets',`
1368 +interface(`corenet_receive_mon_server_packets',`
1369 gen_require(`
1370 - type monopd_server_packet_t;
1371 + type mon_server_packet_t;
1372 ')
1373
1374 - allow $1 monopd_server_packet_t:packet recv;
1375 + allow $1 mon_server_packet_t:packet recv;
1376 ')
1377
1378 ########################################
1379 ## <summary>
1380 -## Do not audit attempts to receive monopd_server packets.
1381 +## Do not audit attempts to receive mon_server packets.
1382 ## </summary>
1383 ## <param name="domain">
1384 ## <summary>
1385 @@ -49613,17 +50499,17 @@ interface(`corenet_receive_monopd_server_packets',`
1386 ## </param>
1387 ## <infoflow type="none"/>
1388 #
1389 -interface(`corenet_dontaudit_receive_monopd_server_packets',`
1390 +interface(`corenet_dontaudit_receive_mon_server_packets',`
1391 gen_require(`
1392 - type monopd_server_packet_t;
1393 + type mon_server_packet_t;
1394 ')
1395
1396 - dontaudit $1 monopd_server_packet_t:packet recv;
1397 + dontaudit $1 mon_server_packet_t:packet recv;
1398 ')
1399
1400 ########################################
1401 ## <summary>
1402 -## Send and receive monopd_server packets.
1403 +## Send and receive mon_server packets.
1404 ## </summary>
1405 ## <param name="domain">
1406 ## <summary>
1407 @@ -49632,14 +50518,14 @@ interface(`corenet_dontaudit_receive_monopd_server_packets',`
1408 ## </param>
1409 ## <infoflow type="both" weight="10"/>
1410 #
1411 -interface(`corenet_sendrecv_monopd_server_packets',`
1412 - corenet_send_monopd_server_packets($1)
1413 - corenet_receive_monopd_server_packets($1)
1414 +interface(`corenet_sendrecv_mon_server_packets',`
1415 + corenet_send_mon_server_packets($1)
1416 + corenet_receive_mon_server_packets($1)
1417 ')
1418
1419 ########################################
1420 ## <summary>
1421 -## Do not audit attempts to send and receive monopd_server packets.
1422 +## Do not audit attempts to send and receive mon_server packets.
1423 ## </summary>
1424 ## <param name="domain">
1425 ## <summary>
1426 @@ -49648,14 +50534,14 @@ interface(`corenet_sendrecv_monopd_server_packets',`
1427 ## </param>
1428 ## <infoflow type="none"/>
1429 #
1430 -interface(`corenet_dontaudit_sendrecv_monopd_server_packets',`
1431 - corenet_dontaudit_send_monopd_server_packets($1)
1432 - corenet_dontaudit_receive_monopd_server_packets($1)
1433 +interface(`corenet_dontaudit_sendrecv_mon_server_packets',`
1434 + corenet_dontaudit_send_mon_server_packets($1)
1435 + corenet_dontaudit_receive_mon_server_packets($1)
1436 ')
1437
1438 ########################################
1439 ## <summary>
1440 -## Relabel packets to monopd_server the packet type.
1441 +## Relabel packets to mon_server the packet type.
1442 ## </summary>
1443 ## <param name="domain">
1444 ## <summary>
1445 @@ -49663,12 +50549,12 @@ interface(`corenet_dontaudit_sendrecv_monopd_server_packets',`
1446 ## </summary>
1447 ## </param>
1448 #
1449 -interface(`corenet_relabelto_monopd_server_packets',`
1450 +interface(`corenet_relabelto_mon_server_packets',`
1451 gen_require(`
1452 - type monopd_server_packet_t;
1453 + type mon_server_packet_t;
1454 ')
1455
1456 - allow $1 monopd_server_packet_t:packet relabelto;
1457 + allow $1 mon_server_packet_t:packet relabelto;
1458 ')
1459
1460
1461 @@ -49676,7 +50562,7 @@ interface(`corenet_relabelto_monopd_server_packets',`
1462
1463 ########################################
1464 ## <summary>
1465 -## Send and receive TCP traffic on the mountd port.
1466 +## Send and receive TCP traffic on the monit port.
1467 ## </summary>
1468 ## <param name="domain">
1469 ## <summary>
1470 @@ -49685,17 +50571,17 @@ interface(`corenet_relabelto_monopd_server_packets',`
1471 ## </param>
1472 ## <infoflow type="both" weight="10"/>
1473 #
1474 -interface(`corenet_tcp_sendrecv_mountd_port',`
1475 +interface(`corenet_tcp_sendrecv_monit_port',`
1476 gen_require(`
1477 - type mountd_port_t;
1478 + type monit_port_t;
1479 ')
1480
1481 - allow $1 mountd_port_t:tcp_socket { send_msg recv_msg };
1482 + allow $1 monit_port_t:tcp_socket { send_msg recv_msg };
1483 ')
1484
1485 ########################################
1486 ## <summary>
1487 -## Send UDP traffic on the mountd port.
1488 +## Send UDP traffic on the monit port.
1489 ## </summary>
1490 ## <param name="domain">
1491 ## <summary>
1492 @@ -49704,17 +50590,17 @@ interface(`corenet_tcp_sendrecv_mountd_port',`
1493 ## </param>
1494 ## <infoflow type="write" weight="10"/>
1495 #
1496 -interface(`corenet_udp_send_mountd_port',`
1497 +interface(`corenet_udp_send_monit_port',`
1498 gen_require(`
1499 - type mountd_port_t;
1500 + type monit_port_t;
1501 ')
1502
1503 - allow $1 mountd_port_t:udp_socket send_msg;
1504 + allow $1 monit_port_t:udp_socket send_msg;
1505 ')
1506
1507 ########################################
1508 ## <summary>
1509 -## Do not audit attempts to send UDP traffic on the mountd port.
1510 +## Do not audit attempts to send UDP traffic on the monit port.
1511 ## </summary>
1512 ## <param name="domain">
1513 ## <summary>
1514 @@ -49723,17 +50609,17 @@ interface(`corenet_udp_send_mountd_port',`
1515 ## </param>
1516 ## <infoflow type="none"/>
1517 #
1518 -interface(`corenet_dontaudit_udp_send_mountd_port',`
1519 +interface(`corenet_dontaudit_udp_send_monit_port',`
1520 gen_require(`
1521 - type mountd_port_t;
1522 + type monit_port_t;
1523 ')
1524
1525 - dontaudit $1 mountd_port_t:udp_socket send_msg;
1526 + dontaudit $1 monit_port_t:udp_socket send_msg;
1527 ')
1528
1529 ########################################
1530 ## <summary>
1531 -## Receive UDP traffic on the mountd port.
1532 +## Receive UDP traffic on the monit port.
1533 ## </summary>
1534 ## <param name="domain">
1535 ## <summary>
1536 @@ -49742,17 +50628,17 @@ interface(`corenet_dontaudit_udp_send_mountd_port',`
1537 ## </param>
1538 ## <infoflow type="read" weight="10"/>
1539 #
1540 -interface(`corenet_udp_receive_mountd_port',`
1541 +interface(`corenet_udp_receive_monit_port',`
1542 gen_require(`
1543 - type mountd_port_t;
1544 + type monit_port_t;
1545 ')
1546
1547 - allow $1 mountd_port_t:udp_socket recv_msg;
1548 + allow $1 monit_port_t:udp_socket recv_msg;
1549 ')
1550
1551 ########################################
1552 ## <summary>
1553 -## Do not audit attempts to receive UDP traffic on the mountd port.
1554 +## Do not audit attempts to receive UDP traffic on the monit port.
1555 ## </summary>
1556 ## <param name="domain">
1557 ## <summary>
1558 @@ -49761,17 +50647,17 @@ interface(`corenet_udp_receive_mountd_port',`
1559 ## </param>
1560 ## <infoflow type="none"/>
1561 #
1562 -interface(`corenet_dontaudit_udp_receive_mountd_port',`
1563 +interface(`corenet_dontaudit_udp_receive_monit_port',`
1564 gen_require(`
1565 - type mountd_port_t;
1566 + type monit_port_t;
1567 ')
1568
1569 - dontaudit $1 mountd_port_t:udp_socket recv_msg;
1570 + dontaudit $1 monit_port_t:udp_socket recv_msg;
1571 ')
1572
1573 ########################################
1574 ## <summary>
1575 -## Send and receive UDP traffic on the mountd port.
1576 +## Send and receive UDP traffic on the monit port.
1577 ## </summary>
1578 ## <param name="domain">
1579 ## <summary>
1580 @@ -49780,15 +50666,15 @@ interface(`corenet_dontaudit_udp_receive_mountd_port',`
1581 ## </param>
1582 ## <infoflow type="both" weight="10"/>
1583 #
1584 -interface(`corenet_udp_sendrecv_mountd_port',`
1585 - corenet_udp_send_mountd_port($1)
1586 - corenet_udp_receive_mountd_port($1)
1587 +interface(`corenet_udp_sendrecv_monit_port',`
1588 + corenet_udp_send_monit_port($1)
1589 + corenet_udp_receive_monit_port($1)
1590 ')
1591
1592 ########################################
1593 ## <summary>
1594 ## Do not audit attempts to send and receive
1595 -## UDP traffic on the mountd port.
1596 +## UDP traffic on the monit port.
1597 ## </summary>
1598 ## <param name="domain">
1599 ## <summary>
1600 @@ -49797,14 +50683,14 @@ interface(`corenet_udp_sendrecv_mountd_port',`
1601 ## </param>
1602 ## <infoflow type="none"/>
1603 #
1604 -interface(`corenet_dontaudit_udp_sendrecv_mountd_port',`
1605 - corenet_dontaudit_udp_send_mountd_port($1)
1606 - corenet_dontaudit_udp_receive_mountd_port($1)
1607 +interface(`corenet_dontaudit_udp_sendrecv_monit_port',`
1608 + corenet_dontaudit_udp_send_monit_port($1)
1609 + corenet_dontaudit_udp_receive_monit_port($1)
1610 ')
1611
1612 ########################################
1613 ## <summary>
1614 -## Bind TCP sockets to the mountd port.
1615 +## Bind TCP sockets to the monit port.
1616 ## </summary>
1617 ## <param name="domain">
1618 ## <summary>
1619 @@ -49813,18 +50699,18 @@ interface(`corenet_dontaudit_udp_sendrecv_mountd_port',`
1620 ## </param>
1621 ## <infoflow type="none"/>
1622 #
1623 -interface(`corenet_tcp_bind_mountd_port',`
1624 +interface(`corenet_tcp_bind_monit_port',`
1625 gen_require(`
1626 - type mountd_port_t;
1627 + type monit_port_t;
1628 ')
1629
1630 - allow $1 mountd_port_t:tcp_socket name_bind;
1631 + allow $1 monit_port_t:tcp_socket name_bind;
1632
1633 ')
1634
1635 ########################################
1636 ## <summary>
1637 -## Bind UDP sockets to the mountd port.
1638 +## Bind UDP sockets to the monit port.
1639 ## </summary>
1640 ## <param name="domain">
1641 ## <summary>
1642 @@ -49833,18 +50719,18 @@ interface(`corenet_tcp_bind_mountd_port',`
1643 ## </param>
1644 ## <infoflow type="none"/>
1645 #
1646 -interface(`corenet_udp_bind_mountd_port',`
1647 +interface(`corenet_udp_bind_monit_port',`
1648 gen_require(`
1649 - type mountd_port_t;
1650 + type monit_port_t;
1651 ')
1652
1653 - allow $1 mountd_port_t:udp_socket name_bind;
1654 + allow $1 monit_port_t:udp_socket name_bind;
1655
1656 ')
1657
1658 ########################################
1659 ## <summary>
1660 -## Make a TCP connection to the mountd port.
1661 +## Make a TCP connection to the monit port.
1662 ## </summary>
1663 ## <param name="domain">
1664 ## <summary>
1665 @@ -49852,18 +50738,18 @@ interface(`corenet_udp_bind_mountd_port',`
1666 ## </summary>
1667 ## </param>
1668 #
1669 -interface(`corenet_tcp_connect_mountd_port',`
1670 +interface(`corenet_tcp_connect_monit_port',`
1671 gen_require(`
1672 - type mountd_port_t;
1673 + type monit_port_t;
1674 ')
1675
1676 - allow $1 mountd_port_t:tcp_socket name_connect;
1677 + allow $1 monit_port_t:tcp_socket name_connect;
1678 ')
1679
1680
1681 ########################################
1682 ## <summary>
1683 -## Send mountd_client packets.
1684 +## Send monit_client packets.
1685 ## </summary>
1686 ## <param name="domain">
1687 ## <summary>
1688 @@ -49872,17 +50758,17 @@ interface(`corenet_tcp_connect_mountd_port',`
1689 ## </param>
1690 ## <infoflow type="write" weight="10"/>
1691 #
1692 -interface(`corenet_send_mountd_client_packets',`
1693 +interface(`corenet_send_monit_client_packets',`
1694 gen_require(`
1695 - type mountd_client_packet_t;
1696 + type monit_client_packet_t;
1697 ')
1698
1699 - allow $1 mountd_client_packet_t:packet send;
1700 + allow $1 monit_client_packet_t:packet send;
1701 ')
1702
1703 ########################################
1704 ## <summary>
1705 -## Do not audit attempts to send mountd_client packets.
1706 +## Do not audit attempts to send monit_client packets.
1707 ## </summary>
1708 ## <param name="domain">
1709 ## <summary>
1710 @@ -49891,17 +50777,17 @@ interface(`corenet_send_mountd_client_packets',`
1711 ## </param>
1712 ## <infoflow type="none"/>
1713 #
1714 -interface(`corenet_dontaudit_send_mountd_client_packets',`
1715 +interface(`corenet_dontaudit_send_monit_client_packets',`
1716 gen_require(`
1717 - type mountd_client_packet_t;
1718 + type monit_client_packet_t;
1719 ')
1720
1721 - dontaudit $1 mountd_client_packet_t:packet send;
1722 + dontaudit $1 monit_client_packet_t:packet send;
1723 ')
1724
1725 ########################################
1726 ## <summary>
1727 -## Receive mountd_client packets.
1728 +## Receive monit_client packets.
1729 ## </summary>
1730 ## <param name="domain">
1731 ## <summary>
1732 @@ -49910,17 +50796,17 @@ interface(`corenet_dontaudit_send_mountd_client_packets',`
1733 ## </param>
1734 ## <infoflow type="read" weight="10"/>
1735 #
1736 -interface(`corenet_receive_mountd_client_packets',`
1737 +interface(`corenet_receive_monit_client_packets',`
1738 gen_require(`
1739 - type mountd_client_packet_t;
1740 + type monit_client_packet_t;
1741 ')
1742
1743 - allow $1 mountd_client_packet_t:packet recv;
1744 + allow $1 monit_client_packet_t:packet recv;
1745 ')
1746
1747 ########################################
1748 ## <summary>
1749 -## Do not audit attempts to receive mountd_client packets.
1750 +## Do not audit attempts to receive monit_client packets.
1751 ## </summary>
1752 ## <param name="domain">
1753 ## <summary>
1754 @@ -49929,17 +50815,17 @@ interface(`corenet_receive_mountd_client_packets',`
1755 ## </param>
1756 ## <infoflow type="none"/>
1757 #
1758 -interface(`corenet_dontaudit_receive_mountd_client_packets',`
1759 +interface(`corenet_dontaudit_receive_monit_client_packets',`
1760 gen_require(`
1761 - type mountd_client_packet_t;
1762 + type monit_client_packet_t;
1763 ')
1764
1765 - dontaudit $1 mountd_client_packet_t:packet recv;
1766 + dontaudit $1 monit_client_packet_t:packet recv;
1767 ')
1768
1769 ########################################
1770 ## <summary>
1771 -## Send and receive mountd_client packets.
1772 +## Send and receive monit_client packets.
1773 ## </summary>
1774 ## <param name="domain">
1775 ## <summary>
1776 @@ -49948,14 +50834,14 @@ interface(`corenet_dontaudit_receive_mountd_client_packets',`
1777 ## </param>
1778 ## <infoflow type="both" weight="10"/>
1779 #
1780 -interface(`corenet_sendrecv_mountd_client_packets',`
1781 - corenet_send_mountd_client_packets($1)
1782 - corenet_receive_mountd_client_packets($1)
1783 +interface(`corenet_sendrecv_monit_client_packets',`
1784 + corenet_send_monit_client_packets($1)
1785 + corenet_receive_monit_client_packets($1)
1786 ')
1787
1788 ########################################
1789 ## <summary>
1790 -## Do not audit attempts to send and receive mountd_client packets.
1791 +## Do not audit attempts to send and receive monit_client packets.
1792 ## </summary>
1793 ## <param name="domain">
1794 ## <summary>
1795 @@ -49964,14 +50850,14 @@ interface(`corenet_sendrecv_mountd_client_packets',`
1796 ## </param>
1797 ## <infoflow type="none"/>
1798 #
1799 -interface(`corenet_dontaudit_sendrecv_mountd_client_packets',`
1800 - corenet_dontaudit_send_mountd_client_packets($1)
1801 - corenet_dontaudit_receive_mountd_client_packets($1)
1802 +interface(`corenet_dontaudit_sendrecv_monit_client_packets',`
1803 + corenet_dontaudit_send_monit_client_packets($1)
1804 + corenet_dontaudit_receive_monit_client_packets($1)
1805 ')
1806
1807 ########################################
1808 ## <summary>
1809 -## Relabel packets to mountd_client the packet type.
1810 +## Relabel packets to monit_client the packet type.
1811 ## </summary>
1812 ## <param name="domain">
1813 ## <summary>
1814 @@ -49979,18 +50865,18 @@ interface(`corenet_dontaudit_sendrecv_mountd_client_packets',`
1815 ## </summary>
1816 ## </param>
1817 #
1818 -interface(`corenet_relabelto_mountd_client_packets',`
1819 +interface(`corenet_relabelto_monit_client_packets',`
1820 gen_require(`
1821 - type mountd_client_packet_t;
1822 + type monit_client_packet_t;
1823 ')
1824
1825 - allow $1 mountd_client_packet_t:packet relabelto;
1826 + allow $1 monit_client_packet_t:packet relabelto;
1827 ')
1828
1829
1830 ########################################
1831 ## <summary>
1832 -## Send mountd_server packets.
1833 +## Send monit_server packets.
1834 ## </summary>
1835 ## <param name="domain">
1836 ## <summary>
1837 @@ -49999,17 +50885,17 @@ interface(`corenet_relabelto_mountd_client_packets',`
1838 ## </param>
1839 ## <infoflow type="write" weight="10"/>
1840 #
1841 -interface(`corenet_send_mountd_server_packets',`
1842 +interface(`corenet_send_monit_server_packets',`
1843 gen_require(`
1844 - type mountd_server_packet_t;
1845 + type monit_server_packet_t;
1846 ')
1847
1848 - allow $1 mountd_server_packet_t:packet send;
1849 + allow $1 monit_server_packet_t:packet send;
1850 ')
1851
1852 ########################################
1853 ## <summary>
1854 -## Do not audit attempts to send mountd_server packets.
1855 +## Do not audit attempts to send monit_server packets.
1856 ## </summary>
1857 ## <param name="domain">
1858 ## <summary>
1859 @@ -50018,17 +50904,17 @@ interface(`corenet_send_mountd_server_packets',`
1860 ## </param>
1861 ## <infoflow type="none"/>
1862 #
1863 -interface(`corenet_dontaudit_send_mountd_server_packets',`
1864 +interface(`corenet_dontaudit_send_monit_server_packets',`
1865 gen_require(`
1866 - type mountd_server_packet_t;
1867 + type monit_server_packet_t;
1868 ')
1869
1870 - dontaudit $1 mountd_server_packet_t:packet send;
1871 + dontaudit $1 monit_server_packet_t:packet send;
1872 ')
1873
1874 ########################################
1875 ## <summary>
1876 -## Receive mountd_server packets.
1877 +## Receive monit_server packets.
1878 ## </summary>
1879 ## <param name="domain">
1880 ## <summary>
1881 @@ -50037,17 +50923,17 @@ interface(`corenet_dontaudit_send_mountd_server_packets',`
1882 ## </param>
1883 ## <infoflow type="read" weight="10"/>
1884 #
1885 -interface(`corenet_receive_mountd_server_packets',`
1886 +interface(`corenet_receive_monit_server_packets',`
1887 gen_require(`
1888 - type mountd_server_packet_t;
1889 + type monit_server_packet_t;
1890 ')
1891
1892 - allow $1 mountd_server_packet_t:packet recv;
1893 + allow $1 monit_server_packet_t:packet recv;
1894 ')
1895
1896 ########################################
1897 ## <summary>
1898 -## Do not audit attempts to receive mountd_server packets.
1899 +## Do not audit attempts to receive monit_server packets.
1900 ## </summary>
1901 ## <param name="domain">
1902 ## <summary>
1903 @@ -50056,17 +50942,17 @@ interface(`corenet_receive_mountd_server_packets',`
1904 ## </param>
1905 ## <infoflow type="none"/>
1906 #
1907 -interface(`corenet_dontaudit_receive_mountd_server_packets',`
1908 +interface(`corenet_dontaudit_receive_monit_server_packets',`
1909 gen_require(`
1910 - type mountd_server_packet_t;
1911 + type monit_server_packet_t;
1912 ')
1913
1914 - dontaudit $1 mountd_server_packet_t:packet recv;
1915 + dontaudit $1 monit_server_packet_t:packet recv;
1916 ')
1917
1918 ########################################
1919 ## <summary>
1920 -## Send and receive mountd_server packets.
1921 +## Send and receive monit_server packets.
1922 ## </summary>
1923 ## <param name="domain">
1924 ## <summary>
1925 @@ -50075,14 +50961,14 @@ interface(`corenet_dontaudit_receive_mountd_server_packets',`
1926 ## </param>
1927 ## <infoflow type="both" weight="10"/>
1928 #
1929 -interface(`corenet_sendrecv_mountd_server_packets',`
1930 - corenet_send_mountd_server_packets($1)
1931 - corenet_receive_mountd_server_packets($1)
1932 +interface(`corenet_sendrecv_monit_server_packets',`
1933 + corenet_send_monit_server_packets($1)
1934 + corenet_receive_monit_server_packets($1)
1935 ')
1936
1937 ########################################
1938 ## <summary>
1939 -## Do not audit attempts to send and receive mountd_server packets.
1940 +## Do not audit attempts to send and receive monit_server packets.
1941 ## </summary>
1942 ## <param name="domain">
1943 ## <summary>
1944 @@ -50091,14 +50977,14 @@ interface(`corenet_sendrecv_mountd_server_packets',`
1945 ## </param>
1946 ## <infoflow type="none"/>
1947 #
1948 -interface(`corenet_dontaudit_sendrecv_mountd_server_packets',`
1949 - corenet_dontaudit_send_mountd_server_packets($1)
1950 - corenet_dontaudit_receive_mountd_server_packets($1)
1951 +interface(`corenet_dontaudit_sendrecv_monit_server_packets',`
1952 + corenet_dontaudit_send_monit_server_packets($1)
1953 + corenet_dontaudit_receive_monit_server_packets($1)
1954 ')
1955
1956 ########################################
1957 ## <summary>
1958 -## Relabel packets to mountd_server the packet type.
1959 +## Relabel packets to monit_server the packet type.
1960 ## </summary>
1961 ## <param name="domain">
1962 ## <summary>
1963 @@ -50106,12 +50992,12 @@ interface(`corenet_dontaudit_sendrecv_mountd_server_packets',`
1964 ## </summary>
1965 ## </param>
1966 #
1967 -interface(`corenet_relabelto_mountd_server_packets',`
1968 +interface(`corenet_relabelto_monit_server_packets',`
1969 gen_require(`
1970 - type mountd_server_packet_t;
1971 + type monit_server_packet_t;
1972 ')
1973
1974 - allow $1 mountd_server_packet_t:packet relabelto;
1975 + allow $1 monit_server_packet_t:packet relabelto;
1976 ')
1977
1978
1979 @@ -50119,7 +51005,7 @@ interface(`corenet_relabelto_mountd_server_packets',`
1980
1981 ########################################
1982 ## <summary>
1983 -## Send and receive TCP traffic on the movaz_ssc port.
1984 +## Send and receive TCP traffic on the monopd port.
1985 ## </summary>
1986 ## <param name="domain">
1987 ## <summary>
1988 @@ -50128,17 +51014,17 @@ interface(`corenet_relabelto_mountd_server_packets',`
1989 ## </param>
1990 ## <infoflow type="both" weight="10"/>
1991 #
1992 -interface(`corenet_tcp_sendrecv_movaz_ssc_port',`
1993 +interface(`corenet_tcp_sendrecv_monopd_port',`
1994 gen_require(`
1995 - type movaz_ssc_port_t;
1996 + type monopd_port_t;
1997 ')
1998
1999 - allow $1 movaz_ssc_port_t:tcp_socket { send_msg recv_msg };
2000 + allow $1 monopd_port_t:tcp_socket { send_msg recv_msg };
2001 ')
2002
2003 ########################################
2004 ## <summary>
2005 -## Send UDP traffic on the movaz_ssc port.
2006 +## Send UDP traffic on the monopd port.
2007 ## </summary>
2008 ## <param name="domain">
2009 ## <summary>
2010 @@ -50147,17 +51033,17 @@ interface(`corenet_tcp_sendrecv_movaz_ssc_port',`
2011 ## </param>
2012 ## <infoflow type="write" weight="10"/>
2013 #
2014 -interface(`corenet_udp_send_movaz_ssc_port',`
2015 +interface(`corenet_udp_send_monopd_port',`
2016 gen_require(`
2017 - type movaz_ssc_port_t;
2018 + type monopd_port_t;
2019 ')
2020
2021 - allow $1 movaz_ssc_port_t:udp_socket send_msg;
2022 + allow $1 monopd_port_t:udp_socket send_msg;
2023 ')
2024
2025 ########################################
2026 ## <summary>
2027 -## Do not audit attempts to send UDP traffic on the movaz_ssc port.
2028 +## Do not audit attempts to send UDP traffic on the monopd port.
2029 ## </summary>
2030 ## <param name="domain">
2031 ## <summary>
2032 @@ -50166,17 +51052,17 @@ interface(`corenet_udp_send_movaz_ssc_port',`
2033 ## </param>
2034 ## <infoflow type="none"/>
2035 #
2036 -interface(`corenet_dontaudit_udp_send_movaz_ssc_port',`
2037 +interface(`corenet_dontaudit_udp_send_monopd_port',`
2038 gen_require(`
2039 - type movaz_ssc_port_t;
2040 + type monopd_port_t;
2041 ')
2042
2043 - dontaudit $1 movaz_ssc_port_t:udp_socket send_msg;
2044 + dontaudit $1 monopd_port_t:udp_socket send_msg;
2045 ')
2046
2047 ########################################
2048 ## <summary>
2049 -## Receive UDP traffic on the movaz_ssc port.
2050 +## Receive UDP traffic on the monopd port.
2051 ## </summary>
2052 ## <param name="domain">
2053 ## <summary>
2054 @@ -50185,17 +51071,17 @@ interface(`corenet_dontaudit_udp_send_movaz_ssc_port',`
2055 ## </param>
2056 ## <infoflow type="read" weight="10"/>
2057 #
2058 -interface(`corenet_udp_receive_movaz_ssc_port',`
2059 +interface(`corenet_udp_receive_monopd_port',`
2060 gen_require(`
2061 - type movaz_ssc_port_t;
2062 + type monopd_port_t;
2063 ')
2064
2065 - allow $1 movaz_ssc_port_t:udp_socket recv_msg;
2066 + allow $1 monopd_port_t:udp_socket recv_msg;
2067 ')
2068
2069 ########################################
2070 ## <summary>
2071 -## Do not audit attempts to receive UDP traffic on the movaz_ssc port.
2072 +## Do not audit attempts to receive UDP traffic on the monopd port.
2073 ## </summary>
2074 ## <param name="domain">
2075 ## <summary>
2076 @@ -50204,17 +51090,17 @@ interface(`corenet_udp_receive_movaz_ssc_port',`
2077 ## </param>
2078 ## <infoflow type="none"/>
2079 #
2080 -interface(`corenet_dontaudit_udp_receive_movaz_ssc_port',`
2081 +interface(`corenet_dontaudit_udp_receive_monopd_port',`
2082 gen_require(`
2083 - type movaz_ssc_port_t;
2084 + type monopd_port_t;
2085 ')
2086
2087 - dontaudit $1 movaz_ssc_port_t:udp_socket recv_msg;
2088 + dontaudit $1 monopd_port_t:udp_socket recv_msg;
2089 ')
2090
2091 ########################################
2092 ## <summary>
2093 -## Send and receive UDP traffic on the movaz_ssc port.
2094 +## Send and receive UDP traffic on the monopd port.
2095 ## </summary>
2096 ## <param name="domain">
2097 ## <summary>
2098 @@ -50223,15 +51109,15 @@ interface(`corenet_dontaudit_udp_receive_movaz_ssc_port',`
2099 ## </param>
2100 ## <infoflow type="both" weight="10"/>
2101 #
2102 -interface(`corenet_udp_sendrecv_movaz_ssc_port',`
2103 - corenet_udp_send_movaz_ssc_port($1)
2104 - corenet_udp_receive_movaz_ssc_port($1)
2105 +interface(`corenet_udp_sendrecv_monopd_port',`
2106 + corenet_udp_send_monopd_port($1)
2107 + corenet_udp_receive_monopd_port($1)
2108 ')
2109
2110 ########################################
2111 ## <summary>
2112 ## Do not audit attempts to send and receive
2113 -## UDP traffic on the movaz_ssc port.
2114 +## UDP traffic on the monopd port.
2115 ## </summary>
2116 ## <param name="domain">
2117 ## <summary>
2118 @@ -50240,14 +51126,14 @@ interface(`corenet_udp_sendrecv_movaz_ssc_port',`
2119 ## </param>
2120 ## <infoflow type="none"/>
2121 #
2122 -interface(`corenet_dontaudit_udp_sendrecv_movaz_ssc_port',`
2123 - corenet_dontaudit_udp_send_movaz_ssc_port($1)
2124 - corenet_dontaudit_udp_receive_movaz_ssc_port($1)
2125 +interface(`corenet_dontaudit_udp_sendrecv_monopd_port',`
2126 + corenet_dontaudit_udp_send_monopd_port($1)
2127 + corenet_dontaudit_udp_receive_monopd_port($1)
2128 ')
2129
2130 ########################################
2131 ## <summary>
2132 -## Bind TCP sockets to the movaz_ssc port.
2133 +## Bind TCP sockets to the monopd port.
2134 ## </summary>
2135 ## <param name="domain">
2136 ## <summary>
2137 @@ -50256,18 +51142,18 @@ interface(`corenet_dontaudit_udp_sendrecv_movaz_ssc_port',`
2138 ## </param>
2139 ## <infoflow type="none"/>
2140 #
2141 -interface(`corenet_tcp_bind_movaz_ssc_port',`
2142 +interface(`corenet_tcp_bind_monopd_port',`
2143 gen_require(`
2144 - type movaz_ssc_port_t;
2145 + type monopd_port_t;
2146 ')
2147
2148 - allow $1 movaz_ssc_port_t:tcp_socket name_bind;
2149 + allow $1 monopd_port_t:tcp_socket name_bind;
2150
2151 ')
2152
2153 ########################################
2154 ## <summary>
2155 -## Bind UDP sockets to the movaz_ssc port.
2156 +## Bind UDP sockets to the monopd port.
2157 ## </summary>
2158 ## <param name="domain">
2159 ## <summary>
2160 @@ -50276,18 +51162,18 @@ interface(`corenet_tcp_bind_movaz_ssc_port',`
2161 ## </param>
2162 ## <infoflow type="none"/>
2163 #
2164 -interface(`corenet_udp_bind_movaz_ssc_port',`
2165 +interface(`corenet_udp_bind_monopd_port',`
2166 gen_require(`
2167 - type movaz_ssc_port_t;
2168 + type monopd_port_t;
2169 ')
2170
2171 - allow $1 movaz_ssc_port_t:udp_socket name_bind;
2172 + allow $1 monopd_port_t:udp_socket name_bind;
2173
2174 ')
2175
2176 ########################################
2177 ## <summary>
2178 -## Make a TCP connection to the movaz_ssc port.
2179 +## Make a TCP connection to the monopd port.
2180 ## </summary>
2181 ## <param name="domain">
2182 ## <summary>
2183 @@ -50295,18 +51181,18 @@ interface(`corenet_udp_bind_movaz_ssc_port',`
2184 ## </summary>
2185 ## </param>
2186 #
2187 -interface(`corenet_tcp_connect_movaz_ssc_port',`
2188 +interface(`corenet_tcp_connect_monopd_port',`
2189 gen_require(`
2190 - type movaz_ssc_port_t;
2191 + type monopd_port_t;
2192 ')
2193
2194 - allow $1 movaz_ssc_port_t:tcp_socket name_connect;
2195 + allow $1 monopd_port_t:tcp_socket name_connect;
2196 ')
2197
2198
2199 ########################################
2200 ## <summary>
2201 -## Send movaz_ssc_client packets.
2202 +## Send monopd_client packets.
2203 ## </summary>
2204 ## <param name="domain">
2205 ## <summary>
2206 @@ -50315,17 +51201,17 @@ interface(`corenet_tcp_connect_movaz_ssc_port',`
2207 ## </param>
2208 ## <infoflow type="write" weight="10"/>
2209 #
2210 -interface(`corenet_send_movaz_ssc_client_packets',`
2211 +interface(`corenet_send_monopd_client_packets',`
2212 gen_require(`
2213 - type movaz_ssc_client_packet_t;
2214 + type monopd_client_packet_t;
2215 ')
2216
2217 - allow $1 movaz_ssc_client_packet_t:packet send;
2218 + allow $1 monopd_client_packet_t:packet send;
2219 ')
2220
2221 ########################################
2222 ## <summary>
2223 -## Do not audit attempts to send movaz_ssc_client packets.
2224 +## Do not audit attempts to send monopd_client packets.
2225 ## </summary>
2226 ## <param name="domain">
2227 ## <summary>
2228 @@ -50334,17 +51220,17 @@ interface(`corenet_send_movaz_ssc_client_packets',`
2229 ## </param>
2230 ## <infoflow type="none"/>
2231 #
2232 -interface(`corenet_dontaudit_send_movaz_ssc_client_packets',`
2233 +interface(`corenet_dontaudit_send_monopd_client_packets',`
2234 gen_require(`
2235 - type movaz_ssc_client_packet_t;
2236 + type monopd_client_packet_t;
2237 ')
2238
2239 - dontaudit $1 movaz_ssc_client_packet_t:packet send;
2240 + dontaudit $1 monopd_client_packet_t:packet send;
2241 ')
2242
2243 ########################################
2244 ## <summary>
2245 -## Receive movaz_ssc_client packets.
2246 +## Receive monopd_client packets.
2247 ## </summary>
2248 ## <param name="domain">
2249 ## <summary>
2250 @@ -50353,17 +51239,17 @@ interface(`corenet_dontaudit_send_movaz_ssc_client_packets',`
2251 ## </param>
2252 ## <infoflow type="read" weight="10"/>
2253 #
2254 -interface(`corenet_receive_movaz_ssc_client_packets',`
2255 +interface(`corenet_receive_monopd_client_packets',`
2256 gen_require(`
2257 - type movaz_ssc_client_packet_t;
2258 + type monopd_client_packet_t;
2259 ')
2260
2261 - allow $1 movaz_ssc_client_packet_t:packet recv;
2262 + allow $1 monopd_client_packet_t:packet recv;
2263 ')
2264
2265 ########################################
2266 ## <summary>
2267 -## Do not audit attempts to receive movaz_ssc_client packets.
2268 +## Do not audit attempts to receive monopd_client packets.
2269 ## </summary>
2270 ## <param name="domain">
2271 ## <summary>
2272 @@ -50372,17 +51258,17 @@ interface(`corenet_receive_movaz_ssc_client_packets',`
2273 ## </param>
2274 ## <infoflow type="none"/>
2275 #
2276 -interface(`corenet_dontaudit_receive_movaz_ssc_client_packets',`
2277 +interface(`corenet_dontaudit_receive_monopd_client_packets',`
2278 gen_require(`
2279 - type movaz_ssc_client_packet_t;
2280 + type monopd_client_packet_t;
2281 ')
2282
2283 - dontaudit $1 movaz_ssc_client_packet_t:packet recv;
2284 + dontaudit $1 monopd_client_packet_t:packet recv;
2285 ')
2286
2287 ########################################
2288 ## <summary>
2289 -## Send and receive movaz_ssc_client packets.
2290 +## Send and receive monopd_client packets.
2291 ## </summary>
2292 ## <param name="domain">
2293 ## <summary>
2294 @@ -50391,14 +51277,14 @@ interface(`corenet_dontaudit_receive_movaz_ssc_client_packets',`
2295 ## </param>
2296 ## <infoflow type="both" weight="10"/>
2297 #
2298 -interface(`corenet_sendrecv_movaz_ssc_client_packets',`
2299 - corenet_send_movaz_ssc_client_packets($1)
2300 - corenet_receive_movaz_ssc_client_packets($1)
2301 +interface(`corenet_sendrecv_monopd_client_packets',`
2302 + corenet_send_monopd_client_packets($1)
2303 + corenet_receive_monopd_client_packets($1)
2304 ')
2305
2306 ########################################
2307 ## <summary>
2308 -## Do not audit attempts to send and receive movaz_ssc_client packets.
2309 +## Do not audit attempts to send and receive monopd_client packets.
2310 ## </summary>
2311 ## <param name="domain">
2312 ## <summary>
2313 @@ -50407,14 +51293,14 @@ interface(`corenet_sendrecv_movaz_ssc_client_packets',`
2314 ## </param>
2315 ## <infoflow type="none"/>
2316 #
2317 -interface(`corenet_dontaudit_sendrecv_movaz_ssc_client_packets',`
2318 - corenet_dontaudit_send_movaz_ssc_client_packets($1)
2319 - corenet_dontaudit_receive_movaz_ssc_client_packets($1)
2320 +interface(`corenet_dontaudit_sendrecv_monopd_client_packets',`
2321 + corenet_dontaudit_send_monopd_client_packets($1)
2322 + corenet_dontaudit_receive_monopd_client_packets($1)
2323 ')
2324
2325 ########################################
2326 ## <summary>
2327 -## Relabel packets to movaz_ssc_client the packet type.
2328 +## Relabel packets to monopd_client the packet type.
2329 ## </summary>
2330 ## <param name="domain">
2331 ## <summary>
2332 @@ -50422,18 +51308,18 @@ interface(`corenet_dontaudit_sendrecv_movaz_ssc_client_packets',`
2333 ## </summary>
2334 ## </param>
2335 #
2336 -interface(`corenet_relabelto_movaz_ssc_client_packets',`
2337 +interface(`corenet_relabelto_monopd_client_packets',`
2338 gen_require(`
2339 - type movaz_ssc_client_packet_t;
2340 + type monopd_client_packet_t;
2341 ')
2342
2343 - allow $1 movaz_ssc_client_packet_t:packet relabelto;
2344 + allow $1 monopd_client_packet_t:packet relabelto;
2345 ')
2346
2347
2348 ########################################
2349 ## <summary>
2350 -## Send movaz_ssc_server packets.
2351 +## Send monopd_server packets.
2352 ## </summary>
2353 ## <param name="domain">
2354 ## <summary>
2355 @@ -50442,17 +51328,17 @@ interface(`corenet_relabelto_movaz_ssc_client_packets',`
2356 ## </param>
2357 ## <infoflow type="write" weight="10"/>
2358 #
2359 -interface(`corenet_send_movaz_ssc_server_packets',`
2360 +interface(`corenet_send_monopd_server_packets',`
2361 gen_require(`
2362 - type movaz_ssc_server_packet_t;
2363 + type monopd_server_packet_t;
2364 ')
2365
2366 - allow $1 movaz_ssc_server_packet_t:packet send;
2367 + allow $1 monopd_server_packet_t:packet send;
2368 ')
2369
2370 ########################################
2371 ## <summary>
2372 -## Do not audit attempts to send movaz_ssc_server packets.
2373 +## Do not audit attempts to send monopd_server packets.
2374 ## </summary>
2375 ## <param name="domain">
2376 ## <summary>
2377 @@ -50461,17 +51347,17 @@ interface(`corenet_send_movaz_ssc_server_packets',`
2378 ## </param>
2379 ## <infoflow type="none"/>
2380 #
2381 -interface(`corenet_dontaudit_send_movaz_ssc_server_packets',`
2382 +interface(`corenet_dontaudit_send_monopd_server_packets',`
2383 gen_require(`
2384 - type movaz_ssc_server_packet_t;
2385 + type monopd_server_packet_t;
2386 ')
2387
2388 - dontaudit $1 movaz_ssc_server_packet_t:packet send;
2389 + dontaudit $1 monopd_server_packet_t:packet send;
2390 ')
2391
2392 ########################################
2393 ## <summary>
2394 -## Receive movaz_ssc_server packets.
2395 +## Receive monopd_server packets.
2396 ## </summary>
2397 ## <param name="domain">
2398 ## <summary>
2399 @@ -50480,17 +51366,17 @@ interface(`corenet_dontaudit_send_movaz_ssc_server_packets',`
2400 ## </param>
2401 ## <infoflow type="read" weight="10"/>
2402 #
2403 -interface(`corenet_receive_movaz_ssc_server_packets',`
2404 +interface(`corenet_receive_monopd_server_packets',`
2405 gen_require(`
2406 - type movaz_ssc_server_packet_t;
2407 + type monopd_server_packet_t;
2408 ')
2409
2410 - allow $1 movaz_ssc_server_packet_t:packet recv;
2411 + allow $1 monopd_server_packet_t:packet recv;
2412 ')
2413
2414 ########################################
2415 ## <summary>
2416 -## Do not audit attempts to receive movaz_ssc_server packets.
2417 +## Do not audit attempts to receive monopd_server packets.
2418 ## </summary>
2419 ## <param name="domain">
2420 ## <summary>
2421 @@ -50499,17 +51385,17 @@ interface(`corenet_receive_movaz_ssc_server_packets',`
2422 ## </param>
2423 ## <infoflow type="none"/>
2424 #
2425 -interface(`corenet_dontaudit_receive_movaz_ssc_server_packets',`
2426 +interface(`corenet_dontaudit_receive_monopd_server_packets',`
2427 gen_require(`
2428 - type movaz_ssc_server_packet_t;
2429 + type monopd_server_packet_t;
2430 ')
2431
2432 - dontaudit $1 movaz_ssc_server_packet_t:packet recv;
2433 + dontaudit $1 monopd_server_packet_t:packet recv;
2434 ')
2435
2436 ########################################
2437 ## <summary>
2438 -## Send and receive movaz_ssc_server packets.
2439 +## Send and receive monopd_server packets.
2440 ## </summary>
2441 ## <param name="domain">
2442 ## <summary>
2443 @@ -50518,14 +51404,14 @@ interface(`corenet_dontaudit_receive_movaz_ssc_server_packets',`
2444 ## </param>
2445 ## <infoflow type="both" weight="10"/>
2446 #
2447 -interface(`corenet_sendrecv_movaz_ssc_server_packets',`
2448 - corenet_send_movaz_ssc_server_packets($1)
2449 - corenet_receive_movaz_ssc_server_packets($1)
2450 +interface(`corenet_sendrecv_monopd_server_packets',`
2451 + corenet_send_monopd_server_packets($1)
2452 + corenet_receive_monopd_server_packets($1)
2453 ')
2454
2455 ########################################
2456 ## <summary>
2457 -## Do not audit attempts to send and receive movaz_ssc_server packets.
2458 +## Do not audit attempts to send and receive monopd_server packets.
2459 ## </summary>
2460 ## <param name="domain">
2461 ## <summary>
2462 @@ -50534,14 +51420,14 @@ interface(`corenet_sendrecv_movaz_ssc_server_packets',`
2463 ## </param>
2464 ## <infoflow type="none"/>
2465 #
2466 -interface(`corenet_dontaudit_sendrecv_movaz_ssc_server_packets',`
2467 - corenet_dontaudit_send_movaz_ssc_server_packets($1)
2468 - corenet_dontaudit_receive_movaz_ssc_server_packets($1)
2469 +interface(`corenet_dontaudit_sendrecv_monopd_server_packets',`
2470 + corenet_dontaudit_send_monopd_server_packets($1)
2471 + corenet_dontaudit_receive_monopd_server_packets($1)
2472 ')
2473
2474 ########################################
2475 ## <summary>
2476 -## Relabel packets to movaz_ssc_server the packet type.
2477 +## Relabel packets to monopd_server the packet type.
2478 ## </summary>
2479 ## <param name="domain">
2480 ## <summary>
2481 @@ -50549,12 +51435,12 @@ interface(`corenet_dontaudit_sendrecv_movaz_ssc_server_packets',`
2482 ## </summary>
2483 ## </param>
2484 #
2485 -interface(`corenet_relabelto_movaz_ssc_server_packets',`
2486 +interface(`corenet_relabelto_monopd_server_packets',`
2487 gen_require(`
2488 - type movaz_ssc_server_packet_t;
2489 + type monopd_server_packet_t;
2490 ')
2491
2492 - allow $1 movaz_ssc_server_packet_t:packet relabelto;
2493 + allow $1 monopd_server_packet_t:packet relabelto;
2494 ')
2495
2496
2497 @@ -50562,7 +51448,7 @@ interface(`corenet_relabelto_movaz_ssc_server_packets',`
2498
2499 ########################################
2500 ## <summary>
2501 -## Send and receive TCP traffic on the mpd port.
2502 +## Send and receive TCP traffic on the mountd port.
2503 ## </summary>
2504 ## <param name="domain">
2505 ## <summary>
2506 @@ -50571,17 +51457,17 @@ interface(`corenet_relabelto_movaz_ssc_server_packets',`
2507 ## </param>
2508 ## <infoflow type="both" weight="10"/>
2509 #
2510 -interface(`corenet_tcp_sendrecv_mpd_port',`
2511 +interface(`corenet_tcp_sendrecv_mountd_port',`
2512 gen_require(`
2513 - type mpd_port_t;
2514 + type mountd_port_t;
2515 ')
2516
2517 - allow $1 mpd_port_t:tcp_socket { send_msg recv_msg };
2518 + allow $1 mountd_port_t:tcp_socket { send_msg recv_msg };
2519 ')
2520
2521 ########################################
2522 ## <summary>
2523 -## Send UDP traffic on the mpd port.
2524 +## Send UDP traffic on the mountd port.
2525 ## </summary>
2526 ## <param name="domain">
2527 ## <summary>
2528 @@ -50590,17 +51476,17 @@ interface(`corenet_tcp_sendrecv_mpd_port',`
2529 ## </param>
2530 ## <infoflow type="write" weight="10"/>
2531 #
2532 -interface(`corenet_udp_send_mpd_port',`
2533 +interface(`corenet_udp_send_mountd_port',`
2534 gen_require(`
2535 - type mpd_port_t;
2536 + type mountd_port_t;
2537 ')
2538
2539 - allow $1 mpd_port_t:udp_socket send_msg;
2540 + allow $1 mountd_port_t:udp_socket send_msg;
2541 ')
2542
2543 ########################################
2544 ## <summary>
2545 -## Do not audit attempts to send UDP traffic on the mpd port.
2546 +## Do not audit attempts to send UDP traffic on the mountd port.
2547 ## </summary>
2548 ## <param name="domain">
2549 ## <summary>
2550 @@ -50609,17 +51495,17 @@ interface(`corenet_udp_send_mpd_port',`
2551 ## </param>
2552 ## <infoflow type="none"/>
2553 #
2554 -interface(`corenet_dontaudit_udp_send_mpd_port',`
2555 +interface(`corenet_dontaudit_udp_send_mountd_port',`
2556 gen_require(`
2557 - type mpd_port_t;
2558 + type mountd_port_t;
2559 ')
2560
2561 - dontaudit $1 mpd_port_t:udp_socket send_msg;
2562 + dontaudit $1 mountd_port_t:udp_socket send_msg;
2563 ')
2564
2565 ########################################
2566 ## <summary>
2567 -## Receive UDP traffic on the mpd port.
2568 +## Receive UDP traffic on the mountd port.
2569 ## </summary>
2570 ## <param name="domain">
2571 ## <summary>
2572 @@ -50628,17 +51514,17 @@ interface(`corenet_dontaudit_udp_send_mpd_port',`
2573 ## </param>
2574 ## <infoflow type="read" weight="10"/>
2575 #
2576 -interface(`corenet_udp_receive_mpd_port',`
2577 +interface(`corenet_udp_receive_mountd_port',`
2578 gen_require(`
2579 - type mpd_port_t;
2580 + type mountd_port_t;
2581 ')
2582
2583 - allow $1 mpd_port_t:udp_socket recv_msg;
2584 + allow $1 mountd_port_t:udp_socket recv_msg;
2585 ')
2586
2587 ########################################
2588 ## <summary>
2589 -## Do not audit attempts to receive UDP traffic on the mpd port.
2590 +## Do not audit attempts to receive UDP traffic on the mountd port.
2591 ## </summary>
2592 ## <param name="domain">
2593 ## <summary>
2594 @@ -50647,17 +51533,17 @@ interface(`corenet_udp_receive_mpd_port',`
2595 ## </param>
2596 ## <infoflow type="none"/>
2597 #
2598 -interface(`corenet_dontaudit_udp_receive_mpd_port',`
2599 +interface(`corenet_dontaudit_udp_receive_mountd_port',`
2600 gen_require(`
2601 - type mpd_port_t;
2602 + type mountd_port_t;
2603 ')
2604
2605 - dontaudit $1 mpd_port_t:udp_socket recv_msg;
2606 + dontaudit $1 mountd_port_t:udp_socket recv_msg;
2607 ')
2608
2609 ########################################
2610 ## <summary>
2611 -## Send and receive UDP traffic on the mpd port.
2612 +## Send and receive UDP traffic on the mountd port.
2613 ## </summary>
2614 ## <param name="domain">
2615 ## <summary>
2616 @@ -50666,15 +51552,15 @@ interface(`corenet_dontaudit_udp_receive_mpd_port',`
2617 ## </param>
2618 ## <infoflow type="both" weight="10"/>
2619 #
2620 -interface(`corenet_udp_sendrecv_mpd_port',`
2621 - corenet_udp_send_mpd_port($1)
2622 - corenet_udp_receive_mpd_port($1)
2623 +interface(`corenet_udp_sendrecv_mountd_port',`
2624 + corenet_udp_send_mountd_port($1)
2625 + corenet_udp_receive_mountd_port($1)
2626 ')
2627
2628 ########################################
2629 ## <summary>
2630 ## Do not audit attempts to send and receive
2631 -## UDP traffic on the mpd port.
2632 +## UDP traffic on the mountd port.
2633 ## </summary>
2634 ## <param name="domain">
2635 ## <summary>
2636 @@ -50683,14 +51569,14 @@ interface(`corenet_udp_sendrecv_mpd_port',`
2637 ## </param>
2638 ## <infoflow type="none"/>
2639 #
2640 -interface(`corenet_dontaudit_udp_sendrecv_mpd_port',`
2641 - corenet_dontaudit_udp_send_mpd_port($1)
2642 - corenet_dontaudit_udp_receive_mpd_port($1)
2643 +interface(`corenet_dontaudit_udp_sendrecv_mountd_port',`
2644 + corenet_dontaudit_udp_send_mountd_port($1)
2645 + corenet_dontaudit_udp_receive_mountd_port($1)
2646 ')
2647
2648 ########################################
2649 ## <summary>
2650 -## Bind TCP sockets to the mpd port.
2651 +## Bind TCP sockets to the mountd port.
2652 ## </summary>
2653 ## <param name="domain">
2654 ## <summary>
2655 @@ -50699,18 +51585,18 @@ interface(`corenet_dontaudit_udp_sendrecv_mpd_port',`
2656 ## </param>
2657 ## <infoflow type="none"/>
2658 #
2659 -interface(`corenet_tcp_bind_mpd_port',`
2660 +interface(`corenet_tcp_bind_mountd_port',`
2661 gen_require(`
2662 - type mpd_port_t;
2663 + type mountd_port_t;
2664 ')
2665
2666 - allow $1 mpd_port_t:tcp_socket name_bind;
2667 + allow $1 mountd_port_t:tcp_socket name_bind;
2668
2669 ')
2670
2671 ########################################
2672 ## <summary>
2673 -## Bind UDP sockets to the mpd port.
2674 +## Bind UDP sockets to the mountd port.
2675 ## </summary>
2676 ## <param name="domain">
2677 ## <summary>
2678 @@ -50719,18 +51605,18 @@ interface(`corenet_tcp_bind_mpd_port',`
2679 ## </param>
2680 ## <infoflow type="none"/>
2681 #
2682 -interface(`corenet_udp_bind_mpd_port',`
2683 +interface(`corenet_udp_bind_mountd_port',`
2684 gen_require(`
2685 - type mpd_port_t;
2686 + type mountd_port_t;
2687 ')
2688
2689 - allow $1 mpd_port_t:udp_socket name_bind;
2690 + allow $1 mountd_port_t:udp_socket name_bind;
2691
2692 ')
2693
2694 ########################################
2695 ## <summary>
2696 -## Make a TCP connection to the mpd port.
2697 +## Make a TCP connection to the mountd port.
2698 ## </summary>
2699 ## <param name="domain">
2700 ## <summary>
2701 @@ -50738,18 +51624,18 @@ interface(`corenet_udp_bind_mpd_port',`
2702 ## </summary>
2703 ## </param>
2704 #
2705 -interface(`corenet_tcp_connect_mpd_port',`
2706 +interface(`corenet_tcp_connect_mountd_port',`
2707 gen_require(`
2708 - type mpd_port_t;
2709 + type mountd_port_t;
2710 ')
2711
2712 - allow $1 mpd_port_t:tcp_socket name_connect;
2713 + allow $1 mountd_port_t:tcp_socket name_connect;
2714 ')
2715
2716
2717 ########################################
2718 ## <summary>
2719 -## Send mpd_client packets.
2720 +## Send mountd_client packets.
2721 ## </summary>
2722 ## <param name="domain">
2723 ## <summary>
2724 @@ -50758,17 +51644,17 @@ interface(`corenet_tcp_connect_mpd_port',`
2725 ## </param>
2726 ## <infoflow type="write" weight="10"/>
2727 #
2728 -interface(`corenet_send_mpd_client_packets',`
2729 +interface(`corenet_send_mountd_client_packets',`
2730 gen_require(`
2731 - type mpd_client_packet_t;
2732 + type mountd_client_packet_t;
2733 ')
2734
2735 - allow $1 mpd_client_packet_t:packet send;
2736 + allow $1 mountd_client_packet_t:packet send;
2737 ')
2738
2739 ########################################
2740 ## <summary>
2741 -## Do not audit attempts to send mpd_client packets.
2742 +## Do not audit attempts to send mountd_client packets.
2743 ## </summary>
2744 ## <param name="domain">
2745 ## <summary>
2746 @@ -50777,17 +51663,17 @@ interface(`corenet_send_mpd_client_packets',`
2747 ## </param>
2748 ## <infoflow type="none"/>
2749 #
2750 -interface(`corenet_dontaudit_send_mpd_client_packets',`
2751 +interface(`corenet_dontaudit_send_mountd_client_packets',`
2752 gen_require(`
2753 - type mpd_client_packet_t;
2754 + type mountd_client_packet_t;
2755 ')
2756
2757 - dontaudit $1 mpd_client_packet_t:packet send;
2758 + dontaudit $1 mountd_client_packet_t:packet send;
2759 ')
2760
2761 ########################################
2762 ## <summary>
2763 -## Receive mpd_client packets.
2764 +## Receive mountd_client packets.
2765 ## </summary>
2766 ## <param name="domain">
2767 ## <summary>
2768 @@ -50796,17 +51682,17 @@ interface(`corenet_dontaudit_send_mpd_client_packets',`
2769 ## </param>
2770 ## <infoflow type="read" weight="10"/>
2771 #
2772 -interface(`corenet_receive_mpd_client_packets',`
2773 +interface(`corenet_receive_mountd_client_packets',`
2774 gen_require(`
2775 - type mpd_client_packet_t;
2776 + type mountd_client_packet_t;
2777 ')
2778
2779 - allow $1 mpd_client_packet_t:packet recv;
2780 + allow $1 mountd_client_packet_t:packet recv;
2781 ')
2782
2783 ########################################
2784 ## <summary>
2785 -## Do not audit attempts to receive mpd_client packets.
2786 +## Do not audit attempts to receive mountd_client packets.
2787 ## </summary>
2788 ## <param name="domain">
2789 ## <summary>
2790 @@ -50815,17 +51701,17 @@ interface(`corenet_receive_mpd_client_packets',`
2791 ## </param>
2792 ## <infoflow type="none"/>
2793 #
2794 -interface(`corenet_dontaudit_receive_mpd_client_packets',`
2795 +interface(`corenet_dontaudit_receive_mountd_client_packets',`
2796 gen_require(`
2797 - type mpd_client_packet_t;
2798 + type mountd_client_packet_t;
2799 ')
2800
2801 - dontaudit $1 mpd_client_packet_t:packet recv;
2802 + dontaudit $1 mountd_client_packet_t:packet recv;
2803 ')
2804
2805 ########################################
2806 ## <summary>
2807 -## Send and receive mpd_client packets.
2808 +## Send and receive mountd_client packets.
2809 ## </summary>
2810 ## <param name="domain">
2811 ## <summary>
2812 @@ -50834,14 +51720,14 @@ interface(`corenet_dontaudit_receive_mpd_client_packets',`
2813 ## </param>
2814 ## <infoflow type="both" weight="10"/>
2815 #
2816 -interface(`corenet_sendrecv_mpd_client_packets',`
2817 - corenet_send_mpd_client_packets($1)
2818 - corenet_receive_mpd_client_packets($1)
2819 +interface(`corenet_sendrecv_mountd_client_packets',`
2820 + corenet_send_mountd_client_packets($1)
2821 + corenet_receive_mountd_client_packets($1)
2822 ')
2823
2824 ########################################
2825 ## <summary>
2826 -## Do not audit attempts to send and receive mpd_client packets.
2827 +## Do not audit attempts to send and receive mountd_client packets.
2828 ## </summary>
2829 ## <param name="domain">
2830 ## <summary>
2831 @@ -50850,14 +51736,14 @@ interface(`corenet_sendrecv_mpd_client_packets',`
2832 ## </param>
2833 ## <infoflow type="none"/>
2834 #
2835 -interface(`corenet_dontaudit_sendrecv_mpd_client_packets',`
2836 - corenet_dontaudit_send_mpd_client_packets($1)
2837 - corenet_dontaudit_receive_mpd_client_packets($1)
2838 +interface(`corenet_dontaudit_sendrecv_mountd_client_packets',`
2839 + corenet_dontaudit_send_mountd_client_packets($1)
2840 + corenet_dontaudit_receive_mountd_client_packets($1)
2841 ')
2842
2843 ########################################
2844 ## <summary>
2845 -## Relabel packets to mpd_client the packet type.
2846 +## Relabel packets to mountd_client the packet type.
2847 ## </summary>
2848 ## <param name="domain">
2849 ## <summary>
2850 @@ -50865,18 +51751,18 @@ interface(`corenet_dontaudit_sendrecv_mpd_client_packets',`
2851 ## </summary>
2852 ## </param>
2853 #
2854 -interface(`corenet_relabelto_mpd_client_packets',`
2855 +interface(`corenet_relabelto_mountd_client_packets',`
2856 gen_require(`
2857 - type mpd_client_packet_t;
2858 + type mountd_client_packet_t;
2859 ')
2860
2861 - allow $1 mpd_client_packet_t:packet relabelto;
2862 + allow $1 mountd_client_packet_t:packet relabelto;
2863 ')
2864
2865
2866 ########################################
2867 ## <summary>
2868 -## Send mpd_server packets.
2869 +## Send mountd_server packets.
2870 ## </summary>
2871 ## <param name="domain">
2872 ## <summary>
2873 @@ -50885,17 +51771,17 @@ interface(`corenet_relabelto_mpd_client_packets',`
2874 ## </param>
2875 ## <infoflow type="write" weight="10"/>
2876 #
2877 -interface(`corenet_send_mpd_server_packets',`
2878 +interface(`corenet_send_mountd_server_packets',`
2879 gen_require(`
2880 - type mpd_server_packet_t;
2881 + type mountd_server_packet_t;
2882 ')
2883
2884 - allow $1 mpd_server_packet_t:packet send;
2885 + allow $1 mountd_server_packet_t:packet send;
2886 ')
2887
2888 ########################################
2889 ## <summary>
2890 -## Do not audit attempts to send mpd_server packets.
2891 +## Do not audit attempts to send mountd_server packets.
2892 ## </summary>
2893 ## <param name="domain">
2894 ## <summary>
2895 @@ -50904,17 +51790,17 @@ interface(`corenet_send_mpd_server_packets',`
2896 ## </param>
2897 ## <infoflow type="none"/>
2898 #
2899 -interface(`corenet_dontaudit_send_mpd_server_packets',`
2900 +interface(`corenet_dontaudit_send_mountd_server_packets',`
2901 gen_require(`
2902 - type mpd_server_packet_t;
2903 + type mountd_server_packet_t;
2904 ')
2905
2906 - dontaudit $1 mpd_server_packet_t:packet send;
2907 + dontaudit $1 mountd_server_packet_t:packet send;
2908 ')
2909
2910 ########################################
2911 ## <summary>
2912 -## Receive mpd_server packets.
2913 +## Receive mountd_server packets.
2914 ## </summary>
2915 ## <param name="domain">
2916 ## <summary>
2917 @@ -50923,17 +51809,17 @@ interface(`corenet_dontaudit_send_mpd_server_packets',`
2918 ## </param>
2919 ## <infoflow type="read" weight="10"/>
2920 #
2921 -interface(`corenet_receive_mpd_server_packets',`
2922 +interface(`corenet_receive_mountd_server_packets',`
2923 gen_require(`
2924 - type mpd_server_packet_t;
2925 + type mountd_server_packet_t;
2926 ')
2927
2928 - allow $1 mpd_server_packet_t:packet recv;
2929 + allow $1 mountd_server_packet_t:packet recv;
2930 ')
2931
2932 ########################################
2933 ## <summary>
2934 -## Do not audit attempts to receive mpd_server packets.
2935 +## Do not audit attempts to receive mountd_server packets.
2936 ## </summary>
2937 ## <param name="domain">
2938 ## <summary>
2939 @@ -50942,17 +51828,17 @@ interface(`corenet_receive_mpd_server_packets',`
2940 ## </param>
2941 ## <infoflow type="none"/>
2942 #
2943 -interface(`corenet_dontaudit_receive_mpd_server_packets',`
2944 +interface(`corenet_dontaudit_receive_mountd_server_packets',`
2945 gen_require(`
2946 - type mpd_server_packet_t;
2947 + type mountd_server_packet_t;
2948 ')
2949
2950 - dontaudit $1 mpd_server_packet_t:packet recv;
2951 + dontaudit $1 mountd_server_packet_t:packet recv;
2952 ')
2953
2954 ########################################
2955 ## <summary>
2956 -## Send and receive mpd_server packets.
2957 +## Send and receive mountd_server packets.
2958 ## </summary>
2959 ## <param name="domain">
2960 ## <summary>
2961 @@ -50961,14 +51847,14 @@ interface(`corenet_dontaudit_receive_mpd_server_packets',`
2962 ## </param>
2963 ## <infoflow type="both" weight="10"/>
2964 #
2965 -interface(`corenet_sendrecv_mpd_server_packets',`
2966 - corenet_send_mpd_server_packets($1)
2967 - corenet_receive_mpd_server_packets($1)
2968 +interface(`corenet_sendrecv_mountd_server_packets',`
2969 + corenet_send_mountd_server_packets($1)
2970 + corenet_receive_mountd_server_packets($1)
2971 ')
2972
2973 ########################################
2974 ## <summary>
2975 -## Do not audit attempts to send and receive mpd_server packets.
2976 +## Do not audit attempts to send and receive mountd_server packets.
2977 ## </summary>
2978 ## <param name="domain">
2979 ## <summary>
2980 @@ -50977,14 +51863,14 @@ interface(`corenet_sendrecv_mpd_server_packets',`
2981 ## </param>
2982 ## <infoflow type="none"/>
2983 #
2984 -interface(`corenet_dontaudit_sendrecv_mpd_server_packets',`
2985 - corenet_dontaudit_send_mpd_server_packets($1)
2986 - corenet_dontaudit_receive_mpd_server_packets($1)
2987 +interface(`corenet_dontaudit_sendrecv_mountd_server_packets',`
2988 + corenet_dontaudit_send_mountd_server_packets($1)
2989 + corenet_dontaudit_receive_mountd_server_packets($1)
2990 ')
2991
2992 ########################################
2993 ## <summary>
2994 -## Relabel packets to mpd_server the packet type.
2995 +## Relabel packets to mountd_server the packet type.
2996 ## </summary>
2997 ## <param name="domain">
2998 ## <summary>
2999 @@ -50992,12 +51878,12 @@ interface(`corenet_dontaudit_sendrecv_mpd_server_packets',`
3000 ## </summary>
3001 ## </param>
3002 #
3003 -interface(`corenet_relabelto_mpd_server_packets',`
3004 +interface(`corenet_relabelto_mountd_server_packets',`
3005 gen_require(`
3006 - type mpd_server_packet_t;
3007 + type mountd_server_packet_t;
3008 ')
3009
3010 - allow $1 mpd_server_packet_t:packet relabelto;
3011 + allow $1 mountd_server_packet_t:packet relabelto;
3012 ')
3013
3014
3015 @@ -51005,7 +51891,7 @@ interface(`corenet_relabelto_mpd_server_packets',`
3016
3017 ########################################
3018 ## <summary>
3019 -## Send and receive TCP traffic on the msgsrvr port.
3020 +## Send and receive TCP traffic on the movaz_ssc port.
3021 ## </summary>
3022 ## <param name="domain">
3023 ## <summary>
3024 @@ -51014,17 +51900,17 @@ interface(`corenet_relabelto_mpd_server_packets',`
3025 ## </param>
3026 ## <infoflow type="both" weight="10"/>
3027 #
3028 -interface(`corenet_tcp_sendrecv_msgsrvr_port',`
3029 +interface(`corenet_tcp_sendrecv_movaz_ssc_port',`
3030 gen_require(`
3031 - type msgsrvr_port_t;
3032 + type movaz_ssc_port_t;
3033 ')
3034
3035 - allow $1 msgsrvr_port_t:tcp_socket { send_msg recv_msg };
3036 + allow $1 movaz_ssc_port_t:tcp_socket { send_msg recv_msg };
3037 ')
3038
3039 ########################################
3040 ## <summary>
3041 -## Send UDP traffic on the msgsrvr port.
3042 +## Send UDP traffic on the movaz_ssc port.
3043 ## </summary>
3044 ## <param name="domain">
3045 ## <summary>
3046 @@ -51033,17 +51919,17 @@ interface(`corenet_tcp_sendrecv_msgsrvr_port',`
3047 ## </param>
3048 ## <infoflow type="write" weight="10"/>
3049 #
3050 -interface(`corenet_udp_send_msgsrvr_port',`
3051 +interface(`corenet_udp_send_movaz_ssc_port',`
3052 gen_require(`
3053 - type msgsrvr_port_t;
3054 + type movaz_ssc_port_t;
3055 ')
3056
3057 - allow $1 msgsrvr_port_t:udp_socket send_msg;
3058 + allow $1 movaz_ssc_port_t:udp_socket send_msg;
3059 ')
3060
3061 ########################################
3062 ## <summary>
3063 -## Do not audit attempts to send UDP traffic on the msgsrvr port.
3064 +## Do not audit attempts to send UDP traffic on the movaz_ssc port.
3065 ## </summary>
3066 ## <param name="domain">
3067 ## <summary>
3068 @@ -51052,17 +51938,17 @@ interface(`corenet_udp_send_msgsrvr_port',`
3069 ## </param>
3070 ## <infoflow type="none"/>
3071 #
3072 -interface(`corenet_dontaudit_udp_send_msgsrvr_port',`
3073 +interface(`corenet_dontaudit_udp_send_movaz_ssc_port',`
3074 gen_require(`
3075 - type msgsrvr_port_t;
3076 + type movaz_ssc_port_t;
3077 ')
3078
3079 - dontaudit $1 msgsrvr_port_t:udp_socket send_msg;
3080 + dontaudit $1 movaz_ssc_port_t:udp_socket send_msg;
3081 ')
3082
3083 ########################################
3084 ## <summary>
3085 -## Receive UDP traffic on the msgsrvr port.
3086 +## Receive UDP traffic on the movaz_ssc port.
3087 ## </summary>
3088 ## <param name="domain">
3089 ## <summary>
3090 @@ -51071,17 +51957,17 @@ interface(`corenet_dontaudit_udp_send_msgsrvr_port',`
3091 ## </param>
3092 ## <infoflow type="read" weight="10"/>
3093 #
3094 -interface(`corenet_udp_receive_msgsrvr_port',`
3095 +interface(`corenet_udp_receive_movaz_ssc_port',`
3096 gen_require(`
3097 - type msgsrvr_port_t;
3098 + type movaz_ssc_port_t;
3099 ')
3100
3101 - allow $1 msgsrvr_port_t:udp_socket recv_msg;
3102 + allow $1 movaz_ssc_port_t:udp_socket recv_msg;
3103 ')
3104
3105 ########################################
3106 ## <summary>
3107 -## Do not audit attempts to receive UDP traffic on the msgsrvr port.
3108 +## Do not audit attempts to receive UDP traffic on the movaz_ssc port.
3109 ## </summary>
3110 ## <param name="domain">
3111 ## <summary>
3112 @@ -51090,17 +51976,17 @@ interface(`corenet_udp_receive_msgsrvr_port',`
3113 ## </param>
3114 ## <infoflow type="none"/>
3115 #
3116 -interface(`corenet_dontaudit_udp_receive_msgsrvr_port',`
3117 +interface(`corenet_dontaudit_udp_receive_movaz_ssc_port',`
3118 gen_require(`
3119 - type msgsrvr_port_t;
3120 + type movaz_ssc_port_t;
3121 ')
3122
3123 - dontaudit $1 msgsrvr_port_t:udp_socket recv_msg;
3124 + dontaudit $1 movaz_ssc_port_t:udp_socket recv_msg;
3125 ')
3126
3127 ########################################
3128 ## <summary>
3129 -## Send and receive UDP traffic on the msgsrvr port.
3130 +## Send and receive UDP traffic on the movaz_ssc port.
3131 ## </summary>
3132 ## <param name="domain">
3133 ## <summary>
3134 @@ -51109,15 +51995,15 @@ interface(`corenet_dontaudit_udp_receive_msgsrvr_port',`
3135 ## </param>
3136 ## <infoflow type="both" weight="10"/>
3137 #
3138 -interface(`corenet_udp_sendrecv_msgsrvr_port',`
3139 - corenet_udp_send_msgsrvr_port($1)
3140 - corenet_udp_receive_msgsrvr_port($1)
3141 +interface(`corenet_udp_sendrecv_movaz_ssc_port',`
3142 + corenet_udp_send_movaz_ssc_port($1)
3143 + corenet_udp_receive_movaz_ssc_port($1)
3144 ')
3145
3146 ########################################
3147 ## <summary>
3148 ## Do not audit attempts to send and receive
3149 -## UDP traffic on the msgsrvr port.
3150 +## UDP traffic on the movaz_ssc port.
3151 ## </summary>
3152 ## <param name="domain">
3153 ## <summary>
3154 @@ -51126,14 +52012,14 @@ interface(`corenet_udp_sendrecv_msgsrvr_port',`
3155 ## </param>
3156 ## <infoflow type="none"/>
3157 #
3158 -interface(`corenet_dontaudit_udp_sendrecv_msgsrvr_port',`
3159 - corenet_dontaudit_udp_send_msgsrvr_port($1)
3160 - corenet_dontaudit_udp_receive_msgsrvr_port($1)
3161 +interface(`corenet_dontaudit_udp_sendrecv_movaz_ssc_port',`
3162 + corenet_dontaudit_udp_send_movaz_ssc_port($1)
3163 + corenet_dontaudit_udp_receive_movaz_ssc_port($1)
3164 ')
3165
3166 ########################################
3167 ## <summary>
3168 -## Bind TCP sockets to the msgsrvr port.
3169 +## Bind TCP sockets to the movaz_ssc port.
3170 ## </summary>
3171 ## <param name="domain">
3172 ## <summary>
3173 @@ -51142,18 +52028,18 @@ interface(`corenet_dontaudit_udp_sendrecv_msgsrvr_port',`
3174 ## </param>
3175 ## <infoflow type="none"/>
3176 #
3177 -interface(`corenet_tcp_bind_msgsrvr_port',`
3178 +interface(`corenet_tcp_bind_movaz_ssc_port',`
3179 gen_require(`
3180 - type msgsrvr_port_t;
3181 + type movaz_ssc_port_t;
3182 ')
3183
3184 - allow $1 msgsrvr_port_t:tcp_socket name_bind;
3185 + allow $1 movaz_ssc_port_t:tcp_socket name_bind;
3186
3187 ')
3188
3189 ########################################
3190 ## <summary>
3191 -## Bind UDP sockets to the msgsrvr port.
3192 +## Bind UDP sockets to the movaz_ssc port.
3193 ## </summary>
3194 ## <param name="domain">
3195 ## <summary>
3196 @@ -51162,18 +52048,18 @@ interface(`corenet_tcp_bind_msgsrvr_port',`
3197 ## </param>
3198 ## <infoflow type="none"/>
3199 #
3200 -interface(`corenet_udp_bind_msgsrvr_port',`
3201 +interface(`corenet_udp_bind_movaz_ssc_port',`
3202 gen_require(`
3203 - type msgsrvr_port_t;
3204 + type movaz_ssc_port_t;
3205 ')
3206
3207 - allow $1 msgsrvr_port_t:udp_socket name_bind;
3208 + allow $1 movaz_ssc_port_t:udp_socket name_bind;
3209
3210 ')
3211
3212 ########################################
3213 ## <summary>
3214 -## Make a TCP connection to the msgsrvr port.
3215 +## Make a TCP connection to the movaz_ssc port.
3216 ## </summary>
3217 ## <param name="domain">
3218 ## <summary>
3219 @@ -51181,18 +52067,18 @@ interface(`corenet_udp_bind_msgsrvr_port',`
3220 ## </summary>
3221 ## </param>
3222 #
3223 -interface(`corenet_tcp_connect_msgsrvr_port',`
3224 +interface(`corenet_tcp_connect_movaz_ssc_port',`
3225 gen_require(`
3226 - type msgsrvr_port_t;
3227 + type movaz_ssc_port_t;
3228 ')
3229
3230 - allow $1 msgsrvr_port_t:tcp_socket name_connect;
3231 + allow $1 movaz_ssc_port_t:tcp_socket name_connect;
3232 ')
3233
3234
3235 ########################################
3236 ## <summary>
3237 -## Send msgsrvr_client packets.
3238 +## Send movaz_ssc_client packets.
3239 ## </summary>
3240 ## <param name="domain">
3241 ## <summary>
3242 @@ -51201,17 +52087,17 @@ interface(`corenet_tcp_connect_msgsrvr_port',`
3243 ## </param>
3244 ## <infoflow type="write" weight="10"/>
3245 #
3246 -interface(`corenet_send_msgsrvr_client_packets',`
3247 +interface(`corenet_send_movaz_ssc_client_packets',`
3248 gen_require(`
3249 - type msgsrvr_client_packet_t;
3250 + type movaz_ssc_client_packet_t;
3251 ')
3252
3253 - allow $1 msgsrvr_client_packet_t:packet send;
3254 + allow $1 movaz_ssc_client_packet_t:packet send;
3255 ')
3256
3257 ########################################
3258 ## <summary>
3259 -## Do not audit attempts to send msgsrvr_client packets.
3260 +## Do not audit attempts to send movaz_ssc_client packets.
3261 ## </summary>
3262 ## <param name="domain">
3263 ## <summary>
3264 @@ -51220,17 +52106,17 @@ interface(`corenet_send_msgsrvr_client_packets',`
3265 ## </param>
3266 ## <infoflow type="none"/>
3267 #
3268 -interface(`corenet_dontaudit_send_msgsrvr_client_packets',`
3269 +interface(`corenet_dontaudit_send_movaz_ssc_client_packets',`
3270 gen_require(`
3271 - type msgsrvr_client_packet_t;
3272 + type movaz_ssc_client_packet_t;
3273 ')
3274
3275 - dontaudit $1 msgsrvr_client_packet_t:packet send;
3276 + dontaudit $1 movaz_ssc_client_packet_t:packet send;
3277 ')
3278
3279 ########################################
3280 ## <summary>
3281 -## Receive msgsrvr_client packets.
3282 +## Receive movaz_ssc_client packets.
3283 ## </summary>
3284 ## <param name="domain">
3285 ## <summary>
3286 @@ -51239,17 +52125,17 @@ interface(`corenet_dontaudit_send_msgsrvr_client_packets',`
3287 ## </param>
3288 ## <infoflow type="read" weight="10"/>
3289 #
3290 -interface(`corenet_receive_msgsrvr_client_packets',`
3291 +interface(`corenet_receive_movaz_ssc_client_packets',`
3292 gen_require(`
3293 - type msgsrvr_client_packet_t;
3294 + type movaz_ssc_client_packet_t;
3295 ')
3296
3297 - allow $1 msgsrvr_client_packet_t:packet recv;
3298 + allow $1 movaz_ssc_client_packet_t:packet recv;
3299 ')
3300
3301 ########################################
3302 ## <summary>
3303 -## Do not audit attempts to receive msgsrvr_client packets.
3304 +## Do not audit attempts to receive movaz_ssc_client packets.
3305 ## </summary>
3306 ## <param name="domain">
3307 ## <summary>
3308 @@ -51258,17 +52144,17 @@ interface(`corenet_receive_msgsrvr_client_packets',`
3309 ## </param>
3310 ## <infoflow type="none"/>
3311 #
3312 -interface(`corenet_dontaudit_receive_msgsrvr_client_packets',`
3313 +interface(`corenet_dontaudit_receive_movaz_ssc_client_packets',`
3314 gen_require(`
3315 - type msgsrvr_client_packet_t;
3316 + type movaz_ssc_client_packet_t;
3317 ')
3318
3319 - dontaudit $1 msgsrvr_client_packet_t:packet recv;
3320 + dontaudit $1 movaz_ssc_client_packet_t:packet recv;
3321 ')
3322
3323 ########################################
3324 ## <summary>
3325 -## Send and receive msgsrvr_client packets.
3326 +## Send and receive movaz_ssc_client packets.
3327 ## </summary>
3328 ## <param name="domain">
3329 ## <summary>
3330 @@ -51277,14 +52163,14 @@ interface(`corenet_dontaudit_receive_msgsrvr_client_packets',`
3331 ## </param>
3332 ## <infoflow type="both" weight="10"/>
3333 #
3334 -interface(`corenet_sendrecv_msgsrvr_client_packets',`
3335 - corenet_send_msgsrvr_client_packets($1)
3336 - corenet_receive_msgsrvr_client_packets($1)
3337 +interface(`corenet_sendrecv_movaz_ssc_client_packets',`
3338 + corenet_send_movaz_ssc_client_packets($1)
3339 + corenet_receive_movaz_ssc_client_packets($1)
3340 ')
3341
3342 ########################################
3343 ## <summary>
3344 -## Do not audit attempts to send and receive msgsrvr_client packets.
3345 +## Do not audit attempts to send and receive movaz_ssc_client packets.
3346 ## </summary>
3347 ## <param name="domain">
3348 ## <summary>
3349 @@ -51293,14 +52179,14 @@ interface(`corenet_sendrecv_msgsrvr_client_packets',`
3350 ## </param>
3351 ## <infoflow type="none"/>
3352 #
3353 -interface(`corenet_dontaudit_sendrecv_msgsrvr_client_packets',`
3354 - corenet_dontaudit_send_msgsrvr_client_packets($1)
3355 - corenet_dontaudit_receive_msgsrvr_client_packets($1)
3356 +interface(`corenet_dontaudit_sendrecv_movaz_ssc_client_packets',`
3357 + corenet_dontaudit_send_movaz_ssc_client_packets($1)
3358 + corenet_dontaudit_receive_movaz_ssc_client_packets($1)
3359 ')
3360
3361 ########################################
3362 ## <summary>
3363 -## Relabel packets to msgsrvr_client the packet type.
3364 +## Relabel packets to movaz_ssc_client the packet type.
3365 ## </summary>
3366 ## <param name="domain">
3367 ## <summary>
3368 @@ -51308,18 +52194,18 @@ interface(`corenet_dontaudit_sendrecv_msgsrvr_client_packets',`
3369 ## </summary>
3370 ## </param>
3371 #
3372 -interface(`corenet_relabelto_msgsrvr_client_packets',`
3373 +interface(`corenet_relabelto_movaz_ssc_client_packets',`
3374 gen_require(`
3375 - type msgsrvr_client_packet_t;
3376 + type movaz_ssc_client_packet_t;
3377 ')
3378
3379 - allow $1 msgsrvr_client_packet_t:packet relabelto;
3380 + allow $1 movaz_ssc_client_packet_t:packet relabelto;
3381 ')
3382
3383
3384 ########################################
3385 ## <summary>
3386 -## Send msgsrvr_server packets.
3387 +## Send movaz_ssc_server packets.
3388 ## </summary>
3389 ## <param name="domain">
3390 ## <summary>
3391 @@ -51328,17 +52214,17 @@ interface(`corenet_relabelto_msgsrvr_client_packets',`
3392 ## </param>
3393 ## <infoflow type="write" weight="10"/>
3394 #
3395 -interface(`corenet_send_msgsrvr_server_packets',`
3396 +interface(`corenet_send_movaz_ssc_server_packets',`
3397 gen_require(`
3398 - type msgsrvr_server_packet_t;
3399 + type movaz_ssc_server_packet_t;
3400 ')
3401
3402 - allow $1 msgsrvr_server_packet_t:packet send;
3403 + allow $1 movaz_ssc_server_packet_t:packet send;
3404 ')
3405
3406 ########################################
3407 ## <summary>
3408 -## Do not audit attempts to send msgsrvr_server packets.
3409 +## Do not audit attempts to send movaz_ssc_server packets.
3410 ## </summary>
3411 ## <param name="domain">
3412 ## <summary>
3413 @@ -51347,17 +52233,17 @@ interface(`corenet_send_msgsrvr_server_packets',`
3414 ## </param>
3415 ## <infoflow type="none"/>
3416 #
3417 -interface(`corenet_dontaudit_send_msgsrvr_server_packets',`
3418 +interface(`corenet_dontaudit_send_movaz_ssc_server_packets',`
3419 gen_require(`
3420 - type msgsrvr_server_packet_t;
3421 + type movaz_ssc_server_packet_t;
3422 ')
3423
3424 - dontaudit $1 msgsrvr_server_packet_t:packet send;
3425 + dontaudit $1 movaz_ssc_server_packet_t:packet send;
3426 ')
3427
3428 ########################################
3429 ## <summary>
3430 -## Receive msgsrvr_server packets.
3431 +## Receive movaz_ssc_server packets.
3432 ## </summary>
3433 ## <param name="domain">
3434 ## <summary>
3435 @@ -51366,17 +52252,17 @@ interface(`corenet_dontaudit_send_msgsrvr_server_packets',`
3436 ## </param>
3437 ## <infoflow type="read" weight="10"/>
3438 #
3439 -interface(`corenet_receive_msgsrvr_server_packets',`
3440 +interface(`corenet_receive_movaz_ssc_server_packets',`
3441 gen_require(`
3442 - type msgsrvr_server_packet_t;
3443 + type movaz_ssc_server_packet_t;
3444 ')
3445
3446 - allow $1 msgsrvr_server_packet_t:packet recv;
3447 + allow $1 movaz_ssc_server_packet_t:packet recv;
3448 ')
3449
3450 ########################################
3451 ## <summary>
3452 -## Do not audit attempts to receive msgsrvr_server packets.
3453 +## Do not audit attempts to receive movaz_ssc_server packets.
3454 ## </summary>
3455 ## <param name="domain">
3456 ## <summary>
3457 @@ -51385,17 +52271,17 @@ interface(`corenet_receive_msgsrvr_server_packets',`
3458 ## </param>
3459 ## <infoflow type="none"/>
3460 #
3461 -interface(`corenet_dontaudit_receive_msgsrvr_server_packets',`
3462 +interface(`corenet_dontaudit_receive_movaz_ssc_server_packets',`
3463 gen_require(`
3464 - type msgsrvr_server_packet_t;
3465 + type movaz_ssc_server_packet_t;
3466 ')
3467
3468 - dontaudit $1 msgsrvr_server_packet_t:packet recv;
3469 + dontaudit $1 movaz_ssc_server_packet_t:packet recv;
3470 ')
3471
3472 ########################################
3473 ## <summary>
3474 -## Send and receive msgsrvr_server packets.
3475 +## Send and receive movaz_ssc_server packets.
3476 ## </summary>
3477 ## <param name="domain">
3478 ## <summary>
3479 @@ -51404,14 +52290,14 @@ interface(`corenet_dontaudit_receive_msgsrvr_server_packets',`
3480 ## </param>
3481 ## <infoflow type="both" weight="10"/>
3482 #
3483 -interface(`corenet_sendrecv_msgsrvr_server_packets',`
3484 - corenet_send_msgsrvr_server_packets($1)
3485 - corenet_receive_msgsrvr_server_packets($1)
3486 +interface(`corenet_sendrecv_movaz_ssc_server_packets',`
3487 + corenet_send_movaz_ssc_server_packets($1)
3488 + corenet_receive_movaz_ssc_server_packets($1)
3489 ')
3490
3491 ########################################
3492 ## <summary>
3493 -## Do not audit attempts to send and receive msgsrvr_server packets.
3494 +## Do not audit attempts to send and receive movaz_ssc_server packets.
3495 ## </summary>
3496 ## <param name="domain">
3497 ## <summary>
3498 @@ -51420,14 +52306,14 @@ interface(`corenet_sendrecv_msgsrvr_server_packets',`
3499 ## </param>
3500 ## <infoflow type="none"/>
3501 #
3502 -interface(`corenet_dontaudit_sendrecv_msgsrvr_server_packets',`
3503 - corenet_dontaudit_send_msgsrvr_server_packets($1)
3504 - corenet_dontaudit_receive_msgsrvr_server_packets($1)
3505 +interface(`corenet_dontaudit_sendrecv_movaz_ssc_server_packets',`
3506 + corenet_dontaudit_send_movaz_ssc_server_packets($1)
3507 + corenet_dontaudit_receive_movaz_ssc_server_packets($1)
3508 ')
3509
3510 ########################################
3511 ## <summary>
3512 -## Relabel packets to msgsrvr_server the packet type.
3513 +## Relabel packets to movaz_ssc_server the packet type.
3514 ## </summary>
3515 ## <param name="domain">
3516 ## <summary>
3517 @@ -51435,12 +52321,12 @@ interface(`corenet_dontaudit_sendrecv_msgsrvr_server_packets',`
3518 ## </summary>
3519 ## </param>
3520 #
3521 -interface(`corenet_relabelto_msgsrvr_server_packets',`
3522 +interface(`corenet_relabelto_movaz_ssc_server_packets',`
3523 gen_require(`
3524 - type msgsrvr_server_packet_t;
3525 + type movaz_ssc_server_packet_t;
3526 ')
3527
3528 - allow $1 msgsrvr_server_packet_t:packet relabelto;
3529 + allow $1 movaz_ssc_server_packet_t:packet relabelto;
3530 ')
3531
3532
3533 @@ -51448,7 +52334,7 @@ interface(`corenet_relabelto_msgsrvr_server_packets',`
3534
3535 ########################################
3536 ## <summary>
3537 -## Send and receive TCP traffic on the msnp port.
3538 +## Send and receive TCP traffic on the mpd port.
3539 ## </summary>
3540 ## <param name="domain">
3541 ## <summary>
3542 @@ -51457,17 +52343,17 @@ interface(`corenet_relabelto_msgsrvr_server_packets',`
3543 ## </param>
3544 ## <infoflow type="both" weight="10"/>
3545 #
3546 -interface(`corenet_tcp_sendrecv_msnp_port',`
3547 +interface(`corenet_tcp_sendrecv_mpd_port',`
3548 gen_require(`
3549 - type msnp_port_t;
3550 + type mpd_port_t;
3551 ')
3552
3553 - allow $1 msnp_port_t:tcp_socket { send_msg recv_msg };
3554 + allow $1 mpd_port_t:tcp_socket { send_msg recv_msg };
3555 ')
3556
3557 ########################################
3558 ## <summary>
3559 -## Send UDP traffic on the msnp port.
3560 +## Send UDP traffic on the mpd port.
3561 ## </summary>
3562 ## <param name="domain">
3563 ## <summary>
3564 @@ -51476,17 +52362,17 @@ interface(`corenet_tcp_sendrecv_msnp_port',`
3565 ## </param>
3566 ## <infoflow type="write" weight="10"/>
3567 #
3568 -interface(`corenet_udp_send_msnp_port',`
3569 +interface(`corenet_udp_send_mpd_port',`
3570 gen_require(`
3571 - type msnp_port_t;
3572 + type mpd_port_t;
3573 ')
3574
3575 - allow $1 msnp_port_t:udp_socket send_msg;
3576 + allow $1 mpd_port_t:udp_socket send_msg;
3577 ')
3578
3579 ########################################
3580 ## <summary>
3581 -## Do not audit attempts to send UDP traffic on the msnp port.
3582 +## Do not audit attempts to send UDP traffic on the mpd port.
3583 ## </summary>
3584 ## <param name="domain">
3585 ## <summary>
3586 @@ -51495,17 +52381,17 @@ interface(`corenet_udp_send_msnp_port',`
3587 ## </param>
3588 ## <infoflow type="none"/>
3589 #
3590 -interface(`corenet_dontaudit_udp_send_msnp_port',`
3591 +interface(`corenet_dontaudit_udp_send_mpd_port',`
3592 gen_require(`
3593 - type msnp_port_t;
3594 + type mpd_port_t;
3595 ')
3596
3597 - dontaudit $1 msnp_port_t:udp_socket send_msg;
3598 + dontaudit $1 mpd_port_t:udp_socket send_msg;
3599 ')
3600
3601 ########################################
3602 ## <summary>
3603 -## Receive UDP traffic on the msnp port.
3604 +## Receive UDP traffic on the mpd port.
3605 ## </summary>
3606 ## <param name="domain">
3607 ## <summary>
3608 @@ -51514,17 +52400,17 @@ interface(`corenet_dontaudit_udp_send_msnp_port',`
3609 ## </param>
3610 ## <infoflow type="read" weight="10"/>
3611 #
3612 -interface(`corenet_udp_receive_msnp_port',`
3613 +interface(`corenet_udp_receive_mpd_port',`
3614 gen_require(`
3615 - type msnp_port_t;
3616 + type mpd_port_t;
3617 ')
3618
3619 - allow $1 msnp_port_t:udp_socket recv_msg;
3620 + allow $1 mpd_port_t:udp_socket recv_msg;
3621 ')
3622
3623 ########################################
3624 ## <summary>
3625 -## Do not audit attempts to receive UDP traffic on the msnp port.
3626 +## Do not audit attempts to receive UDP traffic on the mpd port.
3627 ## </summary>
3628 ## <param name="domain">
3629 ## <summary>
3630 @@ -51533,17 +52419,17 @@ interface(`corenet_udp_receive_msnp_port',`
3631 ## </param>
3632 ## <infoflow type="none"/>
3633 #
3634 -interface(`corenet_dontaudit_udp_receive_msnp_port',`
3635 +interface(`corenet_dontaudit_udp_receive_mpd_port',`
3636 gen_require(`
3637 - type msnp_port_t;
3638 + type mpd_port_t;
3639 ')
3640
3641 - dontaudit $1 msnp_port_t:udp_socket recv_msg;
3642 + dontaudit $1 mpd_port_t:udp_socket recv_msg;
3643 ')
3644
3645 ########################################
3646 ## <summary>
3647 -## Send and receive UDP traffic on the msnp port.
3648 +## Send and receive UDP traffic on the mpd port.
3649 ## </summary>
3650 ## <param name="domain">
3651 ## <summary>
3652 @@ -51552,15 +52438,15 @@ interface(`corenet_dontaudit_udp_receive_msnp_port',`
3653 ## </param>
3654 ## <infoflow type="both" weight="10"/>
3655 #
3656 -interface(`corenet_udp_sendrecv_msnp_port',`
3657 - corenet_udp_send_msnp_port($1)
3658 - corenet_udp_receive_msnp_port($1)
3659 +interface(`corenet_udp_sendrecv_mpd_port',`
3660 + corenet_udp_send_mpd_port($1)
3661 + corenet_udp_receive_mpd_port($1)
3662 ')
3663
3664 ########################################
3665 ## <summary>
3666 ## Do not audit attempts to send and receive
3667 -## UDP traffic on the msnp port.
3668 +## UDP traffic on the mpd port.
3669 ## </summary>
3670 ## <param name="domain">
3671 ## <summary>
3672 @@ -51569,14 +52455,14 @@ interface(`corenet_udp_sendrecv_msnp_port',`
3673 ## </param>
3674 ## <infoflow type="none"/>
3675 #
3676 -interface(`corenet_dontaudit_udp_sendrecv_msnp_port',`
3677 - corenet_dontaudit_udp_send_msnp_port($1)
3678 - corenet_dontaudit_udp_receive_msnp_port($1)
3679 +interface(`corenet_dontaudit_udp_sendrecv_mpd_port',`
3680 + corenet_dontaudit_udp_send_mpd_port($1)
3681 + corenet_dontaudit_udp_receive_mpd_port($1)
3682 ')
3683
3684 ########################################
3685 ## <summary>
3686 -## Bind TCP sockets to the msnp port.
3687 +## Bind TCP sockets to the mpd port.
3688 ## </summary>
3689 ## <param name="domain">
3690 ## <summary>
3691 @@ -51585,18 +52471,18 @@ interface(`corenet_dontaudit_udp_sendrecv_msnp_port',`
3692 ## </param>
3693 ## <infoflow type="none"/>
3694 #
3695 -interface(`corenet_tcp_bind_msnp_port',`
3696 +interface(`corenet_tcp_bind_mpd_port',`
3697 gen_require(`
3698 - type msnp_port_t;
3699 + type mpd_port_t;
3700 ')
3701
3702 - allow $1 msnp_port_t:tcp_socket name_bind;
3703 + allow $1 mpd_port_t:tcp_socket name_bind;
3704
3705 ')
3706
3707 ########################################
3708 ## <summary>
3709 -## Bind UDP sockets to the msnp port.
3710 +## Bind UDP sockets to the mpd port.
3711 ## </summary>
3712 ## <param name="domain">
3713 ## <summary>
3714 @@ -51605,18 +52491,18 @@ interface(`corenet_tcp_bind_msnp_port',`
3715 ## </param>
3716 ## <infoflow type="none"/>
3717 #
3718 -interface(`corenet_udp_bind_msnp_port',`
3719 +interface(`corenet_udp_bind_mpd_port',`
3720 gen_require(`
3721 - type msnp_port_t;
3722 + type mpd_port_t;
3723 ')
3724
3725 - allow $1 msnp_port_t:udp_socket name_bind;
3726 + allow $1 mpd_port_t:udp_socket name_bind;
3727
3728 ')
3729
3730 ########################################
3731 ## <summary>
3732 -## Make a TCP connection to the msnp port.
3733 +## Make a TCP connection to the mpd port.
3734 ## </summary>
3735 ## <param name="domain">
3736 ## <summary>
3737 @@ -51624,18 +52510,18 @@ interface(`corenet_udp_bind_msnp_port',`
3738 ## </summary>
3739 ## </param>
3740 #
3741 -interface(`corenet_tcp_connect_msnp_port',`
3742 +interface(`corenet_tcp_connect_mpd_port',`
3743 gen_require(`
3744 - type msnp_port_t;
3745 + type mpd_port_t;
3746 ')
3747
3748 - allow $1 msnp_port_t:tcp_socket name_connect;
3749 + allow $1 mpd_port_t:tcp_socket name_connect;
3750 ')
3751
3752
3753 ########################################
3754 ## <summary>
3755 -## Send msnp_client packets.
3756 +## Send mpd_client packets.
3757 ## </summary>
3758 ## <param name="domain">
3759 ## <summary>
3760 @@ -51644,17 +52530,17 @@ interface(`corenet_tcp_connect_msnp_port',`
3761 ## </param>
3762 ## <infoflow type="write" weight="10"/>
3763 #
3764 -interface(`corenet_send_msnp_client_packets',`
3765 +interface(`corenet_send_mpd_client_packets',`
3766 gen_require(`
3767 - type msnp_client_packet_t;
3768 + type mpd_client_packet_t;
3769 ')
3770
3771 - allow $1 msnp_client_packet_t:packet send;
3772 + allow $1 mpd_client_packet_t:packet send;
3773 ')
3774
3775 ########################################
3776 ## <summary>
3777 -## Do not audit attempts to send msnp_client packets.
3778 +## Do not audit attempts to send mpd_client packets.
3779 ## </summary>
3780 ## <param name="domain">
3781 ## <summary>
3782 @@ -51663,17 +52549,17 @@ interface(`corenet_send_msnp_client_packets',`
3783 ## </param>
3784 ## <infoflow type="none"/>
3785 #
3786 -interface(`corenet_dontaudit_send_msnp_client_packets',`
3787 +interface(`corenet_dontaudit_send_mpd_client_packets',`
3788 gen_require(`
3789 - type msnp_client_packet_t;
3790 + type mpd_client_packet_t;
3791 ')
3792
3793 - dontaudit $1 msnp_client_packet_t:packet send;
3794 + dontaudit $1 mpd_client_packet_t:packet send;
3795 ')
3796
3797 ########################################
3798 ## <summary>
3799 -## Receive msnp_client packets.
3800 +## Receive mpd_client packets.
3801 ## </summary>
3802 ## <param name="domain">
3803 ## <summary>
3804 @@ -51682,17 +52568,17 @@ interface(`corenet_dontaudit_send_msnp_client_packets',`
3805 ## </param>
3806 ## <infoflow type="read" weight="10"/>
3807 #
3808 -interface(`corenet_receive_msnp_client_packets',`
3809 +interface(`corenet_receive_mpd_client_packets',`
3810 gen_require(`
3811 - type msnp_client_packet_t;
3812 + type mpd_client_packet_t;
3813 ')
3814
3815 - allow $1 msnp_client_packet_t:packet recv;
3816 + allow $1 mpd_client_packet_t:packet recv;
3817 ')
3818
3819 ########################################
3820 ## <summary>
3821 -## Do not audit attempts to receive msnp_client packets.
3822 +## Do not audit attempts to receive mpd_client packets.
3823 ## </summary>
3824 ## <param name="domain">
3825 ## <summary>
3826 @@ -51701,17 +52587,17 @@ interface(`corenet_receive_msnp_client_packets',`
3827 ## </param>
3828 ## <infoflow type="none"/>
3829 #
3830 -interface(`corenet_dontaudit_receive_msnp_client_packets',`
3831 +interface(`corenet_dontaudit_receive_mpd_client_packets',`
3832 gen_require(`
3833 - type msnp_client_packet_t;
3834 + type mpd_client_packet_t;
3835 ')
3836
3837 - dontaudit $1 msnp_client_packet_t:packet recv;
3838 + dontaudit $1 mpd_client_packet_t:packet recv;
3839 ')
3840
3841 ########################################
3842 ## <summary>
3843 -## Send and receive msnp_client packets.
3844 +## Send and receive mpd_client packets.
3845 ## </summary>
3846 ## <param name="domain">
3847 ## <summary>
3848 @@ -51720,14 +52606,14 @@ interface(`corenet_dontaudit_receive_msnp_client_packets',`
3849 ## </param>
3850 ## <infoflow type="both" weight="10"/>
3851 #
3852 -interface(`corenet_sendrecv_msnp_client_packets',`
3853 - corenet_send_msnp_client_packets($1)
3854 - corenet_receive_msnp_client_packets($1)
3855 +interface(`corenet_sendrecv_mpd_client_packets',`
3856 + corenet_send_mpd_client_packets($1)
3857 + corenet_receive_mpd_client_packets($1)
3858 ')
3859
3860 ########################################
3861 ## <summary>
3862 -## Do not audit attempts to send and receive msnp_client packets.
3863 +## Do not audit attempts to send and receive mpd_client packets.
3864 ## </summary>
3865 ## <param name="domain">
3866 ## <summary>
3867 @@ -51736,14 +52622,14 @@ interface(`corenet_sendrecv_msnp_client_packets',`
3868 ## </param>
3869 ## <infoflow type="none"/>
3870 #
3871 -interface(`corenet_dontaudit_sendrecv_msnp_client_packets',`
3872 - corenet_dontaudit_send_msnp_client_packets($1)
3873 - corenet_dontaudit_receive_msnp_client_packets($1)
3874 +interface(`corenet_dontaudit_sendrecv_mpd_client_packets',`
3875 + corenet_dontaudit_send_mpd_client_packets($1)
3876 + corenet_dontaudit_receive_mpd_client_packets($1)
3877 ')
3878
3879 ########################################
3880 ## <summary>
3881 -## Relabel packets to msnp_client the packet type.
3882 +## Relabel packets to mpd_client the packet type.
3883 ## </summary>
3884 ## <param name="domain">
3885 ## <summary>
3886 @@ -51751,18 +52637,18 @@ interface(`corenet_dontaudit_sendrecv_msnp_client_packets',`
3887 ## </summary>
3888 ## </param>
3889 #
3890 -interface(`corenet_relabelto_msnp_client_packets',`
3891 +interface(`corenet_relabelto_mpd_client_packets',`
3892 gen_require(`
3893 - type msnp_client_packet_t;
3894 + type mpd_client_packet_t;
3895 ')
3896
3897 - allow $1 msnp_client_packet_t:packet relabelto;
3898 + allow $1 mpd_client_packet_t:packet relabelto;
3899 ')
3900
3901
3902 ########################################
3903 ## <summary>
3904 -## Send msnp_server packets.
3905 +## Send mpd_server packets.
3906 ## </summary>
3907 ## <param name="domain">
3908 ## <summary>
3909 @@ -51771,17 +52657,17 @@ interface(`corenet_relabelto_msnp_client_packets',`
3910 ## </param>
3911 ## <infoflow type="write" weight="10"/>
3912 #
3913 -interface(`corenet_send_msnp_server_packets',`
3914 +interface(`corenet_send_mpd_server_packets',`
3915 gen_require(`
3916 - type msnp_server_packet_t;
3917 + type mpd_server_packet_t;
3918 ')
3919
3920 - allow $1 msnp_server_packet_t:packet send;
3921 + allow $1 mpd_server_packet_t:packet send;
3922 ')
3923
3924 ########################################
3925 ## <summary>
3926 -## Do not audit attempts to send msnp_server packets.
3927 +## Do not audit attempts to send mpd_server packets.
3928 ## </summary>
3929 ## <param name="domain">
3930 ## <summary>
3931 @@ -51790,17 +52676,17 @@ interface(`corenet_send_msnp_server_packets',`
3932 ## </param>
3933 ## <infoflow type="none"/>
3934 #
3935 -interface(`corenet_dontaudit_send_msnp_server_packets',`
3936 +interface(`corenet_dontaudit_send_mpd_server_packets',`
3937 gen_require(`
3938 - type msnp_server_packet_t;
3939 + type mpd_server_packet_t;
3940 ')
3941
3942 - dontaudit $1 msnp_server_packet_t:packet send;
3943 + dontaudit $1 mpd_server_packet_t:packet send;
3944 ')
3945
3946 ########################################
3947 ## <summary>
3948 -## Receive msnp_server packets.
3949 +## Receive mpd_server packets.
3950 ## </summary>
3951 ## <param name="domain">
3952 ## <summary>
3953 @@ -51809,17 +52695,17 @@ interface(`corenet_dontaudit_send_msnp_server_packets',`
3954 ## </param>
3955 ## <infoflow type="read" weight="10"/>
3956 #
3957 -interface(`corenet_receive_msnp_server_packets',`
3958 +interface(`corenet_receive_mpd_server_packets',`
3959 gen_require(`
3960 - type msnp_server_packet_t;
3961 + type mpd_server_packet_t;
3962 ')
3963
3964 - allow $1 msnp_server_packet_t:packet recv;
3965 + allow $1 mpd_server_packet_t:packet recv;
3966 ')
3967
3968 ########################################
3969 ## <summary>
3970 -## Do not audit attempts to receive msnp_server packets.
3971 +## Do not audit attempts to receive mpd_server packets.
3972 ## </summary>
3973 ## <param name="domain">
3974 ## <summary>
3975 @@ -51828,17 +52714,17 @@ interface(`corenet_receive_msnp_server_packets',`
3976 ## </param>
3977 ## <infoflow type="none"/>
3978 #
3979 -interface(`corenet_dontaudit_receive_msnp_server_packets',`
3980 +interface(`corenet_dontaudit_receive_mpd_server_packets',`
3981 gen_require(`
3982 - type msnp_server_packet_t;
3983 + type mpd_server_packet_t;
3984 ')
3985
3986 - dontaudit $1 msnp_server_packet_t:packet recv;
3987 + dontaudit $1 mpd_server_packet_t:packet recv;
3988 ')
3989
3990 ########################################
3991 ## <summary>
3992 -## Send and receive msnp_server packets.
3993 +## Send and receive mpd_server packets.
3994 ## </summary>
3995 ## <param name="domain">
3996 ## <summary>
3997 @@ -51847,14 +52733,14 @@ interface(`corenet_dontaudit_receive_msnp_server_packets',`
3998 ## </param>
3999 ## <infoflow type="both" weight="10"/>
4000 #
4001 -interface(`corenet_sendrecv_msnp_server_packets',`
4002 - corenet_send_msnp_server_packets($1)
4003 - corenet_receive_msnp_server_packets($1)
4004 +interface(`corenet_sendrecv_mpd_server_packets',`
4005 + corenet_send_mpd_server_packets($1)
4006 + corenet_receive_mpd_server_packets($1)
4007 ')
4008
4009 ########################################
4010 ## <summary>
4011 -## Do not audit attempts to send and receive msnp_server packets.
4012 +## Do not audit attempts to send and receive mpd_server packets.
4013 ## </summary>
4014 ## <param name="domain">
4015 ## <summary>
4016 @@ -51863,14 +52749,14 @@ interface(`corenet_sendrecv_msnp_server_packets',`
4017 ## </param>
4018 ## <infoflow type="none"/>
4019 #
4020 -interface(`corenet_dontaudit_sendrecv_msnp_server_packets',`
4021 - corenet_dontaudit_send_msnp_server_packets($1)
4022 - corenet_dontaudit_receive_msnp_server_packets($1)
4023 +interface(`corenet_dontaudit_sendrecv_mpd_server_packets',`
4024 + corenet_dontaudit_send_mpd_server_packets($1)
4025 + corenet_dontaudit_receive_mpd_server_packets($1)
4026 ')
4027
4028 ########################################
4029 ## <summary>
4030 -## Relabel packets to msnp_server the packet type.
4031 +## Relabel packets to mpd_server the packet type.
4032 ## </summary>
4033 ## <param name="domain">
4034 ## <summary>
4035 @@ -51878,12 +52764,12 @@ interface(`corenet_dontaudit_sendrecv_msnp_server_packets',`
4036 ## </summary>
4037 ## </param>
4038 #
4039 -interface(`corenet_relabelto_msnp_server_packets',`
4040 +interface(`corenet_relabelto_mpd_server_packets',`
4041 gen_require(`
4042 - type msnp_server_packet_t;
4043 + type mpd_server_packet_t;
4044 ')
4045
4046 - allow $1 msnp_server_packet_t:packet relabelto;
4047 + allow $1 mpd_server_packet_t:packet relabelto;
4048 ')
4049
4050
4051 @@ -51891,7 +52777,7 @@ interface(`corenet_relabelto_msnp_server_packets',`
4052
4053 ########################################
4054 ## <summary>
4055 -## Send and receive TCP traffic on the mssql port.
4056 +## Send and receive TCP traffic on the msgsrvr port.
4057 ## </summary>
4058 ## <param name="domain">
4059 ## <summary>
4060 @@ -51900,17 +52786,17 @@ interface(`corenet_relabelto_msnp_server_packets',`
4061 ## </param>
4062 ## <infoflow type="both" weight="10"/>
4063 #
4064 -interface(`corenet_tcp_sendrecv_mssql_port',`
4065 +interface(`corenet_tcp_sendrecv_msgsrvr_port',`
4066 gen_require(`
4067 - type mssql_port_t;
4068 + type msgsrvr_port_t;
4069 ')
4070
4071 - allow $1 mssql_port_t:tcp_socket { send_msg recv_msg };
4072 + allow $1 msgsrvr_port_t:tcp_socket { send_msg recv_msg };
4073 ')
4074
4075 ########################################
4076 ## <summary>
4077 -## Send UDP traffic on the mssql port.
4078 +## Send UDP traffic on the msgsrvr port.
4079 ## </summary>
4080 ## <param name="domain">
4081 ## <summary>
4082 @@ -51919,17 +52805,17 @@ interface(`corenet_tcp_sendrecv_mssql_port',`
4083 ## </param>
4084 ## <infoflow type="write" weight="10"/>
4085 #
4086 -interface(`corenet_udp_send_mssql_port',`
4087 +interface(`corenet_udp_send_msgsrvr_port',`
4088 gen_require(`
4089 - type mssql_port_t;
4090 + type msgsrvr_port_t;
4091 ')
4092
4093 - allow $1 mssql_port_t:udp_socket send_msg;
4094 + allow $1 msgsrvr_port_t:udp_socket send_msg;
4095 ')
4096
4097 ########################################
4098 ## <summary>
4099 -## Do not audit attempts to send UDP traffic on the mssql port.
4100 +## Do not audit attempts to send UDP traffic on the msgsrvr port.
4101 ## </summary>
4102 ## <param name="domain">
4103 ## <summary>
4104 @@ -51938,17 +52824,17 @@ interface(`corenet_udp_send_mssql_port',`
4105 ## </param>
4106 ## <infoflow type="none"/>
4107 #
4108 -interface(`corenet_dontaudit_udp_send_mssql_port',`
4109 +interface(`corenet_dontaudit_udp_send_msgsrvr_port',`
4110 gen_require(`
4111 - type mssql_port_t;
4112 + type msgsrvr_port_t;
4113 ')
4114
4115 - dontaudit $1 mssql_port_t:udp_socket send_msg;
4116 + dontaudit $1 msgsrvr_port_t:udp_socket send_msg;
4117 ')
4118
4119 ########################################
4120 ## <summary>
4121 -## Receive UDP traffic on the mssql port.
4122 +## Receive UDP traffic on the msgsrvr port.
4123 ## </summary>
4124 ## <param name="domain">
4125 ## <summary>
4126 @@ -51957,17 +52843,17 @@ interface(`corenet_dontaudit_udp_send_mssql_port',`
4127 ## </param>
4128 ## <infoflow type="read" weight="10"/>
4129 #
4130 -interface(`corenet_udp_receive_mssql_port',`
4131 +interface(`corenet_udp_receive_msgsrvr_port',`
4132 gen_require(`
4133 - type mssql_port_t;
4134 + type msgsrvr_port_t;
4135 ')
4136
4137 - allow $1 mssql_port_t:udp_socket recv_msg;
4138 + allow $1 msgsrvr_port_t:udp_socket recv_msg;
4139 ')
4140
4141 ########################################
4142 ## <summary>
4143 -## Do not audit attempts to receive UDP traffic on the mssql port.
4144 +## Do not audit attempts to receive UDP traffic on the msgsrvr port.
4145 ## </summary>
4146 ## <param name="domain">
4147 ## <summary>
4148 @@ -51976,17 +52862,17 @@ interface(`corenet_udp_receive_mssql_port',`
4149 ## </param>
4150 ## <infoflow type="none"/>
4151 #
4152 -interface(`corenet_dontaudit_udp_receive_mssql_port',`
4153 +interface(`corenet_dontaudit_udp_receive_msgsrvr_port',`
4154 gen_require(`
4155 - type mssql_port_t;
4156 + type msgsrvr_port_t;
4157 ')
4158
4159 - dontaudit $1 mssql_port_t:udp_socket recv_msg;
4160 + dontaudit $1 msgsrvr_port_t:udp_socket recv_msg;
4161 ')
4162
4163 ########################################
4164 ## <summary>
4165 -## Send and receive UDP traffic on the mssql port.
4166 +## Send and receive UDP traffic on the msgsrvr port.
4167 ## </summary>
4168 ## <param name="domain">
4169 ## <summary>
4170 @@ -51995,15 +52881,15 @@ interface(`corenet_dontaudit_udp_receive_mssql_port',`
4171 ## </param>
4172 ## <infoflow type="both" weight="10"/>
4173 #
4174 -interface(`corenet_udp_sendrecv_mssql_port',`
4175 - corenet_udp_send_mssql_port($1)
4176 - corenet_udp_receive_mssql_port($1)
4177 +interface(`corenet_udp_sendrecv_msgsrvr_port',`
4178 + corenet_udp_send_msgsrvr_port($1)
4179 + corenet_udp_receive_msgsrvr_port($1)
4180 ')
4181
4182 ########################################
4183 ## <summary>
4184 ## Do not audit attempts to send and receive
4185 -## UDP traffic on the mssql port.
4186 +## UDP traffic on the msgsrvr port.
4187 ## </summary>
4188 ## <param name="domain">
4189 ## <summary>
4190 @@ -52012,14 +52898,14 @@ interface(`corenet_udp_sendrecv_mssql_port',`
4191 ## </param>
4192 ## <infoflow type="none"/>
4193 #
4194 -interface(`corenet_dontaudit_udp_sendrecv_mssql_port',`
4195 - corenet_dontaudit_udp_send_mssql_port($1)
4196 - corenet_dontaudit_udp_receive_mssql_port($1)
4197 +interface(`corenet_dontaudit_udp_sendrecv_msgsrvr_port',`
4198 + corenet_dontaudit_udp_send_msgsrvr_port($1)
4199 + corenet_dontaudit_udp_receive_msgsrvr_port($1)
4200 ')
4201
4202 ########################################
4203 ## <summary>
4204 -## Bind TCP sockets to the mssql port.
4205 +## Bind TCP sockets to the msgsrvr port.
4206 ## </summary>
4207 ## <param name="domain">
4208 ## <summary>
4209 @@ -52028,18 +52914,18 @@ interface(`corenet_dontaudit_udp_sendrecv_mssql_port',`
4210 ## </param>
4211 ## <infoflow type="none"/>
4212 #
4213 -interface(`corenet_tcp_bind_mssql_port',`
4214 +interface(`corenet_tcp_bind_msgsrvr_port',`
4215 gen_require(`
4216 - type mssql_port_t;
4217 + type msgsrvr_port_t;
4218 ')
4219
4220 - allow $1 mssql_port_t:tcp_socket name_bind;
4221 - allow $1 self:capability net_bind_service;
4222 + allow $1 msgsrvr_port_t:tcp_socket name_bind;
4223 +
4224 ')
4225
4226 ########################################
4227 ## <summary>
4228 -## Bind UDP sockets to the mssql port.
4229 +## Bind UDP sockets to the msgsrvr port.
4230 ## </summary>
4231 ## <param name="domain">
4232 ## <summary>
4233 @@ -52048,18 +52934,18 @@ interface(`corenet_tcp_bind_mssql_port',`
4234 ## </param>
4235 ## <infoflow type="none"/>
4236 #
4237 -interface(`corenet_udp_bind_mssql_port',`
4238 +interface(`corenet_udp_bind_msgsrvr_port',`
4239 gen_require(`
4240 - type mssql_port_t;
4241 + type msgsrvr_port_t;
4242 ')
4243
4244 - allow $1 mssql_port_t:udp_socket name_bind;
4245 - allow $1 self:capability net_bind_service;
4246 + allow $1 msgsrvr_port_t:udp_socket name_bind;
4247 +
4248 ')
4249
4250 ########################################
4251 ## <summary>
4252 -## Make a TCP connection to the mssql port.
4253 +## Make a TCP connection to the msgsrvr port.
4254 ## </summary>
4255 ## <param name="domain">
4256 ## <summary>
4257 @@ -52067,18 +52953,18 @@ interface(`corenet_udp_bind_mssql_port',`
4258 ## </summary>
4259 ## </param>
4260 #
4261 -interface(`corenet_tcp_connect_mssql_port',`
4262 +interface(`corenet_tcp_connect_msgsrvr_port',`
4263 gen_require(`
4264 - type mssql_port_t;
4265 + type msgsrvr_port_t;
4266 ')
4267
4268 - allow $1 mssql_port_t:tcp_socket name_connect;
4269 + allow $1 msgsrvr_port_t:tcp_socket name_connect;
4270 ')
4271
4272
4273 ########################################
4274 ## <summary>
4275 -## Send mssql_client packets.
4276 +## Send msgsrvr_client packets.
4277 ## </summary>
4278 ## <param name="domain">
4279 ## <summary>
4280 @@ -52087,17 +52973,17 @@ interface(`corenet_tcp_connect_mssql_port',`
4281 ## </param>
4282 ## <infoflow type="write" weight="10"/>
4283 #
4284 -interface(`corenet_send_mssql_client_packets',`
4285 +interface(`corenet_send_msgsrvr_client_packets',`
4286 gen_require(`
4287 - type mssql_client_packet_t;
4288 + type msgsrvr_client_packet_t;
4289 ')
4290
4291 - allow $1 mssql_client_packet_t:packet send;
4292 + allow $1 msgsrvr_client_packet_t:packet send;
4293 ')
4294
4295 ########################################
4296 ## <summary>
4297 -## Do not audit attempts to send mssql_client packets.
4298 +## Do not audit attempts to send msgsrvr_client packets.
4299 ## </summary>
4300 ## <param name="domain">
4301 ## <summary>
4302 @@ -52106,17 +52992,17 @@ interface(`corenet_send_mssql_client_packets',`
4303 ## </param>
4304 ## <infoflow type="none"/>
4305 #
4306 -interface(`corenet_dontaudit_send_mssql_client_packets',`
4307 +interface(`corenet_dontaudit_send_msgsrvr_client_packets',`
4308 gen_require(`
4309 - type mssql_client_packet_t;
4310 + type msgsrvr_client_packet_t;
4311 ')
4312
4313 - dontaudit $1 mssql_client_packet_t:packet send;
4314 + dontaudit $1 msgsrvr_client_packet_t:packet send;
4315 ')
4316
4317 ########################################
4318 ## <summary>
4319 -## Receive mssql_client packets.
4320 +## Receive msgsrvr_client packets.
4321 ## </summary>
4322 ## <param name="domain">
4323 ## <summary>
4324 @@ -52125,17 +53011,17 @@ interface(`corenet_dontaudit_send_mssql_client_packets',`
4325 ## </param>
4326 ## <infoflow type="read" weight="10"/>
4327 #
4328 -interface(`corenet_receive_mssql_client_packets',`
4329 +interface(`corenet_receive_msgsrvr_client_packets',`
4330 gen_require(`
4331 - type mssql_client_packet_t;
4332 + type msgsrvr_client_packet_t;
4333 ')
4334
4335 - allow $1 mssql_client_packet_t:packet recv;
4336 + allow $1 msgsrvr_client_packet_t:packet recv;
4337 ')
4338
4339 ########################################
4340 ## <summary>
4341 -## Do not audit attempts to receive mssql_client packets.
4342 +## Do not audit attempts to receive msgsrvr_client packets.
4343 ## </summary>
4344 ## <param name="domain">
4345 ## <summary>
4346 @@ -52144,17 +53030,17 @@ interface(`corenet_receive_mssql_client_packets',`
4347 ## </param>
4348 ## <infoflow type="none"/>
4349 #
4350 -interface(`corenet_dontaudit_receive_mssql_client_packets',`
4351 +interface(`corenet_dontaudit_receive_msgsrvr_client_packets',`
4352 gen_require(`
4353 - type mssql_client_packet_t;
4354 + type msgsrvr_client_packet_t;
4355 ')
4356
4357 - dontaudit $1 mssql_client_packet_t:packet recv;
4358 + dontaudit $1 msgsrvr_client_packet_t:packet recv;
4359 ')
4360
4361 ########################################
4362 ## <summary>
4363 -## Send and receive mssql_client packets.
4364 +## Send and receive msgsrvr_client packets.
4365 ## </summary>
4366 ## <param name="domain">
4367 ## <summary>
4368 @@ -52163,14 +53049,14 @@ interface(`corenet_dontaudit_receive_mssql_client_packets',`
4369 ## </param>
4370 ## <infoflow type="both" weight="10"/>
4371 #
4372 -interface(`corenet_sendrecv_mssql_client_packets',`
4373 - corenet_send_mssql_client_packets($1)
4374 - corenet_receive_mssql_client_packets($1)
4375 +interface(`corenet_sendrecv_msgsrvr_client_packets',`
4376 + corenet_send_msgsrvr_client_packets($1)
4377 + corenet_receive_msgsrvr_client_packets($1)
4378 ')
4379
4380 ########################################
4381 ## <summary>
4382 -## Do not audit attempts to send and receive mssql_client packets.
4383 +## Do not audit attempts to send and receive msgsrvr_client packets.
4384 ## </summary>
4385 ## <param name="domain">
4386 ## <summary>
4387 @@ -52179,14 +53065,14 @@ interface(`corenet_sendrecv_mssql_client_packets',`
4388 ## </param>
4389 ## <infoflow type="none"/>
4390 #
4391 -interface(`corenet_dontaudit_sendrecv_mssql_client_packets',`
4392 - corenet_dontaudit_send_mssql_client_packets($1)
4393 - corenet_dontaudit_receive_mssql_client_packets($1)
4394 +interface(`corenet_dontaudit_sendrecv_msgsrvr_client_packets',`
4395 + corenet_dontaudit_send_msgsrvr_client_packets($1)
4396 + corenet_dontaudit_receive_msgsrvr_client_packets($1)
4397 ')
4398
4399 ########################################
4400 ## <summary>
4401 -## Relabel packets to mssql_client the packet type.
4402 +## Relabel packets to msgsrvr_client the packet type.
4403 ## </summary>
4404 ## <param name="domain">
4405 ## <summary>
4406 @@ -52194,18 +53080,18 @@ interface(`corenet_dontaudit_sendrecv_mssql_client_packets',`
4407 ## </summary>
4408 ## </param>
4409 #
4410 -interface(`corenet_relabelto_mssql_client_packets',`
4411 +interface(`corenet_relabelto_msgsrvr_client_packets',`
4412 gen_require(`
4413 - type mssql_client_packet_t;
4414 + type msgsrvr_client_packet_t;
4415 ')
4416
4417 - allow $1 mssql_client_packet_t:packet relabelto;
4418 + allow $1 msgsrvr_client_packet_t:packet relabelto;
4419 ')
4420
4421
4422 ########################################
4423 ## <summary>
4424 -## Send mssql_server packets.
4425 +## Send msgsrvr_server packets.
4426 ## </summary>
4427 ## <param name="domain">
4428 ## <summary>
4429 @@ -52214,17 +53100,17 @@ interface(`corenet_relabelto_mssql_client_packets',`
4430 ## </param>
4431 ## <infoflow type="write" weight="10"/>
4432 #
4433 -interface(`corenet_send_mssql_server_packets',`
4434 +interface(`corenet_send_msgsrvr_server_packets',`
4435 gen_require(`
4436 - type mssql_server_packet_t;
4437 + type msgsrvr_server_packet_t;
4438 ')
4439
4440 - allow $1 mssql_server_packet_t:packet send;
4441 + allow $1 msgsrvr_server_packet_t:packet send;
4442 ')
4443
4444 ########################################
4445 ## <summary>
4446 -## Do not audit attempts to send mssql_server packets.
4447 +## Do not audit attempts to send msgsrvr_server packets.
4448 ## </summary>
4449 ## <param name="domain">
4450 ## <summary>
4451 @@ -52233,17 +53119,17 @@ interface(`corenet_send_mssql_server_packets',`
4452 ## </param>
4453 ## <infoflow type="none"/>
4454 #
4455 -interface(`corenet_dontaudit_send_mssql_server_packets',`
4456 +interface(`corenet_dontaudit_send_msgsrvr_server_packets',`
4457 gen_require(`
4458 - type mssql_server_packet_t;
4459 + type msgsrvr_server_packet_t;
4460 ')
4461
4462 - dontaudit $1 mssql_server_packet_t:packet send;
4463 + dontaudit $1 msgsrvr_server_packet_t:packet send;
4464 ')
4465
4466 ########################################
4467 ## <summary>
4468 -## Receive mssql_server packets.
4469 +## Receive msgsrvr_server packets.
4470 ## </summary>
4471 ## <param name="domain">
4472 ## <summary>
4473 @@ -52252,17 +53138,17 @@ interface(`corenet_dontaudit_send_mssql_server_packets',`
4474 ## </param>
4475 ## <infoflow type="read" weight="10"/>
4476 #
4477 -interface(`corenet_receive_mssql_server_packets',`
4478 +interface(`corenet_receive_msgsrvr_server_packets',`
4479 gen_require(`
4480 - type mssql_server_packet_t;
4481 + type msgsrvr_server_packet_t;
4482 ')
4483
4484 - allow $1 mssql_server_packet_t:packet recv;
4485 + allow $1 msgsrvr_server_packet_t:packet recv;
4486 ')
4487
4488 ########################################
4489 ## <summary>
4490 -## Do not audit attempts to receive mssql_server packets.
4491 +## Do not audit attempts to receive msgsrvr_server packets.
4492 ## </summary>
4493 ## <param name="domain">
4494 ## <summary>
4495 @@ -52271,17 +53157,17 @@ interface(`corenet_receive_mssql_server_packets',`
4496 ## </param>
4497 ## <infoflow type="none"/>
4498 #
4499 -interface(`corenet_dontaudit_receive_mssql_server_packets',`
4500 +interface(`corenet_dontaudit_receive_msgsrvr_server_packets',`
4501 gen_require(`
4502 - type mssql_server_packet_t;
4503 + type msgsrvr_server_packet_t;
4504 ')
4505
4506 - dontaudit $1 mssql_server_packet_t:packet recv;
4507 + dontaudit $1 msgsrvr_server_packet_t:packet recv;
4508 ')
4509
4510 ########################################
4511 ## <summary>
4512 -## Send and receive mssql_server packets.
4513 +## Send and receive msgsrvr_server packets.
4514 ## </summary>
4515 ## <param name="domain">
4516 ## <summary>
4517 @@ -52290,14 +53176,14 @@ interface(`corenet_dontaudit_receive_mssql_server_packets',`
4518 ## </param>
4519 ## <infoflow type="both" weight="10"/>
4520 #
4521 -interface(`corenet_sendrecv_mssql_server_packets',`
4522 - corenet_send_mssql_server_packets($1)
4523 - corenet_receive_mssql_server_packets($1)
4524 +interface(`corenet_sendrecv_msgsrvr_server_packets',`
4525 + corenet_send_msgsrvr_server_packets($1)
4526 + corenet_receive_msgsrvr_server_packets($1)
4527 ')
4528
4529 ########################################
4530 ## <summary>
4531 -## Do not audit attempts to send and receive mssql_server packets.
4532 +## Do not audit attempts to send and receive msgsrvr_server packets.
4533 ## </summary>
4534 ## <param name="domain">
4535 ## <summary>
4536 @@ -52306,14 +53192,14 @@ interface(`corenet_sendrecv_mssql_server_packets',`
4537 ## </param>
4538 ## <infoflow type="none"/>
4539 #
4540 -interface(`corenet_dontaudit_sendrecv_mssql_server_packets',`
4541 - corenet_dontaudit_send_mssql_server_packets($1)
4542 - corenet_dontaudit_receive_mssql_server_packets($1)
4543 +interface(`corenet_dontaudit_sendrecv_msgsrvr_server_packets',`
4544 + corenet_dontaudit_send_msgsrvr_server_packets($1)
4545 + corenet_dontaudit_receive_msgsrvr_server_packets($1)
4546 ')
4547
4548 ########################################
4549 ## <summary>
4550 -## Relabel packets to mssql_server the packet type.
4551 +## Relabel packets to msgsrvr_server the packet type.
4552 ## </summary>
4553 ## <param name="domain">
4554 ## <summary>
4555 @@ -52321,12 +53207,12 @@ interface(`corenet_dontaudit_sendrecv_mssql_server_packets',`
4556 ## </summary>
4557 ## </param>
4558 #
4559 -interface(`corenet_relabelto_mssql_server_packets',`
4560 +interface(`corenet_relabelto_msgsrvr_server_packets',`
4561 gen_require(`
4562 - type mssql_server_packet_t;
4563 + type msgsrvr_server_packet_t;
4564 ')
4565
4566 - allow $1 mssql_server_packet_t:packet relabelto;
4567 + allow $1 msgsrvr_server_packet_t:packet relabelto;
4568 ')
4569
4570
4571 @@ -52334,7 +53220,7 @@ interface(`corenet_relabelto_mssql_server_packets',`
4572
4573 ########################################
4574 ## <summary>
4575 -## Send and receive TCP traffic on the ms_streaming port.
4576 +## Send and receive TCP traffic on the msnp port.
4577 ## </summary>
4578 ## <param name="domain">
4579 ## <summary>
4580 @@ -52343,17 +53229,17 @@ interface(`corenet_relabelto_mssql_server_packets',`
4581 ## </param>
4582 ## <infoflow type="both" weight="10"/>
4583 #
4584 -interface(`corenet_tcp_sendrecv_ms_streaming_port',`
4585 +interface(`corenet_tcp_sendrecv_msnp_port',`
4586 gen_require(`
4587 - type ms_streaming_port_t;
4588 + type msnp_port_t;
4589 ')
4590
4591 - allow $1 ms_streaming_port_t:tcp_socket { send_msg recv_msg };
4592 + allow $1 msnp_port_t:tcp_socket { send_msg recv_msg };
4593 ')
4594
4595 ########################################
4596 ## <summary>
4597 -## Send UDP traffic on the ms_streaming port.
4598 +## Send UDP traffic on the msnp port.
4599 ## </summary>
4600 ## <param name="domain">
4601 ## <summary>
4602 @@ -52362,17 +53248,17 @@ interface(`corenet_tcp_sendrecv_ms_streaming_port',`
4603 ## </param>
4604 ## <infoflow type="write" weight="10"/>
4605 #
4606 -interface(`corenet_udp_send_ms_streaming_port',`
4607 +interface(`corenet_udp_send_msnp_port',`
4608 gen_require(`
4609 - type ms_streaming_port_t;
4610 + type msnp_port_t;
4611 ')
4612
4613 - allow $1 ms_streaming_port_t:udp_socket send_msg;
4614 + allow $1 msnp_port_t:udp_socket send_msg;
4615 ')
4616
4617 ########################################
4618 ## <summary>
4619 -## Do not audit attempts to send UDP traffic on the ms_streaming port.
4620 +## Do not audit attempts to send UDP traffic on the msnp port.
4621 ## </summary>
4622 ## <param name="domain">
4623 ## <summary>
4624 @@ -52381,17 +53267,17 @@ interface(`corenet_udp_send_ms_streaming_port',`
4625 ## </param>
4626 ## <infoflow type="none"/>
4627 #
4628 -interface(`corenet_dontaudit_udp_send_ms_streaming_port',`
4629 +interface(`corenet_dontaudit_udp_send_msnp_port',`
4630 gen_require(`
4631 - type ms_streaming_port_t;
4632 + type msnp_port_t;
4633 ')
4634
4635 - dontaudit $1 ms_streaming_port_t:udp_socket send_msg;
4636 + dontaudit $1 msnp_port_t:udp_socket send_msg;
4637 ')
4638
4639 ########################################
4640 ## <summary>
4641 -## Receive UDP traffic on the ms_streaming port.
4642 +## Receive UDP traffic on the msnp port.
4643 ## </summary>
4644 ## <param name="domain">
4645 ## <summary>
4646 @@ -52400,17 +53286,17 @@ interface(`corenet_dontaudit_udp_send_ms_streaming_port',`
4647 ## </param>
4648 ## <infoflow type="read" weight="10"/>
4649 #
4650 -interface(`corenet_udp_receive_ms_streaming_port',`
4651 +interface(`corenet_udp_receive_msnp_port',`
4652 gen_require(`
4653 - type ms_streaming_port_t;
4654 + type msnp_port_t;
4655 ')
4656
4657 - allow $1 ms_streaming_port_t:udp_socket recv_msg;
4658 + allow $1 msnp_port_t:udp_socket recv_msg;
4659 ')
4660
4661 ########################################
4662 ## <summary>
4663 -## Do not audit attempts to receive UDP traffic on the ms_streaming port.
4664 +## Do not audit attempts to receive UDP traffic on the msnp port.
4665 ## </summary>
4666 ## <param name="domain">
4667 ## <summary>
4668 @@ -52419,17 +53305,17 @@ interface(`corenet_udp_receive_ms_streaming_port',`
4669 ## </param>
4670 ## <infoflow type="none"/>
4671 #
4672 -interface(`corenet_dontaudit_udp_receive_ms_streaming_port',`
4673 +interface(`corenet_dontaudit_udp_receive_msnp_port',`
4674 gen_require(`
4675 - type ms_streaming_port_t;
4676 + type msnp_port_t;
4677 ')
4678
4679 - dontaudit $1 ms_streaming_port_t:udp_socket recv_msg;
4680 + dontaudit $1 msnp_port_t:udp_socket recv_msg;
4681 ')
4682
4683 ########################################
4684 ## <summary>
4685 -## Send and receive UDP traffic on the ms_streaming port.
4686 +## Send and receive UDP traffic on the msnp port.
4687 ## </summary>
4688 ## <param name="domain">
4689 ## <summary>
4690 @@ -52438,15 +53324,15 @@ interface(`corenet_dontaudit_udp_receive_ms_streaming_port',`
4691 ## </param>
4692 ## <infoflow type="both" weight="10"/>
4693 #
4694 -interface(`corenet_udp_sendrecv_ms_streaming_port',`
4695 - corenet_udp_send_ms_streaming_port($1)
4696 - corenet_udp_receive_ms_streaming_port($1)
4697 +interface(`corenet_udp_sendrecv_msnp_port',`
4698 + corenet_udp_send_msnp_port($1)
4699 + corenet_udp_receive_msnp_port($1)
4700 ')
4701
4702 ########################################
4703 ## <summary>
4704 ## Do not audit attempts to send and receive
4705 -## UDP traffic on the ms_streaming port.
4706 +## UDP traffic on the msnp port.
4707 ## </summary>
4708 ## <param name="domain">
4709 ## <summary>
4710 @@ -52455,14 +53341,14 @@ interface(`corenet_udp_sendrecv_ms_streaming_port',`
4711 ## </param>
4712 ## <infoflow type="none"/>
4713 #
4714 -interface(`corenet_dontaudit_udp_sendrecv_ms_streaming_port',`
4715 - corenet_dontaudit_udp_send_ms_streaming_port($1)
4716 - corenet_dontaudit_udp_receive_ms_streaming_port($1)
4717 +interface(`corenet_dontaudit_udp_sendrecv_msnp_port',`
4718 + corenet_dontaudit_udp_send_msnp_port($1)
4719 + corenet_dontaudit_udp_receive_msnp_port($1)
4720 ')
4721
4722 ########################################
4723 ## <summary>
4724 -## Bind TCP sockets to the ms_streaming port.
4725 +## Bind TCP sockets to the msnp port.
4726 ## </summary>
4727 ## <param name="domain">
4728 ## <summary>
4729 @@ -52471,18 +53357,18 @@ interface(`corenet_dontaudit_udp_sendrecv_ms_streaming_port',`
4730 ## </param>
4731 ## <infoflow type="none"/>
4732 #
4733 -interface(`corenet_tcp_bind_ms_streaming_port',`
4734 +interface(`corenet_tcp_bind_msnp_port',`
4735 gen_require(`
4736 - type ms_streaming_port_t;
4737 + type msnp_port_t;
4738 ')
4739
4740 - allow $1 ms_streaming_port_t:tcp_socket name_bind;
4741 + allow $1 msnp_port_t:tcp_socket name_bind;
4742
4743 ')
4744
4745 ########################################
4746 ## <summary>
4747 -## Bind UDP sockets to the ms_streaming port.
4748 +## Bind UDP sockets to the msnp port.
4749 ## </summary>
4750 ## <param name="domain">
4751 ## <summary>
4752 @@ -52491,18 +53377,18 @@ interface(`corenet_tcp_bind_ms_streaming_port',`
4753 ## </param>
4754 ## <infoflow type="none"/>
4755 #
4756 -interface(`corenet_udp_bind_ms_streaming_port',`
4757 +interface(`corenet_udp_bind_msnp_port',`
4758 gen_require(`
4759 - type ms_streaming_port_t;
4760 + type msnp_port_t;
4761 ')
4762
4763 - allow $1 ms_streaming_port_t:udp_socket name_bind;
4764 + allow $1 msnp_port_t:udp_socket name_bind;
4765
4766 ')
4767
4768 ########################################
4769 ## <summary>
4770 -## Make a TCP connection to the ms_streaming port.
4771 +## Make a TCP connection to the msnp port.
4772 ## </summary>
4773 ## <param name="domain">
4774 ## <summary>
4775 @@ -52510,18 +53396,18 @@ interface(`corenet_udp_bind_ms_streaming_port',`
4776 ## </summary>
4777 ## </param>
4778 #
4779 -interface(`corenet_tcp_connect_ms_streaming_port',`
4780 +interface(`corenet_tcp_connect_msnp_port',`
4781 gen_require(`
4782 - type ms_streaming_port_t;
4783 + type msnp_port_t;
4784 ')
4785
4786 - allow $1 ms_streaming_port_t:tcp_socket name_connect;
4787 + allow $1 msnp_port_t:tcp_socket name_connect;
4788 ')
4789
4790
4791 ########################################
4792 ## <summary>
4793 -## Send ms_streaming_client packets.
4794 +## Send msnp_client packets.
4795 ## </summary>
4796 ## <param name="domain">
4797 ## <summary>
4798 @@ -52530,17 +53416,17 @@ interface(`corenet_tcp_connect_ms_streaming_port',`
4799 ## </param>
4800 ## <infoflow type="write" weight="10"/>
4801 #
4802 -interface(`corenet_send_ms_streaming_client_packets',`
4803 +interface(`corenet_send_msnp_client_packets',`
4804 gen_require(`
4805 - type ms_streaming_client_packet_t;
4806 + type msnp_client_packet_t;
4807 ')
4808
4809 - allow $1 ms_streaming_client_packet_t:packet send;
4810 + allow $1 msnp_client_packet_t:packet send;
4811 ')
4812
4813 ########################################
4814 ## <summary>
4815 -## Do not audit attempts to send ms_streaming_client packets.
4816 +## Do not audit attempts to send msnp_client packets.
4817 ## </summary>
4818 ## <param name="domain">
4819 ## <summary>
4820 @@ -52549,17 +53435,17 @@ interface(`corenet_send_ms_streaming_client_packets',`
4821 ## </param>
4822 ## <infoflow type="none"/>
4823 #
4824 -interface(`corenet_dontaudit_send_ms_streaming_client_packets',`
4825 +interface(`corenet_dontaudit_send_msnp_client_packets',`
4826 gen_require(`
4827 - type ms_streaming_client_packet_t;
4828 + type msnp_client_packet_t;
4829 ')
4830
4831 - dontaudit $1 ms_streaming_client_packet_t:packet send;
4832 + dontaudit $1 msnp_client_packet_t:packet send;
4833 ')
4834
4835 ########################################
4836 ## <summary>
4837 -## Receive ms_streaming_client packets.
4838 +## Receive msnp_client packets.
4839 ## </summary>
4840 ## <param name="domain">
4841 ## <summary>
4842 @@ -52568,17 +53454,17 @@ interface(`corenet_dontaudit_send_ms_streaming_client_packets',`
4843 ## </param>
4844 ## <infoflow type="read" weight="10"/>
4845 #
4846 -interface(`corenet_receive_ms_streaming_client_packets',`
4847 +interface(`corenet_receive_msnp_client_packets',`
4848 gen_require(`
4849 - type ms_streaming_client_packet_t;
4850 + type msnp_client_packet_t;
4851 ')
4852
4853 - allow $1 ms_streaming_client_packet_t:packet recv;
4854 + allow $1 msnp_client_packet_t:packet recv;
4855 ')
4856
4857 ########################################
4858 ## <summary>
4859 -## Do not audit attempts to receive ms_streaming_client packets.
4860 +## Do not audit attempts to receive msnp_client packets.
4861 ## </summary>
4862 ## <param name="domain">
4863 ## <summary>
4864 @@ -52587,17 +53473,17 @@ interface(`corenet_receive_ms_streaming_client_packets',`
4865 ## </param>
4866 ## <infoflow type="none"/>
4867 #
4868 -interface(`corenet_dontaudit_receive_ms_streaming_client_packets',`
4869 +interface(`corenet_dontaudit_receive_msnp_client_packets',`
4870 gen_require(`
4871 - type ms_streaming_client_packet_t;
4872 + type msnp_client_packet_t;
4873 ')
4874
4875 - dontaudit $1 ms_streaming_client_packet_t:packet recv;
4876 + dontaudit $1 msnp_client_packet_t:packet recv;
4877 ')
4878
4879 ########################################
4880 ## <summary>
4881 -## Send and receive ms_streaming_client packets.
4882 +## Send and receive msnp_client packets.
4883 ## </summary>
4884 ## <param name="domain">
4885 ## <summary>
4886 @@ -52606,14 +53492,14 @@ interface(`corenet_dontaudit_receive_ms_streaming_client_packets',`
4887 ## </param>
4888 ## <infoflow type="both" weight="10"/>
4889 #
4890 -interface(`corenet_sendrecv_ms_streaming_client_packets',`
4891 - corenet_send_ms_streaming_client_packets($1)
4892 - corenet_receive_ms_streaming_client_packets($1)
4893 +interface(`corenet_sendrecv_msnp_client_packets',`
4894 + corenet_send_msnp_client_packets($1)
4895 + corenet_receive_msnp_client_packets($1)
4896 ')
4897
4898 ########################################
4899 ## <summary>
4900 -## Do not audit attempts to send and receive ms_streaming_client packets.
4901 +## Do not audit attempts to send and receive msnp_client packets.
4902 ## </summary>
4903 ## <param name="domain">
4904 ## <summary>
4905 @@ -52622,14 +53508,14 @@ interface(`corenet_sendrecv_ms_streaming_client_packets',`
4906 ## </param>
4907 ## <infoflow type="none"/>
4908 #
4909 -interface(`corenet_dontaudit_sendrecv_ms_streaming_client_packets',`
4910 - corenet_dontaudit_send_ms_streaming_client_packets($1)
4911 - corenet_dontaudit_receive_ms_streaming_client_packets($1)
4912 +interface(`corenet_dontaudit_sendrecv_msnp_client_packets',`
4913 + corenet_dontaudit_send_msnp_client_packets($1)
4914 + corenet_dontaudit_receive_msnp_client_packets($1)
4915 ')
4916
4917 ########################################
4918 ## <summary>
4919 -## Relabel packets to ms_streaming_client the packet type.
4920 +## Relabel packets to msnp_client the packet type.
4921 ## </summary>
4922 ## <param name="domain">
4923 ## <summary>
4924 @@ -52637,18 +53523,18 @@ interface(`corenet_dontaudit_sendrecv_ms_streaming_client_packets',`
4925 ## </summary>
4926 ## </param>
4927 #
4928 -interface(`corenet_relabelto_ms_streaming_client_packets',`
4929 +interface(`corenet_relabelto_msnp_client_packets',`
4930 gen_require(`
4931 - type ms_streaming_client_packet_t;
4932 + type msnp_client_packet_t;
4933 ')
4934
4935 - allow $1 ms_streaming_client_packet_t:packet relabelto;
4936 + allow $1 msnp_client_packet_t:packet relabelto;
4937 ')
4938
4939
4940 ########################################
4941 ## <summary>
4942 -## Send ms_streaming_server packets.
4943 +## Send msnp_server packets.
4944 ## </summary>
4945 ## <param name="domain">
4946 ## <summary>
4947 @@ -52657,17 +53543,17 @@ interface(`corenet_relabelto_ms_streaming_client_packets',`
4948 ## </param>
4949 ## <infoflow type="write" weight="10"/>
4950 #
4951 -interface(`corenet_send_ms_streaming_server_packets',`
4952 +interface(`corenet_send_msnp_server_packets',`
4953 gen_require(`
4954 - type ms_streaming_server_packet_t;
4955 + type msnp_server_packet_t;
4956 ')
4957
4958 - allow $1 ms_streaming_server_packet_t:packet send;
4959 + allow $1 msnp_server_packet_t:packet send;
4960 ')
4961
4962 ########################################
4963 ## <summary>
4964 -## Do not audit attempts to send ms_streaming_server packets.
4965 +## Do not audit attempts to send msnp_server packets.
4966 ## </summary>
4967 ## <param name="domain">
4968 ## <summary>
4969 @@ -52676,17 +53562,17 @@ interface(`corenet_send_ms_streaming_server_packets',`
4970 ## </param>
4971 ## <infoflow type="none"/>
4972 #
4973 -interface(`corenet_dontaudit_send_ms_streaming_server_packets',`
4974 +interface(`corenet_dontaudit_send_msnp_server_packets',`
4975 gen_require(`
4976 - type ms_streaming_server_packet_t;
4977 + type msnp_server_packet_t;
4978 ')
4979
4980 - dontaudit $1 ms_streaming_server_packet_t:packet send;
4981 + dontaudit $1 msnp_server_packet_t:packet send;
4982 ')
4983
4984 ########################################
4985 ## <summary>
4986 -## Receive ms_streaming_server packets.
4987 +## Receive msnp_server packets.
4988 ## </summary>
4989 ## <param name="domain">
4990 ## <summary>
4991 @@ -52695,17 +53581,17 @@ interface(`corenet_dontaudit_send_ms_streaming_server_packets',`
4992 ## </param>
4993 ## <infoflow type="read" weight="10"/>
4994 #
4995 -interface(`corenet_receive_ms_streaming_server_packets',`
4996 +interface(`corenet_receive_msnp_server_packets',`
4997 gen_require(`
4998 - type ms_streaming_server_packet_t;
4999 + type msnp_server_packet_t;
5000 ')
5001
5002 - allow $1 ms_streaming_server_packet_t:packet recv;
5003 + allow $1 msnp_server_packet_t:packet recv;
5004 ')
5005
5006 ########################################
5007 ## <summary>
5008 -## Do not audit attempts to receive ms_streaming_server packets.
5009 +## Do not audit attempts to receive msnp_server packets.
5010 ## </summary>
5011 ## <param name="domain">
5012 ## <summary>
5013 @@ -52714,17 +53600,17 @@ interface(`corenet_receive_ms_streaming_server_packets',`
5014 ## </param>
5015 ## <infoflow type="none"/>
5016 #
5017 -interface(`corenet_dontaudit_receive_ms_streaming_server_packets',`
5018 +interface(`corenet_dontaudit_receive_msnp_server_packets',`
5019 gen_require(`
5020 - type ms_streaming_server_packet_t;
5021 + type msnp_server_packet_t;
5022 ')
5023
5024 - dontaudit $1 ms_streaming_server_packet_t:packet recv;
5025 + dontaudit $1 msnp_server_packet_t:packet recv;
5026 ')
5027
5028 ########################################
5029 ## <summary>
5030 -## Send and receive ms_streaming_server packets.
5031 +## Send and receive msnp_server packets.
5032 ## </summary>
5033 ## <param name="domain">
5034 ## <summary>
5035 @@ -52733,14 +53619,14 @@ interface(`corenet_dontaudit_receive_ms_streaming_server_packets',`
5036 ## </param>
5037 ## <infoflow type="both" weight="10"/>
5038 #
5039 -interface(`corenet_sendrecv_ms_streaming_server_packets',`
5040 - corenet_send_ms_streaming_server_packets($1)
5041 - corenet_receive_ms_streaming_server_packets($1)
5042 +interface(`corenet_sendrecv_msnp_server_packets',`
5043 + corenet_send_msnp_server_packets($1)
5044 + corenet_receive_msnp_server_packets($1)
5045 ')
5046
5047 ########################################
5048 ## <summary>
5049 -## Do not audit attempts to send and receive ms_streaming_server packets.
5050 +## Do not audit attempts to send and receive msnp_server packets.
5051 ## </summary>
5052 ## <param name="domain">
5053 ## <summary>
5054 @@ -52749,14 +53635,14 @@ interface(`corenet_sendrecv_ms_streaming_server_packets',`
5055 ## </param>
5056 ## <infoflow type="none"/>
5057 #
5058 -interface(`corenet_dontaudit_sendrecv_ms_streaming_server_packets',`
5059 - corenet_dontaudit_send_ms_streaming_server_packets($1)
5060 - corenet_dontaudit_receive_ms_streaming_server_packets($1)
5061 +interface(`corenet_dontaudit_sendrecv_msnp_server_packets',`
5062 + corenet_dontaudit_send_msnp_server_packets($1)
5063 + corenet_dontaudit_receive_msnp_server_packets($1)
5064 ')
5065
5066 ########################################
5067 ## <summary>
5068 -## Relabel packets to ms_streaming_server the packet type.
5069 +## Relabel packets to msnp_server the packet type.
5070 ## </summary>
5071 ## <param name="domain">
5072 ## <summary>
5073 @@ -52764,12 +53650,12 @@ interface(`corenet_dontaudit_sendrecv_ms_streaming_server_packets',`
5074 ## </summary>
5075 ## </param>
5076 #
5077 -interface(`corenet_relabelto_ms_streaming_server_packets',`
5078 +interface(`corenet_relabelto_msnp_server_packets',`
5079 gen_require(`
5080 - type ms_streaming_server_packet_t;
5081 + type msnp_server_packet_t;
5082 ')
5083
5084 - allow $1 ms_streaming_server_packet_t:packet relabelto;
5085 + allow $1 msnp_server_packet_t:packet relabelto;
5086 ')
5087
5088
5089 @@ -52777,7 +53663,7 @@ interface(`corenet_relabelto_ms_streaming_server_packets',`
5090
5091 ########################################
5092 ## <summary>
5093 -## Send and receive TCP traffic on the munin port.
5094 +## Send and receive TCP traffic on the mssql port.
5095 ## </summary>
5096 ## <param name="domain">
5097 ## <summary>
5098 @@ -52786,17 +53672,17 @@ interface(`corenet_relabelto_ms_streaming_server_packets',`
5099 ## </param>
5100 ## <infoflow type="both" weight="10"/>
5101 #
5102 -interface(`corenet_tcp_sendrecv_munin_port',`
5103 +interface(`corenet_tcp_sendrecv_mssql_port',`
5104 gen_require(`
5105 - type munin_port_t;
5106 + type mssql_port_t;
5107 ')
5108
5109 - allow $1 munin_port_t:tcp_socket { send_msg recv_msg };
5110 + allow $1 mssql_port_t:tcp_socket { send_msg recv_msg };
5111 ')
5112
5113 ########################################
5114 ## <summary>
5115 -## Send UDP traffic on the munin port.
5116 +## Send UDP traffic on the mssql port.
5117 ## </summary>
5118 ## <param name="domain">
5119 ## <summary>
5120 @@ -52805,17 +53691,17 @@ interface(`corenet_tcp_sendrecv_munin_port',`
5121 ## </param>
5122 ## <infoflow type="write" weight="10"/>
5123 #
5124 -interface(`corenet_udp_send_munin_port',`
5125 +interface(`corenet_udp_send_mssql_port',`
5126 gen_require(`
5127 - type munin_port_t;
5128 + type mssql_port_t;
5129 ')
5130
5131 - allow $1 munin_port_t:udp_socket send_msg;
5132 + allow $1 mssql_port_t:udp_socket send_msg;
5133 ')
5134
5135 ########################################
5136 ## <summary>
5137 -## Do not audit attempts to send UDP traffic on the munin port.
5138 +## Do not audit attempts to send UDP traffic on the mssql port.
5139 ## </summary>
5140 ## <param name="domain">
5141 ## <summary>
5142 @@ -52824,17 +53710,17 @@ interface(`corenet_udp_send_munin_port',`
5143 ## </param>
5144 ## <infoflow type="none"/>
5145 #
5146 -interface(`corenet_dontaudit_udp_send_munin_port',`
5147 +interface(`corenet_dontaudit_udp_send_mssql_port',`
5148 gen_require(`
5149 - type munin_port_t;
5150 + type mssql_port_t;
5151 ')
5152
5153 - dontaudit $1 munin_port_t:udp_socket send_msg;
5154 + dontaudit $1 mssql_port_t:udp_socket send_msg;
5155 ')
5156
5157 ########################################
5158 ## <summary>
5159 -## Receive UDP traffic on the munin port.
5160 +## Receive UDP traffic on the mssql port.
5161 ## </summary>
5162 ## <param name="domain">
5163 ## <summary>
5164 @@ -52843,17 +53729,17 @@ interface(`corenet_dontaudit_udp_send_munin_port',`
5165 ## </param>
5166 ## <infoflow type="read" weight="10"/>
5167 #
5168 -interface(`corenet_udp_receive_munin_port',`
5169 +interface(`corenet_udp_receive_mssql_port',`
5170 gen_require(`
5171 - type munin_port_t;
5172 + type mssql_port_t;
5173 ')
5174
5175 - allow $1 munin_port_t:udp_socket recv_msg;
5176 + allow $1 mssql_port_t:udp_socket recv_msg;
5177 ')
5178
5179 ########################################
5180 ## <summary>
5181 -## Do not audit attempts to receive UDP traffic on the munin port.
5182 +## Do not audit attempts to receive UDP traffic on the mssql port.
5183 ## </summary>
5184 ## <param name="domain">
5185 ## <summary>
5186 @@ -52862,17 +53748,17 @@ interface(`corenet_udp_receive_munin_port',`
5187 ## </param>
5188 ## <infoflow type="none"/>
5189 #
5190 -interface(`corenet_dontaudit_udp_receive_munin_port',`
5191 +interface(`corenet_dontaudit_udp_receive_mssql_port',`
5192 gen_require(`
5193 - type munin_port_t;
5194 + type mssql_port_t;
5195 ')
5196
5197 - dontaudit $1 munin_port_t:udp_socket recv_msg;
5198 + dontaudit $1 mssql_port_t:udp_socket recv_msg;
5199 ')
5200
5201 ########################################
5202 ## <summary>
5203 -## Send and receive UDP traffic on the munin port.
5204 +## Send and receive UDP traffic on the mssql port.
5205 ## </summary>
5206 ## <param name="domain">
5207 ## <summary>
5208 @@ -52881,15 +53767,15 @@ interface(`corenet_dontaudit_udp_receive_munin_port',`
5209 ## </param>
5210 ## <infoflow type="both" weight="10"/>
5211 #
5212 -interface(`corenet_udp_sendrecv_munin_port',`
5213 - corenet_udp_send_munin_port($1)
5214 - corenet_udp_receive_munin_port($1)
5215 +interface(`corenet_udp_sendrecv_mssql_port',`
5216 + corenet_udp_send_mssql_port($1)
5217 + corenet_udp_receive_mssql_port($1)
5218 ')
5219
5220 ########################################
5221 ## <summary>
5222 ## Do not audit attempts to send and receive
5223 -## UDP traffic on the munin port.
5224 +## UDP traffic on the mssql port.
5225 ## </summary>
5226 ## <param name="domain">
5227 ## <summary>
5228 @@ -52898,14 +53784,14 @@ interface(`corenet_udp_sendrecv_munin_port',`
5229 ## </param>
5230 ## <infoflow type="none"/>
5231 #
5232 -interface(`corenet_dontaudit_udp_sendrecv_munin_port',`
5233 - corenet_dontaudit_udp_send_munin_port($1)
5234 - corenet_dontaudit_udp_receive_munin_port($1)
5235 +interface(`corenet_dontaudit_udp_sendrecv_mssql_port',`
5236 + corenet_dontaudit_udp_send_mssql_port($1)
5237 + corenet_dontaudit_udp_receive_mssql_port($1)
5238 ')
5239
5240 ########################################
5241 ## <summary>
5242 -## Bind TCP sockets to the munin port.
5243 +## Bind TCP sockets to the mssql port.
5244 ## </summary>
5245 ## <param name="domain">
5246 ## <summary>
5247 @@ -52914,18 +53800,18 @@ interface(`corenet_dontaudit_udp_sendrecv_munin_port',`
5248 ## </param>
5249 ## <infoflow type="none"/>
5250 #
5251 -interface(`corenet_tcp_bind_munin_port',`
5252 +interface(`corenet_tcp_bind_mssql_port',`
5253 gen_require(`
5254 - type munin_port_t;
5255 + type mssql_port_t;
5256 ')
5257
5258 - allow $1 munin_port_t:tcp_socket name_bind;
5259 -
5260 + allow $1 mssql_port_t:tcp_socket name_bind;
5261 + allow $1 self:capability net_bind_service;
5262 ')
5263
5264 ########################################
5265 ## <summary>
5266 -## Bind UDP sockets to the munin port.
5267 +## Bind UDP sockets to the mssql port.
5268 ## </summary>
5269 ## <param name="domain">
5270 ## <summary>
5271 @@ -52934,18 +53820,18 @@ interface(`corenet_tcp_bind_munin_port',`
5272 ## </param>
5273 ## <infoflow type="none"/>
5274 #
5275 -interface(`corenet_udp_bind_munin_port',`
5276 +interface(`corenet_udp_bind_mssql_port',`
5277 gen_require(`
5278 - type munin_port_t;
5279 + type mssql_port_t;
5280 ')
5281
5282 - allow $1 munin_port_t:udp_socket name_bind;
5283 -
5284 + allow $1 mssql_port_t:udp_socket name_bind;
5285 + allow $1 self:capability net_bind_service;
5286 ')
5287
5288 ########################################
5289 ## <summary>
5290 -## Make a TCP connection to the munin port.
5291 +## Make a TCP connection to the mssql port.
5292 ## </summary>
5293 ## <param name="domain">
5294 ## <summary>
5295 @@ -52953,18 +53839,18 @@ interface(`corenet_udp_bind_munin_port',`
5296 ## </summary>
5297 ## </param>
5298 #
5299 -interface(`corenet_tcp_connect_munin_port',`
5300 +interface(`corenet_tcp_connect_mssql_port',`
5301 gen_require(`
5302 - type munin_port_t;
5303 + type mssql_port_t;
5304 ')
5305
5306 - allow $1 munin_port_t:tcp_socket name_connect;
5307 + allow $1 mssql_port_t:tcp_socket name_connect;
5308 ')
5309
5310
5311 ########################################
5312 ## <summary>
5313 -## Send munin_client packets.
5314 +## Send mssql_client packets.
5315 ## </summary>
5316 ## <param name="domain">
5317 ## <summary>
5318 @@ -52973,17 +53859,17 @@ interface(`corenet_tcp_connect_munin_port',`
5319 ## </param>
5320 ## <infoflow type="write" weight="10"/>
5321 #
5322 -interface(`corenet_send_munin_client_packets',`
5323 +interface(`corenet_send_mssql_client_packets',`
5324 gen_require(`
5325 - type munin_client_packet_t;
5326 + type mssql_client_packet_t;
5327 ')
5328
5329 - allow $1 munin_client_packet_t:packet send;
5330 + allow $1 mssql_client_packet_t:packet send;
5331 ')
5332
5333 ########################################
5334 ## <summary>
5335 -## Do not audit attempts to send munin_client packets.
5336 +## Do not audit attempts to send mssql_client packets.
5337 ## </summary>
5338 ## <param name="domain">
5339 ## <summary>
5340 @@ -52992,17 +53878,17 @@ interface(`corenet_send_munin_client_packets',`
5341 ## </param>
5342 ## <infoflow type="none"/>
5343 #
5344 -interface(`corenet_dontaudit_send_munin_client_packets',`
5345 +interface(`corenet_dontaudit_send_mssql_client_packets',`
5346 gen_require(`
5347 - type munin_client_packet_t;
5348 + type mssql_client_packet_t;
5349 ')
5350
5351 - dontaudit $1 munin_client_packet_t:packet send;
5352 + dontaudit $1 mssql_client_packet_t:packet send;
5353 ')
5354
5355 ########################################
5356 ## <summary>
5357 -## Receive munin_client packets.
5358 +## Receive mssql_client packets.
5359 ## </summary>
5360 ## <param name="domain">
5361 ## <summary>
5362 @@ -53011,17 +53897,17 @@ interface(`corenet_dontaudit_send_munin_client_packets',`
5363 ## </param>
5364 ## <infoflow type="read" weight="10"/>
5365 #
5366 -interface(`corenet_receive_munin_client_packets',`
5367 +interface(`corenet_receive_mssql_client_packets',`
5368 gen_require(`
5369 - type munin_client_packet_t;
5370 + type mssql_client_packet_t;
5371 ')
5372
5373 - allow $1 munin_client_packet_t:packet recv;
5374 + allow $1 mssql_client_packet_t:packet recv;
5375 ')
5376
5377 ########################################
5378 ## <summary>
5379 -## Do not audit attempts to receive munin_client packets.
5380 +## Do not audit attempts to receive mssql_client packets.
5381 ## </summary>
5382 ## <param name="domain">
5383 ## <summary>
5384 @@ -53030,17 +53916,17 @@ interface(`corenet_receive_munin_client_packets',`
5385 ## </param>
5386 ## <infoflow type="none"/>
5387 #
5388 -interface(`corenet_dontaudit_receive_munin_client_packets',`
5389 +interface(`corenet_dontaudit_receive_mssql_client_packets',`
5390 gen_require(`
5391 - type munin_client_packet_t;
5392 + type mssql_client_packet_t;
5393 ')
5394
5395 - dontaudit $1 munin_client_packet_t:packet recv;
5396 + dontaudit $1 mssql_client_packet_t:packet recv;
5397 ')
5398
5399 ########################################
5400 ## <summary>
5401 -## Send and receive munin_client packets.
5402 +## Send and receive mssql_client packets.
5403 ## </summary>
5404 ## <param name="domain">
5405 ## <summary>
5406 @@ -53049,14 +53935,14 @@ interface(`corenet_dontaudit_receive_munin_client_packets',`
5407 ## </param>
5408 ## <infoflow type="both" weight="10"/>
5409 #
5410 -interface(`corenet_sendrecv_munin_client_packets',`
5411 - corenet_send_munin_client_packets($1)
5412 - corenet_receive_munin_client_packets($1)
5413 +interface(`corenet_sendrecv_mssql_client_packets',`
5414 + corenet_send_mssql_client_packets($1)
5415 + corenet_receive_mssql_client_packets($1)
5416 ')
5417
5418 ########################################
5419 ## <summary>
5420 -## Do not audit attempts to send and receive munin_client packets.
5421 +## Do not audit attempts to send and receive mssql_client packets.
5422 ## </summary>
5423 ## <param name="domain">
5424 ## <summary>
5425 @@ -53065,14 +53951,14 @@ interface(`corenet_sendrecv_munin_client_packets',`
5426 ## </param>
5427 ## <infoflow type="none"/>
5428 #
5429 -interface(`corenet_dontaudit_sendrecv_munin_client_packets',`
5430 - corenet_dontaudit_send_munin_client_packets($1)
5431 - corenet_dontaudit_receive_munin_client_packets($1)
5432 +interface(`corenet_dontaudit_sendrecv_mssql_client_packets',`
5433 + corenet_dontaudit_send_mssql_client_packets($1)
5434 + corenet_dontaudit_receive_mssql_client_packets($1)
5435 ')
5436
5437 ########################################
5438 ## <summary>
5439 -## Relabel packets to munin_client the packet type.
5440 +## Relabel packets to mssql_client the packet type.
5441 ## </summary>
5442 ## <param name="domain">
5443 ## <summary>
5444 @@ -53080,18 +53966,18 @@ interface(`corenet_dontaudit_sendrecv_munin_client_packets',`
5445 ## </summary>
5446 ## </param>
5447 #
5448 -interface(`corenet_relabelto_munin_client_packets',`
5449 +interface(`corenet_relabelto_mssql_client_packets',`
5450 gen_require(`
5451 - type munin_client_packet_t;
5452 + type mssql_client_packet_t;
5453 ')
5454
5455 - allow $1 munin_client_packet_t:packet relabelto;
5456 + allow $1 mssql_client_packet_t:packet relabelto;
5457 ')
5458
5459
5460 ########################################
5461 ## <summary>
5462 -## Send munin_server packets.
5463 +## Send mssql_server packets.
5464 ## </summary>
5465 ## <param name="domain">
5466 ## <summary>
5467 @@ -53100,17 +53986,17 @@ interface(`corenet_relabelto_munin_client_packets',`
5468 ## </param>
5469 ## <infoflow type="write" weight="10"/>
5470 #
5471 -interface(`corenet_send_munin_server_packets',`
5472 +interface(`corenet_send_mssql_server_packets',`
5473 gen_require(`
5474 - type munin_server_packet_t;
5475 + type mssql_server_packet_t;
5476 ')
5477
5478 - allow $1 munin_server_packet_t:packet send;
5479 + allow $1 mssql_server_packet_t:packet send;
5480 ')
5481
5482 ########################################
5483 ## <summary>
5484 -## Do not audit attempts to send munin_server packets.
5485 +## Do not audit attempts to send mssql_server packets.
5486 ## </summary>
5487 ## <param name="domain">
5488 ## <summary>
5489 @@ -53119,17 +54005,17 @@ interface(`corenet_send_munin_server_packets',`
5490 ## </param>
5491 ## <infoflow type="none"/>
5492 #
5493 -interface(`corenet_dontaudit_send_munin_server_packets',`
5494 +interface(`corenet_dontaudit_send_mssql_server_packets',`
5495 gen_require(`
5496 - type munin_server_packet_t;
5497 + type mssql_server_packet_t;
5498 ')
5499
5500 - dontaudit $1 munin_server_packet_t:packet send;
5501 + dontaudit $1 mssql_server_packet_t:packet send;
5502 ')
5503
5504 ########################################
5505 ## <summary>
5506 -## Receive munin_server packets.
5507 +## Receive mssql_server packets.
5508 ## </summary>
5509 ## <param name="domain">
5510 ## <summary>
5511 @@ -53138,17 +54024,17 @@ interface(`corenet_dontaudit_send_munin_server_packets',`
5512 ## </param>
5513 ## <infoflow type="read" weight="10"/>
5514 #
5515 -interface(`corenet_receive_munin_server_packets',`
5516 +interface(`corenet_receive_mssql_server_packets',`
5517 gen_require(`
5518 - type munin_server_packet_t;
5519 + type mssql_server_packet_t;
5520 ')
5521
5522 - allow $1 munin_server_packet_t:packet recv;
5523 + allow $1 mssql_server_packet_t:packet recv;
5524 ')
5525
5526 ########################################
5527 ## <summary>
5528 -## Do not audit attempts to receive munin_server packets.
5529 +## Do not audit attempts to receive mssql_server packets.
5530 ## </summary>
5531 ## <param name="domain">
5532 ## <summary>
5533 @@ -53157,17 +54043,17 @@ interface(`corenet_receive_munin_server_packets',`
5534 ## </param>
5535 ## <infoflow type="none"/>
5536 #
5537 -interface(`corenet_dontaudit_receive_munin_server_packets',`
5538 +interface(`corenet_dontaudit_receive_mssql_server_packets',`
5539 gen_require(`
5540 - type munin_server_packet_t;
5541 + type mssql_server_packet_t;
5542 ')
5543
5544 - dontaudit $1 munin_server_packet_t:packet recv;
5545 + dontaudit $1 mssql_server_packet_t:packet recv;
5546 ')
5547
5548 ########################################
5549 ## <summary>
5550 -## Send and receive munin_server packets.
5551 +## Send and receive mssql_server packets.
5552 ## </summary>
5553 ## <param name="domain">
5554 ## <summary>
5555 @@ -53176,14 +54062,14 @@ interface(`corenet_dontaudit_receive_munin_server_packets',`
5556 ## </param>
5557 ## <infoflow type="both" weight="10"/>
5558 #
5559 -interface(`corenet_sendrecv_munin_server_packets',`
5560 - corenet_send_munin_server_packets($1)
5561 - corenet_receive_munin_server_packets($1)
5562 +interface(`corenet_sendrecv_mssql_server_packets',`
5563 + corenet_send_mssql_server_packets($1)
5564 + corenet_receive_mssql_server_packets($1)
5565 ')
5566
5567 ########################################
5568 ## <summary>
5569 -## Do not audit attempts to send and receive munin_server packets.
5570 +## Do not audit attempts to send and receive mssql_server packets.
5571 ## </summary>
5572 ## <param name="domain">
5573 ## <summary>
5574 @@ -53192,14 +54078,14 @@ interface(`corenet_sendrecv_munin_server_packets',`
5575 ## </param>
5576 ## <infoflow type="none"/>
5577 #
5578 -interface(`corenet_dontaudit_sendrecv_munin_server_packets',`
5579 - corenet_dontaudit_send_munin_server_packets($1)
5580 - corenet_dontaudit_receive_munin_server_packets($1)
5581 +interface(`corenet_dontaudit_sendrecv_mssql_server_packets',`
5582 + corenet_dontaudit_send_mssql_server_packets($1)
5583 + corenet_dontaudit_receive_mssql_server_packets($1)
5584 ')
5585
5586 ########################################
5587 ## <summary>
5588 -## Relabel packets to munin_server the packet type.
5589 +## Relabel packets to mssql_server the packet type.
5590 ## </summary>
5591 ## <param name="domain">
5592 ## <summary>
5593 @@ -53207,12 +54093,12 @@ interface(`corenet_dontaudit_sendrecv_munin_server_packets',`
5594 ## </summary>
5595 ## </param>
5596 #
5597 -interface(`corenet_relabelto_munin_server_packets',`
5598 +interface(`corenet_relabelto_mssql_server_packets',`
5599 gen_require(`
5600 - type munin_server_packet_t;
5601 + type mssql_server_packet_t;
5602 ')
5603
5604 - allow $1 munin_server_packet_t:packet relabelto;
5605 + allow $1 mssql_server_packet_t:packet relabelto;
5606 ')
5607
5608
5609 @@ -53220,7 +54106,7 @@ interface(`corenet_relabelto_munin_server_packets',`
5610
5611 ########################################
5612 ## <summary>
5613 -## Send and receive TCP traffic on the mxi port.
5614 +## Send and receive TCP traffic on the ms_streaming port.
5615 ## </summary>
5616 ## <param name="domain">
5617 ## <summary>
5618 @@ -53229,17 +54115,17 @@ interface(`corenet_relabelto_munin_server_packets',`
5619 ## </param>
5620 ## <infoflow type="both" weight="10"/>
5621 #
5622 -interface(`corenet_tcp_sendrecv_mxi_port',`
5623 +interface(`corenet_tcp_sendrecv_ms_streaming_port',`
5624 gen_require(`
5625 - type mxi_port_t;
5626 + type ms_streaming_port_t;
5627 ')
5628
5629 - allow $1 mxi_port_t:tcp_socket { send_msg recv_msg };
5630 + allow $1 ms_streaming_port_t:tcp_socket { send_msg recv_msg };
5631 ')
5632
5633 ########################################
5634 ## <summary>
5635 -## Send UDP traffic on the mxi port.
5636 +## Send UDP traffic on the ms_streaming port.
5637 ## </summary>
5638 ## <param name="domain">
5639 ## <summary>
5640 @@ -53248,17 +54134,17 @@ interface(`corenet_tcp_sendrecv_mxi_port',`
5641 ## </param>
5642 ## <infoflow type="write" weight="10"/>
5643 #
5644 -interface(`corenet_udp_send_mxi_port',`
5645 +interface(`corenet_udp_send_ms_streaming_port',`
5646 gen_require(`
5647 - type mxi_port_t;
5648 + type ms_streaming_port_t;
5649 ')
5650
5651 - allow $1 mxi_port_t:udp_socket send_msg;
5652 + allow $1 ms_streaming_port_t:udp_socket send_msg;
5653 ')
5654
5655 ########################################
5656 ## <summary>
5657 -## Do not audit attempts to send UDP traffic on the mxi port.
5658 +## Do not audit attempts to send UDP traffic on the ms_streaming port.
5659 ## </summary>
5660 ## <param name="domain">
5661 ## <summary>
5662 @@ -53267,17 +54153,17 @@ interface(`corenet_udp_send_mxi_port',`
5663 ## </param>
5664 ## <infoflow type="none"/>
5665 #
5666 -interface(`corenet_dontaudit_udp_send_mxi_port',`
5667 +interface(`corenet_dontaudit_udp_send_ms_streaming_port',`
5668 gen_require(`
5669 - type mxi_port_t;
5670 + type ms_streaming_port_t;
5671 ')
5672
5673 - dontaudit $1 mxi_port_t:udp_socket send_msg;
5674 + dontaudit $1 ms_streaming_port_t:udp_socket send_msg;
5675 ')
5676
5677 ########################################
5678 ## <summary>
5679 -## Receive UDP traffic on the mxi port.
5680 +## Receive UDP traffic on the ms_streaming port.
5681 ## </summary>
5682 ## <param name="domain">
5683 ## <summary>
5684 @@ -53286,17 +54172,17 @@ interface(`corenet_dontaudit_udp_send_mxi_port',`
5685 ## </param>
5686 ## <infoflow type="read" weight="10"/>
5687 #
5688 -interface(`corenet_udp_receive_mxi_port',`
5689 +interface(`corenet_udp_receive_ms_streaming_port',`
5690 gen_require(`
5691 - type mxi_port_t;
5692 + type ms_streaming_port_t;
5693 ')
5694
5695 - allow $1 mxi_port_t:udp_socket recv_msg;
5696 + allow $1 ms_streaming_port_t:udp_socket recv_msg;
5697 ')
5698
5699 ########################################
5700 ## <summary>
5701 -## Do not audit attempts to receive UDP traffic on the mxi port.
5702 +## Do not audit attempts to receive UDP traffic on the ms_streaming port.
5703 ## </summary>
5704 ## <param name="domain">
5705 ## <summary>
5706 @@ -53305,17 +54191,17 @@ interface(`corenet_udp_receive_mxi_port',`
5707 ## </param>
5708 ## <infoflow type="none"/>
5709 #
5710 -interface(`corenet_dontaudit_udp_receive_mxi_port',`
5711 +interface(`corenet_dontaudit_udp_receive_ms_streaming_port',`
5712 gen_require(`
5713 - type mxi_port_t;
5714 + type ms_streaming_port_t;
5715 ')
5716
5717 - dontaudit $1 mxi_port_t:udp_socket recv_msg;
5718 + dontaudit $1 ms_streaming_port_t:udp_socket recv_msg;
5719 ')
5720
5721 ########################################
5722 ## <summary>
5723 -## Send and receive UDP traffic on the mxi port.
5724 +## Send and receive UDP traffic on the ms_streaming port.
5725 ## </summary>
5726 ## <param name="domain">
5727 ## <summary>
5728 @@ -53324,15 +54210,15 @@ interface(`corenet_dontaudit_udp_receive_mxi_port',`
5729 ## </param>
5730 ## <infoflow type="both" weight="10"/>
5731 #
5732 -interface(`corenet_udp_sendrecv_mxi_port',`
5733 - corenet_udp_send_mxi_port($1)
5734 - corenet_udp_receive_mxi_port($1)
5735 +interface(`corenet_udp_sendrecv_ms_streaming_port',`
5736 + corenet_udp_send_ms_streaming_port($1)
5737 + corenet_udp_receive_ms_streaming_port($1)
5738 ')
5739
5740 ########################################
5741 ## <summary>
5742 ## Do not audit attempts to send and receive
5743 -## UDP traffic on the mxi port.
5744 +## UDP traffic on the ms_streaming port.
5745 ## </summary>
5746 ## <param name="domain">
5747 ## <summary>
5748 @@ -53341,14 +54227,14 @@ interface(`corenet_udp_sendrecv_mxi_port',`
5749 ## </param>
5750 ## <infoflow type="none"/>
5751 #
5752 -interface(`corenet_dontaudit_udp_sendrecv_mxi_port',`
5753 - corenet_dontaudit_udp_send_mxi_port($1)
5754 - corenet_dontaudit_udp_receive_mxi_port($1)
5755 +interface(`corenet_dontaudit_udp_sendrecv_ms_streaming_port',`
5756 + corenet_dontaudit_udp_send_ms_streaming_port($1)
5757 + corenet_dontaudit_udp_receive_ms_streaming_port($1)
5758 ')
5759
5760 ########################################
5761 ## <summary>
5762 -## Bind TCP sockets to the mxi port.
5763 +## Bind TCP sockets to the ms_streaming port.
5764 ## </summary>
5765 ## <param name="domain">
5766 ## <summary>
5767 @@ -53357,18 +54243,18 @@ interface(`corenet_dontaudit_udp_sendrecv_mxi_port',`
5768 ## </param>
5769 ## <infoflow type="none"/>
5770 #
5771 -interface(`corenet_tcp_bind_mxi_port',`
5772 +interface(`corenet_tcp_bind_ms_streaming_port',`
5773 gen_require(`
5774 - type mxi_port_t;
5775 + type ms_streaming_port_t;
5776 ')
5777
5778 - allow $1 mxi_port_t:tcp_socket name_bind;
5779 + allow $1 ms_streaming_port_t:tcp_socket name_bind;
5780
5781 ')
5782
5783 ########################################
5784 ## <summary>
5785 -## Bind UDP sockets to the mxi port.
5786 +## Bind UDP sockets to the ms_streaming port.
5787 ## </summary>
5788 ## <param name="domain">
5789 ## <summary>
5790 @@ -53377,18 +54263,18 @@ interface(`corenet_tcp_bind_mxi_port',`
5791 ## </param>
5792 ## <infoflow type="none"/>
5793 #
5794 -interface(`corenet_udp_bind_mxi_port',`
5795 +interface(`corenet_udp_bind_ms_streaming_port',`
5796 gen_require(`
5797 - type mxi_port_t;
5798 + type ms_streaming_port_t;
5799 ')
5800
5801 - allow $1 mxi_port_t:udp_socket name_bind;
5802 + allow $1 ms_streaming_port_t:udp_socket name_bind;
5803
5804 ')
5805
5806 ########################################
5807 ## <summary>
5808 -## Make a TCP connection to the mxi port.
5809 +## Make a TCP connection to the ms_streaming port.
5810 ## </summary>
5811 ## <param name="domain">
5812 ## <summary>
5813 @@ -53396,18 +54282,18 @@ interface(`corenet_udp_bind_mxi_port',`
5814 ## </summary>
5815 ## </param>
5816 #
5817 -interface(`corenet_tcp_connect_mxi_port',`
5818 +interface(`corenet_tcp_connect_ms_streaming_port',`
5819 gen_require(`
5820 - type mxi_port_t;
5821 + type ms_streaming_port_t;
5822 ')
5823
5824 - allow $1 mxi_port_t:tcp_socket name_connect;
5825 + allow $1 ms_streaming_port_t:tcp_socket name_connect;
5826 ')
5827
5828
5829 ########################################
5830 ## <summary>
5831 -## Send mxi_client packets.
5832 +## Send ms_streaming_client packets.
5833 ## </summary>
5834 ## <param name="domain">
5835 ## <summary>
5836 @@ -53416,17 +54302,17 @@ interface(`corenet_tcp_connect_mxi_port',`
5837 ## </param>
5838 ## <infoflow type="write" weight="10"/>
5839 #
5840 -interface(`corenet_send_mxi_client_packets',`
5841 +interface(`corenet_send_ms_streaming_client_packets',`
5842 gen_require(`
5843 - type mxi_client_packet_t;
5844 + type ms_streaming_client_packet_t;
5845 ')
5846
5847 - allow $1 mxi_client_packet_t:packet send;
5848 + allow $1 ms_streaming_client_packet_t:packet send;
5849 ')
5850
5851 ########################################
5852 ## <summary>
5853 -## Do not audit attempts to send mxi_client packets.
5854 +## Do not audit attempts to send ms_streaming_client packets.
5855 ## </summary>
5856 ## <param name="domain">
5857 ## <summary>
5858 @@ -53435,17 +54321,17 @@ interface(`corenet_send_mxi_client_packets',`
5859 ## </param>
5860 ## <infoflow type="none"/>
5861 #
5862 -interface(`corenet_dontaudit_send_mxi_client_packets',`
5863 +interface(`corenet_dontaudit_send_ms_streaming_client_packets',`
5864 gen_require(`
5865 - type mxi_client_packet_t;
5866 + type ms_streaming_client_packet_t;
5867 ')
5868
5869 - dontaudit $1 mxi_client_packet_t:packet send;
5870 + dontaudit $1 ms_streaming_client_packet_t:packet send;
5871 ')
5872
5873 ########################################
5874 ## <summary>
5875 -## Receive mxi_client packets.
5876 +## Receive ms_streaming_client packets.
5877 ## </summary>
5878 ## <param name="domain">
5879 ## <summary>
5880 @@ -53454,17 +54340,17 @@ interface(`corenet_dontaudit_send_mxi_client_packets',`
5881 ## </param>
5882 ## <infoflow type="read" weight="10"/>
5883 #
5884 -interface(`corenet_receive_mxi_client_packets',`
5885 +interface(`corenet_receive_ms_streaming_client_packets',`
5886 gen_require(`
5887 - type mxi_client_packet_t;
5888 + type ms_streaming_client_packet_t;
5889 ')
5890
5891 - allow $1 mxi_client_packet_t:packet recv;
5892 + allow $1 ms_streaming_client_packet_t:packet recv;
5893 ')
5894
5895 ########################################
5896 ## <summary>
5897 -## Do not audit attempts to receive mxi_client packets.
5898 +## Do not audit attempts to receive ms_streaming_client packets.
5899 ## </summary>
5900 ## <param name="domain">
5901 ## <summary>
5902 @@ -53473,17 +54359,17 @@ interface(`corenet_receive_mxi_client_packets',`
5903 ## </param>
5904 ## <infoflow type="none"/>
5905 #
5906 -interface(`corenet_dontaudit_receive_mxi_client_packets',`
5907 +interface(`corenet_dontaudit_receive_ms_streaming_client_packets',`
5908 gen_require(`
5909 - type mxi_client_packet_t;
5910 + type ms_streaming_client_packet_t;
5911 ')
5912
5913 - dontaudit $1 mxi_client_packet_t:packet recv;
5914 + dontaudit $1 ms_streaming_client_packet_t:packet recv;
5915 ')
5916
5917 ########################################
5918 ## <summary>
5919 -## Send and receive mxi_client packets.
5920 +## Send and receive ms_streaming_client packets.
5921 ## </summary>
5922 ## <param name="domain">
5923 ## <summary>
5924 @@ -53492,14 +54378,14 @@ interface(`corenet_dontaudit_receive_mxi_client_packets',`
5925 ## </param>
5926 ## <infoflow type="both" weight="10"/>
5927 #
5928 -interface(`corenet_sendrecv_mxi_client_packets',`
5929 - corenet_send_mxi_client_packets($1)
5930 - corenet_receive_mxi_client_packets($1)
5931 +interface(`corenet_sendrecv_ms_streaming_client_packets',`
5932 + corenet_send_ms_streaming_client_packets($1)
5933 + corenet_receive_ms_streaming_client_packets($1)
5934 ')
5935
5936 ########################################
5937 ## <summary>
5938 -## Do not audit attempts to send and receive mxi_client packets.
5939 +## Do not audit attempts to send and receive ms_streaming_client packets.
5940 ## </summary>
5941 ## <param name="domain">
5942 ## <summary>
5943 @@ -53508,14 +54394,14 @@ interface(`corenet_sendrecv_mxi_client_packets',`
5944 ## </param>
5945 ## <infoflow type="none"/>
5946 #
5947 -interface(`corenet_dontaudit_sendrecv_mxi_client_packets',`
5948 - corenet_dontaudit_send_mxi_client_packets($1)
5949 - corenet_dontaudit_receive_mxi_client_packets($1)
5950 +interface(`corenet_dontaudit_sendrecv_ms_streaming_client_packets',`
5951 + corenet_dontaudit_send_ms_streaming_client_packets($1)
5952 + corenet_dontaudit_receive_ms_streaming_client_packets($1)
5953 ')
5954
5955 ########################################
5956 ## <summary>
5957 -## Relabel packets to mxi_client the packet type.
5958 +## Relabel packets to ms_streaming_client the packet type.
5959 ## </summary>
5960 ## <param name="domain">
5961 ## <summary>
5962 @@ -53523,18 +54409,18 @@ interface(`corenet_dontaudit_sendrecv_mxi_client_packets',`
5963 ## </summary>
5964 ## </param>
5965 #
5966 -interface(`corenet_relabelto_mxi_client_packets',`
5967 +interface(`corenet_relabelto_ms_streaming_client_packets',`
5968 gen_require(`
5969 - type mxi_client_packet_t;
5970 + type ms_streaming_client_packet_t;
5971 ')
5972
5973 - allow $1 mxi_client_packet_t:packet relabelto;
5974 + allow $1 ms_streaming_client_packet_t:packet relabelto;
5975 ')
5976
5977
5978 ########################################
5979 ## <summary>
5980 -## Send mxi_server packets.
5981 +## Send ms_streaming_server packets.
5982 ## </summary>
5983 ## <param name="domain">
5984 ## <summary>
5985 @@ -53543,17 +54429,17 @@ interface(`corenet_relabelto_mxi_client_packets',`
5986 ## </param>
5987 ## <infoflow type="write" weight="10"/>
5988 #
5989 -interface(`corenet_send_mxi_server_packets',`
5990 +interface(`corenet_send_ms_streaming_server_packets',`
5991 gen_require(`
5992 - type mxi_server_packet_t;
5993 + type ms_streaming_server_packet_t;
5994 ')
5995
5996 - allow $1 mxi_server_packet_t:packet send;
5997 + allow $1 ms_streaming_server_packet_t:packet send;
5998 ')
5999
6000 ########################################
6001 ## <summary>
6002 -## Do not audit attempts to send mxi_server packets.
6003 +## Do not audit attempts to send ms_streaming_server packets.
6004 ## </summary>
6005 ## <param name="domain">
6006 ## <summary>
6007 @@ -53562,17 +54448,17 @@ interface(`corenet_send_mxi_server_packets',`
6008 ## </param>
6009 ## <infoflow type="none"/>
6010 #
6011 -interface(`corenet_dontaudit_send_mxi_server_packets',`
6012 +interface(`corenet_dontaudit_send_ms_streaming_server_packets',`
6013 gen_require(`
6014 - type mxi_server_packet_t;
6015 + type ms_streaming_server_packet_t;
6016 ')
6017
6018 - dontaudit $1 mxi_server_packet_t:packet send;
6019 + dontaudit $1 ms_streaming_server_packet_t:packet send;
6020 ')
6021
6022 ########################################
6023 ## <summary>
6024 -## Receive mxi_server packets.
6025 +## Receive ms_streaming_server packets.
6026 ## </summary>
6027 ## <param name="domain">
6028 ## <summary>
6029 @@ -53581,17 +54467,17 @@ interface(`corenet_dontaudit_send_mxi_server_packets',`
6030 ## </param>
6031 ## <infoflow type="read" weight="10"/>
6032 #
6033 -interface(`corenet_receive_mxi_server_packets',`
6034 +interface(`corenet_receive_ms_streaming_server_packets',`
6035 gen_require(`
6036 - type mxi_server_packet_t;
6037 + type ms_streaming_server_packet_t;
6038 ')
6039
6040 - allow $1 mxi_server_packet_t:packet recv;
6041 + allow $1 ms_streaming_server_packet_t:packet recv;
6042 ')
6043
6044 ########################################
6045 ## <summary>
6046 -## Do not audit attempts to receive mxi_server packets.
6047 +## Do not audit attempts to receive ms_streaming_server packets.
6048 ## </summary>
6049 ## <param name="domain">
6050 ## <summary>
6051 @@ -53600,17 +54486,17 @@ interface(`corenet_receive_mxi_server_packets',`
6052 ## </param>
6053 ## <infoflow type="none"/>
6054 #
6055 -interface(`corenet_dontaudit_receive_mxi_server_packets',`
6056 +interface(`corenet_dontaudit_receive_ms_streaming_server_packets',`
6057 gen_require(`
6058 - type mxi_server_packet_t;
6059 + type ms_streaming_server_packet_t;
6060 ')
6061
6062 - dontaudit $1 mxi_server_packet_t:packet recv;
6063 + dontaudit $1 ms_streaming_server_packet_t:packet recv;
6064 ')
6065
6066 ########################################
6067 ## <summary>
6068 -## Send and receive mxi_server packets.
6069 +## Send and receive ms_streaming_server packets.
6070 ## </summary>
6071 ## <param name="domain">
6072 ## <summary>
6073 @@ -53619,14 +54505,14 @@ interface(`corenet_dontaudit_receive_mxi_server_packets',`
6074 ## </param>
6075 ## <infoflow type="both" weight="10"/>
6076 #
6077 -interface(`corenet_sendrecv_mxi_server_packets',`
6078 - corenet_send_mxi_server_packets($1)
6079 - corenet_receive_mxi_server_packets($1)
6080 +interface(`corenet_sendrecv_ms_streaming_server_packets',`
6081 + corenet_send_ms_streaming_server_packets($1)
6082 + corenet_receive_ms_streaming_server_packets($1)
6083 ')
6084
6085 ########################################
6086 ## <summary>
6087 -## Do not audit attempts to send and receive mxi_server packets.
6088 +## Do not audit attempts to send and receive ms_streaming_server packets.
6089 ## </summary>
6090 ## <param name="domain">
6091 ## <summary>
6092 @@ -53635,14 +54521,14 @@ interface(`corenet_sendrecv_mxi_server_packets',`
6093 ## </param>
6094 ## <infoflow type="none"/>
6095 #
6096 -interface(`corenet_dontaudit_sendrecv_mxi_server_packets',`
6097 - corenet_dontaudit_send_mxi_server_packets($1)
6098 - corenet_dontaudit_receive_mxi_server_packets($1)
6099 +interface(`corenet_dontaudit_sendrecv_ms_streaming_server_packets',`
6100 + corenet_dontaudit_send_ms_streaming_server_packets($1)
6101 + corenet_dontaudit_receive_ms_streaming_server_packets($1)
6102 ')
6103
6104 ########################################
6105 ## <summary>
6106 -## Relabel packets to mxi_server the packet type.
6107 +## Relabel packets to ms_streaming_server the packet type.
6108 ## </summary>
6109 ## <param name="domain">
6110 ## <summary>
6111 @@ -53650,12 +54536,12 @@ interface(`corenet_dontaudit_sendrecv_mxi_server_packets',`
6112 ## </summary>
6113 ## </param>
6114 #
6115 -interface(`corenet_relabelto_mxi_server_packets',`
6116 +interface(`corenet_relabelto_ms_streaming_server_packets',`
6117 gen_require(`
6118 - type mxi_server_packet_t;
6119 + type ms_streaming_server_packet_t;
6120 ')
6121
6122 - allow $1 mxi_server_packet_t:packet relabelto;
6123 + allow $1 ms_streaming_server_packet_t:packet relabelto;
6124 ')
6125
6126
6127 @@ -53663,7 +54549,7 @@ interface(`corenet_relabelto_mxi_server_packets',`
6128
6129 ########################################
6130 ## <summary>
6131 -## Send and receive TCP traffic on the mysqld port.
6132 +## Send and receive TCP traffic on the munin port.
6133 ## </summary>
6134 ## <param name="domain">
6135 ## <summary>
6136 @@ -53672,17 +54558,17 @@ interface(`corenet_relabelto_mxi_server_packets',`
6137 ## </param>
6138 ## <infoflow type="both" weight="10"/>
6139 #
6140 -interface(`corenet_tcp_sendrecv_mysqld_port',`
6141 +interface(`corenet_tcp_sendrecv_munin_port',`
6142 gen_require(`
6143 - type mysqld_port_t;
6144 + type munin_port_t;
6145 ')
6146
6147 - allow $1 mysqld_port_t:tcp_socket { send_msg recv_msg };
6148 + allow $1 munin_port_t:tcp_socket { send_msg recv_msg };
6149 ')
6150
6151 ########################################
6152 ## <summary>
6153 -## Send UDP traffic on the mysqld port.
6154 +## Send UDP traffic on the munin port.
6155 ## </summary>
6156 ## <param name="domain">
6157 ## <summary>
6158 @@ -53691,17 +54577,17 @@ interface(`corenet_tcp_sendrecv_mysqld_port',`
6159 ## </param>
6160 ## <infoflow type="write" weight="10"/>
6161 #
6162 -interface(`corenet_udp_send_mysqld_port',`
6163 +interface(`corenet_udp_send_munin_port',`
6164 gen_require(`
6165 - type mysqld_port_t;
6166 + type munin_port_t;
6167 ')
6168
6169 - allow $1 mysqld_port_t:udp_socket send_msg;
6170 + allow $1 munin_port_t:udp_socket send_msg;
6171 ')
6172
6173 ########################################
6174 ## <summary>
6175 -## Do not audit attempts to send UDP traffic on the mysqld port.
6176 +## Do not audit attempts to send UDP traffic on the munin port.
6177 ## </summary>
6178 ## <param name="domain">
6179 ## <summary>
6180 @@ -53710,17 +54596,17 @@ interface(`corenet_udp_send_mysqld_port',`
6181 ## </param>
6182 ## <infoflow type="none"/>
6183 #
6184 -interface(`corenet_dontaudit_udp_send_mysqld_port',`
6185 +interface(`corenet_dontaudit_udp_send_munin_port',`
6186 gen_require(`
6187 - type mysqld_port_t;
6188 + type munin_port_t;
6189 ')
6190
6191 - dontaudit $1 mysqld_port_t:udp_socket send_msg;
6192 + dontaudit $1 munin_port_t:udp_socket send_msg;
6193 ')
6194
6195 ########################################
6196 ## <summary>
6197 -## Receive UDP traffic on the mysqld port.
6198 +## Receive UDP traffic on the munin port.
6199 ## </summary>
6200 ## <param name="domain">
6201 ## <summary>
6202 @@ -53729,17 +54615,17 @@ interface(`corenet_dontaudit_udp_send_mysqld_port',`
6203 ## </param>
6204 ## <infoflow type="read" weight="10"/>
6205 #
6206 -interface(`corenet_udp_receive_mysqld_port',`
6207 +interface(`corenet_udp_receive_munin_port',`
6208 gen_require(`
6209 - type mysqld_port_t;
6210 + type munin_port_t;
6211 ')
6212
6213 - allow $1 mysqld_port_t:udp_socket recv_msg;
6214 + allow $1 munin_port_t:udp_socket recv_msg;
6215 ')
6216
6217 ########################################
6218 ## <summary>
6219 -## Do not audit attempts to receive UDP traffic on the mysqld port.
6220 +## Do not audit attempts to receive UDP traffic on the munin port.
6221 ## </summary>
6222 ## <param name="domain">
6223 ## <summary>
6224 @@ -53748,17 +54634,17 @@ interface(`corenet_udp_receive_mysqld_port',`
6225 ## </param>
6226 ## <infoflow type="none"/>
6227 #
6228 -interface(`corenet_dontaudit_udp_receive_mysqld_port',`
6229 +interface(`corenet_dontaudit_udp_receive_munin_port',`
6230 gen_require(`
6231 - type mysqld_port_t;
6232 + type munin_port_t;
6233 ')
6234
6235 - dontaudit $1 mysqld_port_t:udp_socket recv_msg;
6236 + dontaudit $1 munin_port_t:udp_socket recv_msg;
6237 ')
6238
6239 ########################################
6240 ## <summary>
6241 -## Send and receive UDP traffic on the mysqld port.
6242 +## Send and receive UDP traffic on the munin port.
6243 ## </summary>
6244 ## <param name="domain">
6245 ## <summary>
6246 @@ -53767,15 +54653,15 @@ interface(`corenet_dontaudit_udp_receive_mysqld_port',`
6247 ## </param>
6248 ## <infoflow type="both" weight="10"/>
6249 #
6250 -interface(`corenet_udp_sendrecv_mysqld_port',`
6251 - corenet_udp_send_mysqld_port($1)
6252 - corenet_udp_receive_mysqld_port($1)
6253 +interface(`corenet_udp_sendrecv_munin_port',`
6254 + corenet_udp_send_munin_port($1)
6255 + corenet_udp_receive_munin_port($1)
6256 ')
6257
6258 ########################################
6259 ## <summary>
6260 ## Do not audit attempts to send and receive
6261 -## UDP traffic on the mysqld port.
6262 +## UDP traffic on the munin port.
6263 ## </summary>
6264 ## <param name="domain">
6265 ## <summary>
6266 @@ -53784,14 +54670,14 @@ interface(`corenet_udp_sendrecv_mysqld_port',`
6267 ## </param>
6268 ## <infoflow type="none"/>
6269 #
6270 -interface(`corenet_dontaudit_udp_sendrecv_mysqld_port',`
6271 - corenet_dontaudit_udp_send_mysqld_port($1)
6272 - corenet_dontaudit_udp_receive_mysqld_port($1)
6273 +interface(`corenet_dontaudit_udp_sendrecv_munin_port',`
6274 + corenet_dontaudit_udp_send_munin_port($1)
6275 + corenet_dontaudit_udp_receive_munin_port($1)
6276 ')
6277
6278 ########################################
6279 ## <summary>
6280 -## Bind TCP sockets to the mysqld port.
6281 +## Bind TCP sockets to the munin port.
6282 ## </summary>
6283 ## <param name="domain">
6284 ## <summary>
6285 @@ -53800,18 +54686,18 @@ interface(`corenet_dontaudit_udp_sendrecv_mysqld_port',`
6286 ## </param>
6287 ## <infoflow type="none"/>
6288 #
6289 -interface(`corenet_tcp_bind_mysqld_port',`
6290 +interface(`corenet_tcp_bind_munin_port',`
6291 gen_require(`
6292 - type mysqld_port_t;
6293 + type munin_port_t;
6294 ')
6295
6296 - allow $1 mysqld_port_t:tcp_socket name_bind;
6297 - allow $1 self:capability net_bind_service;
6298 + allow $1 munin_port_t:tcp_socket name_bind;
6299 +
6300 ')
6301
6302 ########################################
6303 ## <summary>
6304 -## Bind UDP sockets to the mysqld port.
6305 +## Bind UDP sockets to the munin port.
6306 ## </summary>
6307 ## <param name="domain">
6308 ## <summary>
6309 @@ -53820,18 +54706,18 @@ interface(`corenet_tcp_bind_mysqld_port',`
6310 ## </param>
6311 ## <infoflow type="none"/>
6312 #
6313 -interface(`corenet_udp_bind_mysqld_port',`
6314 +interface(`corenet_udp_bind_munin_port',`
6315 gen_require(`
6316 - type mysqld_port_t;
6317 + type munin_port_t;
6318 ')
6319
6320 - allow $1 mysqld_port_t:udp_socket name_bind;
6321 - allow $1 self:capability net_bind_service;
6322 + allow $1 munin_port_t:udp_socket name_bind;
6323 +
6324 ')
6325
6326 ########################################
6327 ## <summary>
6328 -## Make a TCP connection to the mysqld port.
6329 +## Make a TCP connection to the munin port.
6330 ## </summary>
6331 ## <param name="domain">
6332 ## <summary>
6333 @@ -53839,18 +54725,18 @@ interface(`corenet_udp_bind_mysqld_port',`
6334 ## </summary>
6335 ## </param>
6336 #
6337 -interface(`corenet_tcp_connect_mysqld_port',`
6338 +interface(`corenet_tcp_connect_munin_port',`
6339 gen_require(`
6340 - type mysqld_port_t;
6341 + type munin_port_t;
6342 ')
6343
6344 - allow $1 mysqld_port_t:tcp_socket name_connect;
6345 + allow $1 munin_port_t:tcp_socket name_connect;
6346 ')
6347
6348
6349 ########################################
6350 ## <summary>
6351 -## Send mysqld_client packets.
6352 +## Send munin_client packets.
6353 ## </summary>
6354 ## <param name="domain">
6355 ## <summary>
6356 @@ -53859,17 +54745,17 @@ interface(`corenet_tcp_connect_mysqld_port',`
6357 ## </param>
6358 ## <infoflow type="write" weight="10"/>
6359 #
6360 -interface(`corenet_send_mysqld_client_packets',`
6361 +interface(`corenet_send_munin_client_packets',`
6362 gen_require(`
6363 - type mysqld_client_packet_t;
6364 + type munin_client_packet_t;
6365 ')
6366
6367 - allow $1 mysqld_client_packet_t:packet send;
6368 + allow $1 munin_client_packet_t:packet send;
6369 ')
6370
6371 ########################################
6372 ## <summary>
6373 -## Do not audit attempts to send mysqld_client packets.
6374 +## Do not audit attempts to send munin_client packets.
6375 ## </summary>
6376 ## <param name="domain">
6377 ## <summary>
6378 @@ -53878,17 +54764,17 @@ interface(`corenet_send_mysqld_client_packets',`
6379 ## </param>
6380 ## <infoflow type="none"/>
6381 #
6382 -interface(`corenet_dontaudit_send_mysqld_client_packets',`
6383 +interface(`corenet_dontaudit_send_munin_client_packets',`
6384 gen_require(`
6385 - type mysqld_client_packet_t;
6386 + type munin_client_packet_t;
6387 ')
6388
6389 - dontaudit $1 mysqld_client_packet_t:packet send;
6390 + dontaudit $1 munin_client_packet_t:packet send;
6391 ')
6392
6393 ########################################
6394 ## <summary>
6395 -## Receive mysqld_client packets.
6396 +## Receive munin_client packets.
6397 ## </summary>
6398 ## <param name="domain">
6399 ## <summary>
6400 @@ -53897,17 +54783,17 @@ interface(`corenet_dontaudit_send_mysqld_client_packets',`
6401 ## </param>
6402 ## <infoflow type="read" weight="10"/>
6403 #
6404 -interface(`corenet_receive_mysqld_client_packets',`
6405 +interface(`corenet_receive_munin_client_packets',`
6406 gen_require(`
6407 - type mysqld_client_packet_t;
6408 + type munin_client_packet_t;
6409 ')
6410
6411 - allow $1 mysqld_client_packet_t:packet recv;
6412 + allow $1 munin_client_packet_t:packet recv;
6413 ')
6414
6415 ########################################
6416 ## <summary>
6417 -## Do not audit attempts to receive mysqld_client packets.
6418 +## Do not audit attempts to receive munin_client packets.
6419 ## </summary>
6420 ## <param name="domain">
6421 ## <summary>
6422 @@ -53916,17 +54802,17 @@ interface(`corenet_receive_mysqld_client_packets',`
6423 ## </param>
6424 ## <infoflow type="none"/>
6425 #
6426 -interface(`corenet_dontaudit_receive_mysqld_client_packets',`
6427 +interface(`corenet_dontaudit_receive_munin_client_packets',`
6428 gen_require(`
6429 - type mysqld_client_packet_t;
6430 + type munin_client_packet_t;
6431 ')
6432
6433 - dontaudit $1 mysqld_client_packet_t:packet recv;
6434 + dontaudit $1 munin_client_packet_t:packet recv;
6435 ')
6436
6437 ########################################
6438 ## <summary>
6439 -## Send and receive mysqld_client packets.
6440 +## Send and receive munin_client packets.
6441 ## </summary>
6442 ## <param name="domain">
6443 ## <summary>
6444 @@ -53935,14 +54821,14 @@ interface(`corenet_dontaudit_receive_mysqld_client_packets',`
6445 ## </param>
6446 ## <infoflow type="both" weight="10"/>
6447 #
6448 -interface(`corenet_sendrecv_mysqld_client_packets',`
6449 - corenet_send_mysqld_client_packets($1)
6450 - corenet_receive_mysqld_client_packets($1)
6451 +interface(`corenet_sendrecv_munin_client_packets',`
6452 + corenet_send_munin_client_packets($1)
6453 + corenet_receive_munin_client_packets($1)
6454 ')
6455
6456 ########################################
6457 ## <summary>
6458 -## Do not audit attempts to send and receive mysqld_client packets.
6459 +## Do not audit attempts to send and receive munin_client packets.
6460 ## </summary>
6461 ## <param name="domain">
6462 ## <summary>
6463 @@ -53951,14 +54837,14 @@ interface(`corenet_sendrecv_mysqld_client_packets',`
6464 ## </param>
6465 ## <infoflow type="none"/>
6466 #
6467 -interface(`corenet_dontaudit_sendrecv_mysqld_client_packets',`
6468 - corenet_dontaudit_send_mysqld_client_packets($1)
6469 - corenet_dontaudit_receive_mysqld_client_packets($1)
6470 +interface(`corenet_dontaudit_sendrecv_munin_client_packets',`
6471 + corenet_dontaudit_send_munin_client_packets($1)
6472 + corenet_dontaudit_receive_munin_client_packets($1)
6473 ')
6474
6475 ########################################
6476 ## <summary>
6477 -## Relabel packets to mysqld_client the packet type.
6478 +## Relabel packets to munin_client the packet type.
6479 ## </summary>
6480 ## <param name="domain">
6481 ## <summary>
6482 @@ -53966,18 +54852,18 @@ interface(`corenet_dontaudit_sendrecv_mysqld_client_packets',`
6483 ## </summary>
6484 ## </param>
6485 #
6486 -interface(`corenet_relabelto_mysqld_client_packets',`
6487 +interface(`corenet_relabelto_munin_client_packets',`
6488 gen_require(`
6489 - type mysqld_client_packet_t;
6490 + type munin_client_packet_t;
6491 ')
6492
6493 - allow $1 mysqld_client_packet_t:packet relabelto;
6494 + allow $1 munin_client_packet_t:packet relabelto;
6495 ')
6496
6497
6498 ########################################
6499 ## <summary>
6500 -## Send mysqld_server packets.
6501 +## Send munin_server packets.
6502 ## </summary>
6503 ## <param name="domain">
6504 ## <summary>
6505 @@ -53986,17 +54872,17 @@ interface(`corenet_relabelto_mysqld_client_packets',`
6506 ## </param>
6507 ## <infoflow type="write" weight="10"/>
6508 #
6509 -interface(`corenet_send_mysqld_server_packets',`
6510 +interface(`corenet_send_munin_server_packets',`
6511 gen_require(`
6512 - type mysqld_server_packet_t;
6513 + type munin_server_packet_t;
6514 ')
6515
6516 - allow $1 mysqld_server_packet_t:packet send;
6517 + allow $1 munin_server_packet_t:packet send;
6518 ')
6519
6520 ########################################
6521 ## <summary>
6522 -## Do not audit attempts to send mysqld_server packets.
6523 +## Do not audit attempts to send munin_server packets.
6524 ## </summary>
6525 ## <param name="domain">
6526 ## <summary>
6527 @@ -54005,17 +54891,17 @@ interface(`corenet_send_mysqld_server_packets',`
6528 ## </param>
6529 ## <infoflow type="none"/>
6530 #
6531 -interface(`corenet_dontaudit_send_mysqld_server_packets',`
6532 +interface(`corenet_dontaudit_send_munin_server_packets',`
6533 gen_require(`
6534 - type mysqld_server_packet_t;
6535 + type munin_server_packet_t;
6536 ')
6537
6538 - dontaudit $1 mysqld_server_packet_t:packet send;
6539 + dontaudit $1 munin_server_packet_t:packet send;
6540 ')
6541
6542 ########################################
6543 ## <summary>
6544 -## Receive mysqld_server packets.
6545 +## Receive munin_server packets.
6546 ## </summary>
6547 ## <param name="domain">
6548 ## <summary>
6549 @@ -54024,17 +54910,17 @@ interface(`corenet_dontaudit_send_mysqld_server_packets',`
6550 ## </param>
6551 ## <infoflow type="read" weight="10"/>
6552 #
6553 -interface(`corenet_receive_mysqld_server_packets',`
6554 +interface(`corenet_receive_munin_server_packets',`
6555 gen_require(`
6556 - type mysqld_server_packet_t;
6557 + type munin_server_packet_t;
6558 ')
6559
6560 - allow $1 mysqld_server_packet_t:packet recv;
6561 + allow $1 munin_server_packet_t:packet recv;
6562 ')
6563
6564 ########################################
6565 ## <summary>
6566 -## Do not audit attempts to receive mysqld_server packets.
6567 +## Do not audit attempts to receive munin_server packets.
6568 ## </summary>
6569 ## <param name="domain">
6570 ## <summary>
6571 @@ -54043,17 +54929,17 @@ interface(`corenet_receive_mysqld_server_packets',`
6572 ## </param>
6573 ## <infoflow type="none"/>
6574 #
6575 -interface(`corenet_dontaudit_receive_mysqld_server_packets',`
6576 +interface(`corenet_dontaudit_receive_munin_server_packets',`
6577 gen_require(`
6578 - type mysqld_server_packet_t;
6579 + type munin_server_packet_t;
6580 ')
6581
6582 - dontaudit $1 mysqld_server_packet_t:packet recv;
6583 + dontaudit $1 munin_server_packet_t:packet recv;
6584 ')
6585
6586 ########################################
6587 ## <summary>
6588 -## Send and receive mysqld_server packets.
6589 +## Send and receive munin_server packets.
6590 ## </summary>
6591 ## <param name="domain">
6592 ## <summary>
6593 @@ -54062,14 +54948,14 @@ interface(`corenet_dontaudit_receive_mysqld_server_packets',`
6594 ## </param>
6595 ## <infoflow type="both" weight="10"/>
6596 #
6597 -interface(`corenet_sendrecv_mysqld_server_packets',`
6598 - corenet_send_mysqld_server_packets($1)
6599 - corenet_receive_mysqld_server_packets($1)
6600 +interface(`corenet_sendrecv_munin_server_packets',`
6601 + corenet_send_munin_server_packets($1)
6602 + corenet_receive_munin_server_packets($1)
6603 ')
6604
6605 ########################################
6606 ## <summary>
6607 -## Do not audit attempts to send and receive mysqld_server packets.
6608 +## Do not audit attempts to send and receive munin_server packets.
6609 ## </summary>
6610 ## <param name="domain">
6611 ## <summary>
6612 @@ -54078,14 +54964,14 @@ interface(`corenet_sendrecv_mysqld_server_packets',`
6613 ## </param>
6614 ## <infoflow type="none"/>
6615 #
6616 -interface(`corenet_dontaudit_sendrecv_mysqld_server_packets',`
6617 - corenet_dontaudit_send_mysqld_server_packets($1)
6618 - corenet_dontaudit_receive_mysqld_server_packets($1)
6619 +interface(`corenet_dontaudit_sendrecv_munin_server_packets',`
6620 + corenet_dontaudit_send_munin_server_packets($1)
6621 + corenet_dontaudit_receive_munin_server_packets($1)
6622 ')
6623
6624 ########################################
6625 ## <summary>
6626 -## Relabel packets to mysqld_server the packet type.
6627 +## Relabel packets to munin_server the packet type.
6628 ## </summary>
6629 ## <param name="domain">
6630 ## <summary>
6631 @@ -54093,12 +54979,12 @@ interface(`corenet_dontaudit_sendrecv_mysqld_server_packets',`
6632 ## </summary>
6633 ## </param>
6634 #
6635 -interface(`corenet_relabelto_mysqld_server_packets',`
6636 +interface(`corenet_relabelto_munin_server_packets',`
6637 gen_require(`
6638 - type mysqld_server_packet_t;
6639 + type munin_server_packet_t;
6640 ')
6641
6642 - allow $1 mysqld_server_packet_t:packet relabelto;
6643 + allow $1 munin_server_packet_t:packet relabelto;
6644 ')
6645
6646
6647 @@ -54106,7 +54992,7 @@ interface(`corenet_relabelto_mysqld_server_packets',`
6648
6649 ########################################
6650 ## <summary>
6651 -## Send and receive TCP traffic on the mysqlmanagerd port.
6652 +## Send and receive TCP traffic on the mxi port.
6653 ## </summary>
6654 ## <param name="domain">
6655 ## <summary>
6656 @@ -54115,17 +55001,17 @@ interface(`corenet_relabelto_mysqld_server_packets',`
6657 ## </param>
6658 ## <infoflow type="both" weight="10"/>
6659 #
6660 -interface(`corenet_tcp_sendrecv_mysqlmanagerd_port',`
6661 +interface(`corenet_tcp_sendrecv_mxi_port',`
6662 gen_require(`
6663 - type mysqlmanagerd_port_t;
6664 + type mxi_port_t;
6665 ')
6666
6667 - allow $1 mysqlmanagerd_port_t:tcp_socket { send_msg recv_msg };
6668 + allow $1 mxi_port_t:tcp_socket { send_msg recv_msg };
6669 ')
6670
6671 ########################################
6672 ## <summary>
6673 -## Send UDP traffic on the mysqlmanagerd port.
6674 +## Send UDP traffic on the mxi port.
6675 ## </summary>
6676 ## <param name="domain">
6677 ## <summary>
6678 @@ -54134,17 +55020,17 @@ interface(`corenet_tcp_sendrecv_mysqlmanagerd_port',`
6679 ## </param>
6680 ## <infoflow type="write" weight="10"/>
6681 #
6682 -interface(`corenet_udp_send_mysqlmanagerd_port',`
6683 +interface(`corenet_udp_send_mxi_port',`
6684 gen_require(`
6685 - type mysqlmanagerd_port_t;
6686 + type mxi_port_t;
6687 ')
6688
6689 - allow $1 mysqlmanagerd_port_t:udp_socket send_msg;
6690 + allow $1 mxi_port_t:udp_socket send_msg;
6691 ')
6692
6693 ########################################
6694 ## <summary>
6695 -## Do not audit attempts to send UDP traffic on the mysqlmanagerd port.
6696 +## Do not audit attempts to send UDP traffic on the mxi port.
6697 ## </summary>
6698 ## <param name="domain">
6699 ## <summary>
6700 @@ -54153,17 +55039,17 @@ interface(`corenet_udp_send_mysqlmanagerd_port',`
6701 ## </param>
6702 ## <infoflow type="none"/>
6703 #
6704 -interface(`corenet_dontaudit_udp_send_mysqlmanagerd_port',`
6705 +interface(`corenet_dontaudit_udp_send_mxi_port',`
6706 gen_require(`
6707 - type mysqlmanagerd_port_t;
6708 + type mxi_port_t;
6709 ')
6710
6711 - dontaudit $1 mysqlmanagerd_port_t:udp_socket send_msg;
6712 + dontaudit $1 mxi_port_t:udp_socket send_msg;
6713 ')
6714
6715 ########################################
6716 ## <summary>
6717 -## Receive UDP traffic on the mysqlmanagerd port.
6718 +## Receive UDP traffic on the mxi port.
6719 ## </summary>
6720 ## <param name="domain">
6721 ## <summary>
6722 @@ -54172,17 +55058,17 @@ interface(`corenet_dontaudit_udp_send_mysqlmanagerd_port',`
6723 ## </param>
6724 ## <infoflow type="read" weight="10"/>
6725 #
6726 -interface(`corenet_udp_receive_mysqlmanagerd_port',`
6727 +interface(`corenet_udp_receive_mxi_port',`
6728 gen_require(`
6729 - type mysqlmanagerd_port_t;
6730 + type mxi_port_t;
6731 ')
6732
6733 - allow $1 mysqlmanagerd_port_t:udp_socket recv_msg;
6734 + allow $1 mxi_port_t:udp_socket recv_msg;
6735 ')
6736
6737 ########################################
6738 ## <summary>
6739 -## Do not audit attempts to receive UDP traffic on the mysqlmanagerd port.
6740 +## Do not audit attempts to receive UDP traffic on the mxi port.
6741 ## </summary>
6742 ## <param name="domain">
6743 ## <summary>
6744 @@ -54191,17 +55077,17 @@ interface(`corenet_udp_receive_mysqlmanagerd_port',`
6745 ## </param>
6746 ## <infoflow type="none"/>
6747 #
6748 -interface(`corenet_dontaudit_udp_receive_mysqlmanagerd_port',`
6749 +interface(`corenet_dontaudit_udp_receive_mxi_port',`
6750 gen_require(`
6751 - type mysqlmanagerd_port_t;
6752 + type mxi_port_t;
6753 ')
6754
6755 - dontaudit $1 mysqlmanagerd_port_t:udp_socket recv_msg;
6756 + dontaudit $1 mxi_port_t:udp_socket recv_msg;
6757 ')
6758
6759 ########################################
6760 ## <summary>
6761 -## Send and receive UDP traffic on the mysqlmanagerd port.
6762 +## Send and receive UDP traffic on the mxi port.
6763 ## </summary>
6764 ## <param name="domain">
6765 ## <summary>
6766 @@ -54210,15 +55096,15 @@ interface(`corenet_dontaudit_udp_receive_mysqlmanagerd_port',`
6767 ## </param>
6768 ## <infoflow type="both" weight="10"/>
6769 #
6770 -interface(`corenet_udp_sendrecv_mysqlmanagerd_port',`
6771 - corenet_udp_send_mysqlmanagerd_port($1)
6772 - corenet_udp_receive_mysqlmanagerd_port($1)
6773 +interface(`corenet_udp_sendrecv_mxi_port',`
6774 + corenet_udp_send_mxi_port($1)
6775 + corenet_udp_receive_mxi_port($1)
6776 ')
6777
6778 ########################################
6779 ## <summary>
6780 ## Do not audit attempts to send and receive
6781 -## UDP traffic on the mysqlmanagerd port.
6782 +## UDP traffic on the mxi port.
6783 ## </summary>
6784 ## <param name="domain">
6785 ## <summary>
6786 @@ -54227,14 +55113,14 @@ interface(`corenet_udp_sendrecv_mysqlmanagerd_port',`
6787 ## </param>
6788 ## <infoflow type="none"/>
6789 #
6790 -interface(`corenet_dontaudit_udp_sendrecv_mysqlmanagerd_port',`
6791 - corenet_dontaudit_udp_send_mysqlmanagerd_port($1)
6792 - corenet_dontaudit_udp_receive_mysqlmanagerd_port($1)
6793 +interface(`corenet_dontaudit_udp_sendrecv_mxi_port',`
6794 + corenet_dontaudit_udp_send_mxi_port($1)
6795 + corenet_dontaudit_udp_receive_mxi_port($1)
6796 ')
6797
6798 ########################################
6799 ## <summary>
6800 -## Bind TCP sockets to the mysqlmanagerd port.
6801 +## Bind TCP sockets to the mxi port.
6802 ## </summary>
6803 ## <param name="domain">
6804 ## <summary>
6805 @@ -54243,18 +55129,18 @@ interface(`corenet_dontaudit_udp_sendrecv_mysqlmanagerd_port',`
6806 ## </param>
6807 ## <infoflow type="none"/>
6808 #
6809 -interface(`corenet_tcp_bind_mysqlmanagerd_port',`
6810 +interface(`corenet_tcp_bind_mxi_port',`
6811 gen_require(`
6812 - type mysqlmanagerd_port_t;
6813 + type mxi_port_t;
6814 ')
6815
6816 - allow $1 mysqlmanagerd_port_t:tcp_socket name_bind;
6817 + allow $1 mxi_port_t:tcp_socket name_bind;
6818
6819 ')
6820
6821 ########################################
6822 ## <summary>
6823 -## Bind UDP sockets to the mysqlmanagerd port.
6824 +## Bind UDP sockets to the mxi port.
6825 ## </summary>
6826 ## <param name="domain">
6827 ## <summary>
6828 @@ -54263,18 +55149,18 @@ interface(`corenet_tcp_bind_mysqlmanagerd_port',`
6829 ## </param>
6830 ## <infoflow type="none"/>
6831 #
6832 -interface(`corenet_udp_bind_mysqlmanagerd_port',`
6833 +interface(`corenet_udp_bind_mxi_port',`
6834 gen_require(`
6835 - type mysqlmanagerd_port_t;
6836 + type mxi_port_t;
6837 ')
6838
6839 - allow $1 mysqlmanagerd_port_t:udp_socket name_bind;
6840 + allow $1 mxi_port_t:udp_socket name_bind;
6841
6842 ')
6843
6844 ########################################
6845 ## <summary>
6846 -## Make a TCP connection to the mysqlmanagerd port.
6847 +## Make a TCP connection to the mxi port.
6848 ## </summary>
6849 ## <param name="domain">
6850 ## <summary>
6851 @@ -54282,18 +55168,18 @@ interface(`corenet_udp_bind_mysqlmanagerd_port',`
6852 ## </summary>
6853 ## </param>
6854 #
6855 -interface(`corenet_tcp_connect_mysqlmanagerd_port',`
6856 +interface(`corenet_tcp_connect_mxi_port',`
6857 gen_require(`
6858 - type mysqlmanagerd_port_t;
6859 + type mxi_port_t;
6860 ')
6861
6862 - allow $1 mysqlmanagerd_port_t:tcp_socket name_connect;
6863 + allow $1 mxi_port_t:tcp_socket name_connect;
6864 ')
6865
6866
6867 ########################################
6868 ## <summary>
6869 -## Send mysqlmanagerd_client packets.
6870 +## Send mxi_client packets.
6871 ## </summary>
6872 ## <param name="domain">
6873 ## <summary>
6874 @@ -54302,17 +55188,17 @@ interface(`corenet_tcp_connect_mysqlmanagerd_port',`
6875 ## </param>
6876 ## <infoflow type="write" weight="10"/>
6877 #
6878 -interface(`corenet_send_mysqlmanagerd_client_packets',`
6879 +interface(`corenet_send_mxi_client_packets',`
6880 gen_require(`
6881 - type mysqlmanagerd_client_packet_t;
6882 + type mxi_client_packet_t;
6883 ')
6884
6885 - allow $1 mysqlmanagerd_client_packet_t:packet send;
6886 + allow $1 mxi_client_packet_t:packet send;
6887 ')
6888
6889 ########################################
6890 ## <summary>
6891 -## Do not audit attempts to send mysqlmanagerd_client packets.
6892 +## Do not audit attempts to send mxi_client packets.
6893 ## </summary>
6894 ## <param name="domain">
6895 ## <summary>
6896 @@ -54321,17 +55207,17 @@ interface(`corenet_send_mysqlmanagerd_client_packets',`
6897 ## </param>
6898 ## <infoflow type="none"/>
6899 #
6900 -interface(`corenet_dontaudit_send_mysqlmanagerd_client_packets',`
6901 +interface(`corenet_dontaudit_send_mxi_client_packets',`
6902 gen_require(`
6903 - type mysqlmanagerd_client_packet_t;
6904 + type mxi_client_packet_t;
6905 ')
6906
6907 - dontaudit $1 mysqlmanagerd_client_packet_t:packet send;
6908 + dontaudit $1 mxi_client_packet_t:packet send;
6909 ')
6910
6911 ########################################
6912 ## <summary>
6913 -## Receive mysqlmanagerd_client packets.
6914 +## Receive mxi_client packets.
6915 ## </summary>
6916 ## <param name="domain">
6917 ## <summary>
6918 @@ -54340,17 +55226,17 @@ interface(`corenet_dontaudit_send_mysqlmanagerd_client_packets',`
6919 ## </param>
6920 ## <infoflow type="read" weight="10"/>
6921 #
6922 -interface(`corenet_receive_mysqlmanagerd_client_packets',`
6923 +interface(`corenet_receive_mxi_client_packets',`
6924 gen_require(`
6925 - type mysqlmanagerd_client_packet_t;
6926 + type mxi_client_packet_t;
6927 ')
6928
6929 - allow $1 mysqlmanagerd_client_packet_t:packet recv;
6930 + allow $1 mxi_client_packet_t:packet recv;
6931 ')
6932
6933 ########################################
6934 ## <summary>
6935 -## Do not audit attempts to receive mysqlmanagerd_client packets.
6936 +## Do not audit attempts to receive mxi_client packets.
6937 ## </summary>
6938 ## <param name="domain">
6939 ## <summary>
6940 @@ -54359,17 +55245,17 @@ interface(`corenet_receive_mysqlmanagerd_client_packets',`
6941 ## </param>
6942 ## <infoflow type="none"/>
6943 #
6944 -interface(`corenet_dontaudit_receive_mysqlmanagerd_client_packets',`
6945 +interface(`corenet_dontaudit_receive_mxi_client_packets',`
6946 gen_require(`
6947 - type mysqlmanagerd_client_packet_t;
6948 + type mxi_client_packet_t;
6949 ')
6950
6951 - dontaudit $1 mysqlmanagerd_client_packet_t:packet recv;
6952 + dontaudit $1 mxi_client_packet_t:packet recv;
6953 ')
6954
6955 ########################################
6956 ## <summary>
6957 -## Send and receive mysqlmanagerd_client packets.
6958 +## Send and receive mxi_client packets.
6959 ## </summary>
6960 ## <param name="domain">
6961 ## <summary>
6962 @@ -54378,14 +55264,14 @@ interface(`corenet_dontaudit_receive_mysqlmanagerd_client_packets',`
6963 ## </param>
6964 ## <infoflow type="both" weight="10"/>
6965 #
6966 -interface(`corenet_sendrecv_mysqlmanagerd_client_packets',`
6967 - corenet_send_mysqlmanagerd_client_packets($1)
6968 - corenet_receive_mysqlmanagerd_client_packets($1)
6969 +interface(`corenet_sendrecv_mxi_client_packets',`
6970 + corenet_send_mxi_client_packets($1)
6971 + corenet_receive_mxi_client_packets($1)
6972 ')
6973
6974 ########################################
6975 ## <summary>
6976 -## Do not audit attempts to send and receive mysqlmanagerd_client packets.
6977 +## Do not audit attempts to send and receive mxi_client packets.
6978 ## </summary>
6979 ## <param name="domain">
6980 ## <summary>
6981 @@ -54394,14 +55280,14 @@ interface(`corenet_sendrecv_mysqlmanagerd_client_packets',`
6982 ## </param>
6983 ## <infoflow type="none"/>
6984 #
6985 -interface(`corenet_dontaudit_sendrecv_mysqlmanagerd_client_packets',`
6986 - corenet_dontaudit_send_mysqlmanagerd_client_packets($1)
6987 - corenet_dontaudit_receive_mysqlmanagerd_client_packets($1)
6988 +interface(`corenet_dontaudit_sendrecv_mxi_client_packets',`
6989 + corenet_dontaudit_send_mxi_client_packets($1)
6990 + corenet_dontaudit_receive_mxi_client_packets($1)
6991 ')
6992
6993 ########################################
6994 ## <summary>
6995 -## Relabel packets to mysqlmanagerd_client the packet type.
6996 +## Relabel packets to mxi_client the packet type.
6997 ## </summary>
6998 ## <param name="domain">
6999 ## <summary>
7000 @@ -54409,18 +55295,18 @@ interface(`corenet_dontaudit_sendrecv_mysqlmanagerd_client_packets',`
7001 ## </summary>
7002 ## </param>
7003 #
7004 -interface(`corenet_relabelto_mysqlmanagerd_client_packets',`
7005 +interface(`corenet_relabelto_mxi_client_packets',`
7006 gen_require(`
7007 - type mysqlmanagerd_client_packet_t;
7008 + type mxi_client_packet_t;
7009 ')
7010
7011 - allow $1 mysqlmanagerd_client_packet_t:packet relabelto;
7012 + allow $1 mxi_client_packet_t:packet relabelto;
7013 ')
7014
7015
7016 ########################################
7017 ## <summary>
7018 -## Send mysqlmanagerd_server packets.
7019 +## Send mxi_server packets.
7020 ## </summary>
7021 ## <param name="domain">
7022 ## <summary>
7023 @@ -54429,17 +55315,17 @@ interface(`corenet_relabelto_mysqlmanagerd_client_packets',`
7024 ## </param>
7025 ## <infoflow type="write" weight="10"/>
7026 #
7027 -interface(`corenet_send_mysqlmanagerd_server_packets',`
7028 +interface(`corenet_send_mxi_server_packets',`
7029 gen_require(`
7030 - type mysqlmanagerd_server_packet_t;
7031 + type mxi_server_packet_t;
7032 ')
7033
7034 - allow $1 mysqlmanagerd_server_packet_t:packet send;
7035 + allow $1 mxi_server_packet_t:packet send;
7036 ')
7037
7038 ########################################
7039 ## <summary>
7040 -## Do not audit attempts to send mysqlmanagerd_server packets.
7041 +## Do not audit attempts to send mxi_server packets.
7042 ## </summary>
7043 ## <param name="domain">
7044 ## <summary>
7045 @@ -54448,17 +55334,17 @@ interface(`corenet_send_mysqlmanagerd_server_packets',`
7046 ## </param>
7047 ## <infoflow type="none"/>
7048 #
7049 -interface(`corenet_dontaudit_send_mysqlmanagerd_server_packets',`
7050 +interface(`corenet_dontaudit_send_mxi_server_packets',`
7051 gen_require(`
7052 - type mysqlmanagerd_server_packet_t;
7053 + type mxi_server_packet_t;
7054 ')
7055
7056 - dontaudit $1 mysqlmanagerd_server_packet_t:packet send;
7057 + dontaudit $1 mxi_server_packet_t:packet send;
7058 ')
7059
7060 ########################################
7061 ## <summary>
7062 -## Receive mysqlmanagerd_server packets.
7063 +## Receive mxi_server packets.
7064 ## </summary>
7065 ## <param name="domain">
7066 ## <summary>
7067 @@ -54467,17 +55353,17 @@ interface(`corenet_dontaudit_send_mysqlmanagerd_server_packets',`
7068 ## </param>
7069 ## <infoflow type="read" weight="10"/>
7070 #
7071 -interface(`corenet_receive_mysqlmanagerd_server_packets',`
7072 +interface(`corenet_receive_mxi_server_packets',`
7073 gen_require(`
7074 - type mysqlmanagerd_server_packet_t;
7075 + type mxi_server_packet_t;
7076 ')
7077
7078 - allow $1 mysqlmanagerd_server_packet_t:packet recv;
7079 + allow $1 mxi_server_packet_t:packet recv;
7080 ')
7081
7082 ########################################
7083 ## <summary>
7084 -## Do not audit attempts to receive mysqlmanagerd_server packets.
7085 +## Do not audit attempts to receive mxi_server packets.
7086 ## </summary>
7087 ## <param name="domain">
7088 ## <summary>
7089 @@ -54486,17 +55372,17 @@ interface(`corenet_receive_mysqlmanagerd_server_packets',`
7090 ## </param>
7091 ## <infoflow type="none"/>
7092 #
7093 -interface(`corenet_dontaudit_receive_mysqlmanagerd_server_packets',`
7094 +interface(`corenet_dontaudit_receive_mxi_server_packets',`
7095 gen_require(`
7096 - type mysqlmanagerd_server_packet_t;
7097 + type mxi_server_packet_t;
7098 ')
7099
7100 - dontaudit $1 mysqlmanagerd_server_packet_t:packet recv;
7101 + dontaudit $1 mxi_server_packet_t:packet recv;
7102 ')
7103
7104 ########################################
7105 ## <summary>
7106 -## Send and receive mysqlmanagerd_server packets.
7107 +## Send and receive mxi_server packets.
7108 ## </summary>
7109 ## <param name="domain">
7110 ## <summary>
7111 @@ -54505,14 +55391,14 @@ interface(`corenet_dontaudit_receive_mysqlmanagerd_server_packets',`
7112 ## </param>
7113 ## <infoflow type="both" weight="10"/>
7114 #
7115 -interface(`corenet_sendrecv_mysqlmanagerd_server_packets',`
7116 - corenet_send_mysqlmanagerd_server_packets($1)
7117 - corenet_receive_mysqlmanagerd_server_packets($1)
7118 +interface(`corenet_sendrecv_mxi_server_packets',`
7119 + corenet_send_mxi_server_packets($1)
7120 + corenet_receive_mxi_server_packets($1)
7121 ')
7122
7123 ########################################
7124 ## <summary>
7125 -## Do not audit attempts to send and receive mysqlmanagerd_server packets.
7126 +## Do not audit attempts to send and receive mxi_server packets.
7127 ## </summary>
7128 ## <param name="domain">
7129 ## <summary>
7130 @@ -54521,14 +55407,14 @@ interface(`corenet_sendrecv_mysqlmanagerd_server_packets',`
7131 ## </param>
7132 ## <infoflow type="none"/>
7133 #
7134 -interface(`corenet_dontaudit_sendrecv_mysqlmanagerd_server_packets',`
7135 - corenet_dontaudit_send_mysqlmanagerd_server_packets($1)
7136 - corenet_dontaudit_receive_mysqlmanagerd_server_packets($1)
7137 +interface(`corenet_dontaudit_sendrecv_mxi_server_packets',`
7138 + corenet_dontaudit_send_mxi_server_packets($1)
7139 + corenet_dontaudit_receive_mxi_server_packets($1)
7140 ')
7141
7142 ########################################
7143 ## <summary>
7144 -## Relabel packets to mysqlmanagerd_server the packet type.
7145 +## Relabel packets to mxi_server the packet type.
7146 ## </summary>
7147 ## <param name="domain">
7148 ## <summary>
7149 @@ -54536,12 +55422,12 @@ interface(`corenet_dontaudit_sendrecv_mysqlmanagerd_server_packets',`
7150 ## </summary>
7151 ## </param>
7152 #
7153 -interface(`corenet_relabelto_mysqlmanagerd_server_packets',`
7154 +interface(`corenet_relabelto_mxi_server_packets',`
7155 gen_require(`
7156 - type mysqlmanagerd_server_packet_t;
7157 + type mxi_server_packet_t;
7158 ')
7159
7160 - allow $1 mysqlmanagerd_server_packet_t:packet relabelto;
7161 + allow $1 mxi_server_packet_t:packet relabelto;
7162 ')
7163
7164
7165 @@ -54549,7 +55435,7 @@ interface(`corenet_relabelto_mysqlmanagerd_server_packets',`
7166
7167 ########################################
7168 ## <summary>
7169 -## Send and receive TCP traffic on the nessus port.
7170 +## Send and receive TCP traffic on the mysqld port.
7171 ## </summary>
7172 ## <param name="domain">
7173 ## <summary>
7174 @@ -54558,17 +55444,17 @@ interface(`corenet_relabelto_mysqlmanagerd_server_packets',`
7175 ## </param>
7176 ## <infoflow type="both" weight="10"/>
7177 #
7178 -interface(`corenet_tcp_sendrecv_nessus_port',`
7179 +interface(`corenet_tcp_sendrecv_mysqld_port',`
7180 gen_require(`
7181 - type nessus_port_t;
7182 + type mysqld_port_t;
7183 ')
7184
7185 - allow $1 nessus_port_t:tcp_socket { send_msg recv_msg };
7186 + allow $1 mysqld_port_t:tcp_socket { send_msg recv_msg };
7187 ')
7188
7189 ########################################
7190 ## <summary>
7191 -## Send UDP traffic on the nessus port.
7192 +## Send UDP traffic on the mysqld port.
7193 ## </summary>
7194 ## <param name="domain">
7195 ## <summary>
7196 @@ -54577,17 +55463,17 @@ interface(`corenet_tcp_sendrecv_nessus_port',`
7197 ## </param>
7198 ## <infoflow type="write" weight="10"/>
7199 #
7200 -interface(`corenet_udp_send_nessus_port',`
7201 +interface(`corenet_udp_send_mysqld_port',`
7202 gen_require(`
7203 - type nessus_port_t;
7204 + type mysqld_port_t;
7205 ')
7206
7207 - allow $1 nessus_port_t:udp_socket send_msg;
7208 + allow $1 mysqld_port_t:udp_socket send_msg;
7209 ')
7210
7211 ########################################
7212 ## <summary>
7213 -## Do not audit attempts to send UDP traffic on the nessus port.
7214 +## Do not audit attempts to send UDP traffic on the mysqld port.
7215 ## </summary>
7216 ## <param name="domain">
7217 ## <summary>
7218 @@ -54596,17 +55482,17 @@ interface(`corenet_udp_send_nessus_port',`
7219 ## </param>
7220 ## <infoflow type="none"/>
7221 #
7222 -interface(`corenet_dontaudit_udp_send_nessus_port',`
7223 +interface(`corenet_dontaudit_udp_send_mysqld_port',`
7224 gen_require(`
7225 - type nessus_port_t;
7226 + type mysqld_port_t;
7227 ')
7228
7229 - dontaudit $1 nessus_port_t:udp_socket send_msg;
7230 + dontaudit $1 mysqld_port_t:udp_socket send_msg;
7231 ')
7232
7233 ########################################
7234 ## <summary>
7235 -## Receive UDP traffic on the nessus port.
7236 +## Receive UDP traffic on the mysqld port.
7237 ## </summary>
7238 ## <param name="domain">
7239 ## <summary>
7240 @@ -54615,17 +55501,17 @@ interface(`corenet_dontaudit_udp_send_nessus_port',`
7241 ## </param>
7242 ## <infoflow type="read" weight="10"/>
7243 #
7244 -interface(`corenet_udp_receive_nessus_port',`
7245 +interface(`corenet_udp_receive_mysqld_port',`
7246 gen_require(`
7247 - type nessus_port_t;
7248 + type mysqld_port_t;
7249 ')
7250
7251 - allow $1 nessus_port_t:udp_socket recv_msg;
7252 + allow $1 mysqld_port_t:udp_socket recv_msg;
7253 ')
7254
7255 ########################################
7256 ## <summary>
7257 -## Do not audit attempts to receive UDP traffic on the nessus port.
7258 +## Do not audit attempts to receive UDP traffic on the mysqld port.
7259 ## </summary>
7260 ## <param name="domain">
7261 ## <summary>
7262 @@ -54634,17 +55520,17 @@ interface(`corenet_udp_receive_nessus_port',`
7263 ## </param>
7264 ## <infoflow type="none"/>
7265 #
7266 -interface(`corenet_dontaudit_udp_receive_nessus_port',`
7267 +interface(`corenet_dontaudit_udp_receive_mysqld_port',`
7268 gen_require(`
7269 - type nessus_port_t;
7270 + type mysqld_port_t;
7271 ')
7272
7273 - dontaudit $1 nessus_port_t:udp_socket recv_msg;
7274 + dontaudit $1 mysqld_port_t:udp_socket recv_msg;
7275 ')
7276
7277 ########################################
7278 ## <summary>
7279 -## Send and receive UDP traffic on the nessus port.
7280 +## Send and receive UDP traffic on the mysqld port.
7281 ## </summary>
7282 ## <param name="domain">
7283 ## <summary>
7284 @@ -54653,15 +55539,15 @@ interface(`corenet_dontaudit_udp_receive_nessus_port',`
7285 ## </param>
7286 ## <infoflow type="both" weight="10"/>
7287 #
7288 -interface(`corenet_udp_sendrecv_nessus_port',`
7289 - corenet_udp_send_nessus_port($1)
7290 - corenet_udp_receive_nessus_port($1)
7291 +interface(`corenet_udp_sendrecv_mysqld_port',`
7292 + corenet_udp_send_mysqld_port($1)
7293 + corenet_udp_receive_mysqld_port($1)
7294 ')
7295
7296 ########################################
7297 ## <summary>
7298 ## Do not audit attempts to send and receive
7299 -## UDP traffic on the nessus port.
7300 +## UDP traffic on the mysqld port.
7301 ## </summary>
7302 ## <param name="domain">
7303 ## <summary>
7304 @@ -54670,14 +55556,14 @@ interface(`corenet_udp_sendrecv_nessus_port',`
7305 ## </param>
7306 ## <infoflow type="none"/>
7307 #
7308 -interface(`corenet_dontaudit_udp_sendrecv_nessus_port',`
7309 - corenet_dontaudit_udp_send_nessus_port($1)
7310 - corenet_dontaudit_udp_receive_nessus_port($1)
7311 +interface(`corenet_dontaudit_udp_sendrecv_mysqld_port',`
7312 + corenet_dontaudit_udp_send_mysqld_port($1)
7313 + corenet_dontaudit_udp_receive_mysqld_port($1)
7314 ')
7315
7316 ########################################
7317 ## <summary>
7318 -## Bind TCP sockets to the nessus port.
7319 +## Bind TCP sockets to the mysqld port.
7320 ## </summary>
7321 ## <param name="domain">
7322 ## <summary>
7323 @@ -54686,18 +55572,18 @@ interface(`corenet_dontaudit_udp_sendrecv_nessus_port',`
7324 ## </param>
7325 ## <infoflow type="none"/>
7326 #
7327 -interface(`corenet_tcp_bind_nessus_port',`
7328 +interface(`corenet_tcp_bind_mysqld_port',`
7329 gen_require(`
7330 - type nessus_port_t;
7331 + type mysqld_port_t;
7332 ')
7333
7334 - allow $1 nessus_port_t:tcp_socket name_bind;
7335 -
7336 + allow $1 mysqld_port_t:tcp_socket name_bind;
7337 + allow $1 self:capability net_bind_service;
7338 ')
7339
7340 ########################################
7341 ## <summary>
7342 -## Bind UDP sockets to the nessus port.
7343 +## Bind UDP sockets to the mysqld port.
7344 ## </summary>
7345 ## <param name="domain">
7346 ## <summary>
7347 @@ -54706,18 +55592,18 @@ interface(`corenet_tcp_bind_nessus_port',`
7348 ## </param>
7349 ## <infoflow type="none"/>
7350 #
7351 -interface(`corenet_udp_bind_nessus_port',`
7352 +interface(`corenet_udp_bind_mysqld_port',`
7353 gen_require(`
7354 - type nessus_port_t;
7355 + type mysqld_port_t;
7356 ')
7357
7358 - allow $1 nessus_port_t:udp_socket name_bind;
7359 -
7360 + allow $1 mysqld_port_t:udp_socket name_bind;
7361 + allow $1 self:capability net_bind_service;
7362 ')
7363
7364 ########################################
7365 ## <summary>
7366 -## Make a TCP connection to the nessus port.
7367 +## Make a TCP connection to the mysqld port.
7368 ## </summary>
7369 ## <param name="domain">
7370 ## <summary>
7371 @@ -54725,18 +55611,18 @@ interface(`corenet_udp_bind_nessus_port',`
7372 ## </summary>
7373 ## </param>
7374 #
7375 -interface(`corenet_tcp_connect_nessus_port',`
7376 +interface(`corenet_tcp_connect_mysqld_port',`
7377 gen_require(`
7378 - type nessus_port_t;
7379 + type mysqld_port_t;
7380 ')
7381
7382 - allow $1 nessus_port_t:tcp_socket name_connect;
7383 + allow $1 mysqld_port_t:tcp_socket name_connect;
7384 ')
7385
7386
7387 ########################################
7388 ## <summary>
7389 -## Send nessus_client packets.
7390 +## Send mysqld_client packets.
7391 ## </summary>
7392 ## <param name="domain">
7393 ## <summary>
7394 @@ -54745,17 +55631,17 @@ interface(`corenet_tcp_connect_nessus_port',`
7395 ## </param>
7396 ## <infoflow type="write" weight="10"/>
7397 #
7398 -interface(`corenet_send_nessus_client_packets',`
7399 +interface(`corenet_send_mysqld_client_packets',`
7400 gen_require(`
7401 - type nessus_client_packet_t;
7402 + type mysqld_client_packet_t;
7403 ')
7404
7405 - allow $1 nessus_client_packet_t:packet send;
7406 + allow $1 mysqld_client_packet_t:packet send;
7407 ')
7408
7409 ########################################
7410 ## <summary>
7411 -## Do not audit attempts to send nessus_client packets.
7412 +## Do not audit attempts to send mysqld_client packets.
7413 ## </summary>
7414 ## <param name="domain">
7415 ## <summary>
7416 @@ -54764,17 +55650,17 @@ interface(`corenet_send_nessus_client_packets',`
7417 ## </param>
7418 ## <infoflow type="none"/>
7419 #
7420 -interface(`corenet_dontaudit_send_nessus_client_packets',`
7421 +interface(`corenet_dontaudit_send_mysqld_client_packets',`
7422 gen_require(`
7423 - type nessus_client_packet_t;
7424 + type mysqld_client_packet_t;
7425 ')
7426
7427 - dontaudit $1 nessus_client_packet_t:packet send;
7428 + dontaudit $1 mysqld_client_packet_t:packet send;
7429 ')
7430
7431 ########################################
7432 ## <summary>
7433 -## Receive nessus_client packets.
7434 +## Receive mysqld_client packets.
7435 ## </summary>
7436 ## <param name="domain">
7437 ## <summary>
7438 @@ -54783,17 +55669,17 @@ interface(`corenet_dontaudit_send_nessus_client_packets',`
7439 ## </param>
7440 ## <infoflow type="read" weight="10"/>
7441 #
7442 -interface(`corenet_receive_nessus_client_packets',`
7443 +interface(`corenet_receive_mysqld_client_packets',`
7444 gen_require(`
7445 - type nessus_client_packet_t;
7446 + type mysqld_client_packet_t;
7447 ')
7448
7449 - allow $1 nessus_client_packet_t:packet recv;
7450 + allow $1 mysqld_client_packet_t:packet recv;
7451 ')
7452
7453 ########################################
7454 ## <summary>
7455 -## Do not audit attempts to receive nessus_client packets.
7456 +## Do not audit attempts to receive mysqld_client packets.
7457 ## </summary>
7458 ## <param name="domain">
7459 ## <summary>
7460 @@ -54802,17 +55688,17 @@ interface(`corenet_receive_nessus_client_packets',`
7461 ## </param>
7462 ## <infoflow type="none"/>
7463 #
7464 -interface(`corenet_dontaudit_receive_nessus_client_packets',`
7465 +interface(`corenet_dontaudit_receive_mysqld_client_packets',`
7466 gen_require(`
7467 - type nessus_client_packet_t;
7468 + type mysqld_client_packet_t;
7469 ')
7470
7471 - dontaudit $1 nessus_client_packet_t:packet recv;
7472 + dontaudit $1 mysqld_client_packet_t:packet recv;
7473 ')
7474
7475 ########################################
7476 ## <summary>
7477 -## Send and receive nessus_client packets.
7478 +## Send and receive mysqld_client packets.
7479 ## </summary>
7480 ## <param name="domain">
7481 ## <summary>
7482 @@ -54821,14 +55707,14 @@ interface(`corenet_dontaudit_receive_nessus_client_packets',`
7483 ## </param>
7484 ## <infoflow type="both" weight="10"/>
7485 #
7486 -interface(`corenet_sendrecv_nessus_client_packets',`
7487 - corenet_send_nessus_client_packets($1)
7488 - corenet_receive_nessus_client_packets($1)
7489 +interface(`corenet_sendrecv_mysqld_client_packets',`
7490 + corenet_send_mysqld_client_packets($1)
7491 + corenet_receive_mysqld_client_packets($1)
7492 ')
7493
7494 ########################################
7495 ## <summary>
7496 -## Do not audit attempts to send and receive nessus_client packets.
7497 +## Do not audit attempts to send and receive mysqld_client packets.
7498 ## </summary>
7499 ## <param name="domain">
7500 ## <summary>
7501 @@ -54837,14 +55723,14 @@ interface(`corenet_sendrecv_nessus_client_packets',`
7502 ## </param>
7503 ## <infoflow type="none"/>
7504 #
7505 -interface(`corenet_dontaudit_sendrecv_nessus_client_packets',`
7506 - corenet_dontaudit_send_nessus_client_packets($1)
7507 - corenet_dontaudit_receive_nessus_client_packets($1)
7508 +interface(`corenet_dontaudit_sendrecv_mysqld_client_packets',`
7509 + corenet_dontaudit_send_mysqld_client_packets($1)
7510 + corenet_dontaudit_receive_mysqld_client_packets($1)
7511 ')
7512
7513 ########################################
7514 ## <summary>
7515 -## Relabel packets to nessus_client the packet type.
7516 +## Relabel packets to mysqld_client the packet type.
7517 ## </summary>
7518 ## <param name="domain">
7519 ## <summary>
7520 @@ -54852,18 +55738,18 @@ interface(`corenet_dontaudit_sendrecv_nessus_client_packets',`
7521 ## </summary>
7522 ## </param>
7523 #
7524 -interface(`corenet_relabelto_nessus_client_packets',`
7525 +interface(`corenet_relabelto_mysqld_client_packets',`
7526 gen_require(`
7527 - type nessus_client_packet_t;
7528 + type mysqld_client_packet_t;
7529 ')
7530
7531 - allow $1 nessus_client_packet_t:packet relabelto;
7532 + allow $1 mysqld_client_packet_t:packet relabelto;
7533 ')
7534
7535
7536 ########################################
7537 ## <summary>
7538 -## Send nessus_server packets.
7539 +## Send mysqld_server packets.
7540 ## </summary>
7541 ## <param name="domain">
7542 ## <summary>
7543 @@ -54872,17 +55758,17 @@ interface(`corenet_relabelto_nessus_client_packets',`
7544 ## </param>
7545 ## <infoflow type="write" weight="10"/>
7546 #
7547 -interface(`corenet_send_nessus_server_packets',`
7548 +interface(`corenet_send_mysqld_server_packets',`
7549 gen_require(`
7550 - type nessus_server_packet_t;
7551 + type mysqld_server_packet_t;
7552 ')
7553
7554 - allow $1 nessus_server_packet_t:packet send;
7555 + allow $1 mysqld_server_packet_t:packet send;
7556 ')
7557
7558 ########################################
7559 ## <summary>
7560 -## Do not audit attempts to send nessus_server packets.
7561 +## Do not audit attempts to send mysqld_server packets.
7562 ## </summary>
7563 ## <param name="domain">
7564 ## <summary>
7565 @@ -54891,17 +55777,17 @@ interface(`corenet_send_nessus_server_packets',`
7566 ## </param>
7567 ## <infoflow type="none"/>
7568 #
7569 -interface(`corenet_dontaudit_send_nessus_server_packets',`
7570 +interface(`corenet_dontaudit_send_mysqld_server_packets',`
7571 gen_require(`
7572 - type nessus_server_packet_t;
7573 + type mysqld_server_packet_t;
7574 ')
7575
7576 - dontaudit $1 nessus_server_packet_t:packet send;
7577 + dontaudit $1 mysqld_server_packet_t:packet send;
7578 ')
7579
7580 ########################################
7581 ## <summary>
7582 -## Receive nessus_server packets.
7583 +## Receive mysqld_server packets.
7584 ## </summary>
7585 ## <param name="domain">
7586 ## <summary>
7587 @@ -54910,17 +55796,17 @@ interface(`corenet_dontaudit_send_nessus_server_packets',`
7588 ## </param>
7589 ## <infoflow type="read" weight="10"/>
7590 #
7591 -interface(`corenet_receive_nessus_server_packets',`
7592 +interface(`corenet_receive_mysqld_server_packets',`
7593 gen_require(`
7594 - type nessus_server_packet_t;
7595 + type mysqld_server_packet_t;
7596 ')
7597
7598 - allow $1 nessus_server_packet_t:packet recv;
7599 + allow $1 mysqld_server_packet_t:packet recv;
7600 ')
7601
7602 ########################################
7603 ## <summary>
7604 -## Do not audit attempts to receive nessus_server packets.
7605 +## Do not audit attempts to receive mysqld_server packets.
7606 ## </summary>
7607 ## <param name="domain">
7608 ## <summary>
7609 @@ -54929,17 +55815,17 @@ interface(`corenet_receive_nessus_server_packets',`
7610 ## </param>
7611 ## <infoflow type="none"/>
7612 #
7613 -interface(`corenet_dontaudit_receive_nessus_server_packets',`
7614 +interface(`corenet_dontaudit_receive_mysqld_server_packets',`
7615 gen_require(`
7616 - type nessus_server_packet_t;
7617 + type mysqld_server_packet_t;
7618 ')
7619
7620 - dontaudit $1 nessus_server_packet_t:packet recv;
7621 + dontaudit $1 mysqld_server_packet_t:packet recv;
7622 ')
7623
7624 ########################################
7625 ## <summary>
7626 -## Send and receive nessus_server packets.
7627 +## Send and receive mysqld_server packets.
7628 ## </summary>
7629 ## <param name="domain">
7630 ## <summary>
7631 @@ -54948,14 +55834,14 @@ interface(`corenet_dontaudit_receive_nessus_server_packets',`
7632 ## </param>
7633 ## <infoflow type="both" weight="10"/>
7634 #
7635 -interface(`corenet_sendrecv_nessus_server_packets',`
7636 - corenet_send_nessus_server_packets($1)
7637 - corenet_receive_nessus_server_packets($1)
7638 +interface(`corenet_sendrecv_mysqld_server_packets',`
7639 + corenet_send_mysqld_server_packets($1)
7640 + corenet_receive_mysqld_server_packets($1)
7641 ')
7642
7643 ########################################
7644 ## <summary>
7645 -## Do not audit attempts to send and receive nessus_server packets.
7646 +## Do not audit attempts to send and receive mysqld_server packets.
7647 ## </summary>
7648 ## <param name="domain">
7649 ## <summary>
7650 @@ -54964,14 +55850,14 @@ interface(`corenet_sendrecv_nessus_server_packets',`
7651 ## </param>
7652 ## <infoflow type="none"/>
7653 #
7654 -interface(`corenet_dontaudit_sendrecv_nessus_server_packets',`
7655 - corenet_dontaudit_send_nessus_server_packets($1)
7656 - corenet_dontaudit_receive_nessus_server_packets($1)
7657 +interface(`corenet_dontaudit_sendrecv_mysqld_server_packets',`
7658 + corenet_dontaudit_send_mysqld_server_packets($1)
7659 + corenet_dontaudit_receive_mysqld_server_packets($1)
7660 ')
7661
7662 ########################################
7663 ## <summary>
7664 -## Relabel packets to nessus_server the packet type.
7665 +## Relabel packets to mysqld_server the packet type.
7666 ## </summary>
7667 ## <param name="domain">
7668 ## <summary>
7669 @@ -54979,12 +55865,12 @@ interface(`corenet_dontaudit_sendrecv_nessus_server_packets',`
7670 ## </summary>
7671 ## </param>
7672 #
7673 -interface(`corenet_relabelto_nessus_server_packets',`
7674 +interface(`corenet_relabelto_mysqld_server_packets',`
7675 gen_require(`
7676 - type nessus_server_packet_t;
7677 + type mysqld_server_packet_t;
7678 ')
7679
7680 - allow $1 nessus_server_packet_t:packet relabelto;
7681 + allow $1 mysqld_server_packet_t:packet relabelto;
7682 ')
7683
7684
7685 @@ -54992,7 +55878,7 @@ interface(`corenet_relabelto_nessus_server_packets',`
7686
7687 ########################################
7688 ## <summary>
7689 -## Send and receive TCP traffic on the netport port.
7690 +## Send and receive TCP traffic on the mysqlmanagerd port.
7691 ## </summary>
7692 ## <param name="domain">
7693 ## <summary>
7694 @@ -55001,17 +55887,17 @@ interface(`corenet_relabelto_nessus_server_packets',`
7695 ## </param>
7696 ## <infoflow type="both" weight="10"/>
7697 #
7698 -interface(`corenet_tcp_sendrecv_netport_port',`
7699 +interface(`corenet_tcp_sendrecv_mysqlmanagerd_port',`
7700 gen_require(`
7701 - type netport_port_t;
7702 + type mysqlmanagerd_port_t;
7703 ')
7704
7705 - allow $1 netport_port_t:tcp_socket { send_msg recv_msg };
7706 + allow $1 mysqlmanagerd_port_t:tcp_socket { send_msg recv_msg };
7707 ')
7708
7709 ########################################
7710 ## <summary>
7711 -## Send UDP traffic on the netport port.
7712 +## Send UDP traffic on the mysqlmanagerd port.
7713 ## </summary>
7714 ## <param name="domain">
7715 ## <summary>
7716 @@ -55020,17 +55906,17 @@ interface(`corenet_tcp_sendrecv_netport_port',`
7717 ## </param>
7718 ## <infoflow type="write" weight="10"/>
7719 #
7720 -interface(`corenet_udp_send_netport_port',`
7721 +interface(`corenet_udp_send_mysqlmanagerd_port',`
7722 gen_require(`
7723 - type netport_port_t;
7724 + type mysqlmanagerd_port_t;
7725 ')
7726
7727 - allow $1 netport_port_t:udp_socket send_msg;
7728 + allow $1 mysqlmanagerd_port_t:udp_socket send_msg;
7729 ')
7730
7731 ########################################
7732 ## <summary>
7733 -## Do not audit attempts to send UDP traffic on the netport port.
7734 +## Do not audit attempts to send UDP traffic on the mysqlmanagerd port.
7735 ## </summary>
7736 ## <param name="domain">
7737 ## <summary>
7738 @@ -55039,17 +55925,17 @@ interface(`corenet_udp_send_netport_port',`
7739 ## </param>
7740 ## <infoflow type="none"/>
7741 #
7742 -interface(`corenet_dontaudit_udp_send_netport_port',`
7743 +interface(`corenet_dontaudit_udp_send_mysqlmanagerd_port',`
7744 gen_require(`
7745 - type netport_port_t;
7746 + type mysqlmanagerd_port_t;
7747 ')
7748
7749 - dontaudit $1 netport_port_t:udp_socket send_msg;
7750 + dontaudit $1 mysqlmanagerd_port_t:udp_socket send_msg;
7751 ')
7752
7753 ########################################
7754 ## <summary>
7755 -## Receive UDP traffic on the netport port.
7756 +## Receive UDP traffic on the mysqlmanagerd port.
7757 ## </summary>
7758 ## <param name="domain">
7759 ## <summary>
7760 @@ -55058,17 +55944,17 @@ interface(`corenet_dontaudit_udp_send_netport_port',`
7761 ## </param>
7762 ## <infoflow type="read" weight="10"/>
7763 #
7764 -interface(`corenet_udp_receive_netport_port',`
7765 +interface(`corenet_udp_receive_mysqlmanagerd_port',`
7766 gen_require(`
7767 - type netport_port_t;
7768 + type mysqlmanagerd_port_t;
7769 ')
7770
7771 - allow $1 netport_port_t:udp_socket recv_msg;
7772 + allow $1 mysqlmanagerd_port_t:udp_socket recv_msg;
7773 ')
7774
7775 ########################################
7776 ## <summary>
7777 -## Do not audit attempts to receive UDP traffic on the netport port.
7778 +## Do not audit attempts to receive UDP traffic on the mysqlmanagerd port.
7779 ## </summary>
7780 ## <param name="domain">
7781 ## <summary>
7782 @@ -55077,17 +55963,17 @@ interface(`corenet_udp_receive_netport_port',`
7783 ## </param>
7784 ## <infoflow type="none"/>
7785 #
7786 -interface(`corenet_dontaudit_udp_receive_netport_port',`
7787 +interface(`corenet_dontaudit_udp_receive_mysqlmanagerd_port',`
7788 gen_require(`
7789 - type netport_port_t;
7790 + type mysqlmanagerd_port_t;
7791 ')
7792
7793 - dontaudit $1 netport_port_t:udp_socket recv_msg;
7794 + dontaudit $1 mysqlmanagerd_port_t:udp_socket recv_msg;
7795 ')
7796
7797 ########################################
7798 ## <summary>
7799 -## Send and receive UDP traffic on the netport port.
7800 +## Send and receive UDP traffic on the mysqlmanagerd port.
7801 ## </summary>
7802 ## <param name="domain">
7803 ## <summary>
7804 @@ -55096,15 +55982,15 @@ interface(`corenet_dontaudit_udp_receive_netport_port',`
7805 ## </param>
7806 ## <infoflow type="both" weight="10"/>
7807 #
7808 -interface(`corenet_udp_sendrecv_netport_port',`
7809 - corenet_udp_send_netport_port($1)
7810 - corenet_udp_receive_netport_port($1)
7811 +interface(`corenet_udp_sendrecv_mysqlmanagerd_port',`
7812 + corenet_udp_send_mysqlmanagerd_port($1)
7813 + corenet_udp_receive_mysqlmanagerd_port($1)
7814 ')
7815
7816 ########################################
7817 ## <summary>
7818 ## Do not audit attempts to send and receive
7819 -## UDP traffic on the netport port.
7820 +## UDP traffic on the mysqlmanagerd port.
7821 ## </summary>
7822 ## <param name="domain">
7823 ## <summary>
7824 @@ -55113,14 +55999,14 @@ interface(`corenet_udp_sendrecv_netport_port',`
7825 ## </param>
7826 ## <infoflow type="none"/>
7827 #
7828 -interface(`corenet_dontaudit_udp_sendrecv_netport_port',`
7829 - corenet_dontaudit_udp_send_netport_port($1)
7830 - corenet_dontaudit_udp_receive_netport_port($1)
7831 +interface(`corenet_dontaudit_udp_sendrecv_mysqlmanagerd_port',`
7832 + corenet_dontaudit_udp_send_mysqlmanagerd_port($1)
7833 + corenet_dontaudit_udp_receive_mysqlmanagerd_port($1)
7834 ')
7835
7836 ########################################
7837 ## <summary>
7838 -## Bind TCP sockets to the netport port.
7839 +## Bind TCP sockets to the mysqlmanagerd port.
7840 ## </summary>
7841 ## <param name="domain">
7842 ## <summary>
7843 @@ -55129,18 +56015,18 @@ interface(`corenet_dontaudit_udp_sendrecv_netport_port',`
7844 ## </param>
7845 ## <infoflow type="none"/>
7846 #
7847 -interface(`corenet_tcp_bind_netport_port',`
7848 +interface(`corenet_tcp_bind_mysqlmanagerd_port',`
7849 gen_require(`
7850 - type netport_port_t;
7851 + type mysqlmanagerd_port_t;
7852 ')
7853
7854 - allow $1 netport_port_t:tcp_socket name_bind;
7855 + allow $1 mysqlmanagerd_port_t:tcp_socket name_bind;
7856
7857 ')
7858
7859 ########################################
7860 ## <summary>
7861 -## Bind UDP sockets to the netport port.
7862 +## Bind UDP sockets to the mysqlmanagerd port.
7863 ## </summary>
7864 ## <param name="domain">
7865 ## <summary>
7866 @@ -55149,18 +56035,18 @@ interface(`corenet_tcp_bind_netport_port',`
7867 ## </param>
7868 ## <infoflow type="none"/>
7869 #
7870 -interface(`corenet_udp_bind_netport_port',`
7871 +interface(`corenet_udp_bind_mysqlmanagerd_port',`
7872 gen_require(`
7873 - type netport_port_t;
7874 + type mysqlmanagerd_port_t;
7875 ')
7876
7877 - allow $1 netport_port_t:udp_socket name_bind;
7878 + allow $1 mysqlmanagerd_port_t:udp_socket name_bind;
7879
7880 ')
7881
7882 ########################################
7883 ## <summary>
7884 -## Make a TCP connection to the netport port.
7885 +## Make a TCP connection to the mysqlmanagerd port.
7886 ## </summary>
7887 ## <param name="domain">
7888 ## <summary>
7889 @@ -55168,18 +56054,18 @@ interface(`corenet_udp_bind_netport_port',`
7890 ## </summary>
7891 ## </param>
7892 #
7893 -interface(`corenet_tcp_connect_netport_port',`
7894 +interface(`corenet_tcp_connect_mysqlmanagerd_port',`
7895 gen_require(`
7896 - type netport_port_t;
7897 + type mysqlmanagerd_port_t;
7898 ')
7899
7900 - allow $1 netport_port_t:tcp_socket name_connect;
7901 + allow $1 mysqlmanagerd_port_t:tcp_socket name_connect;
7902 ')
7903
7904
7905 ########################################
7906 ## <summary>
7907 -## Send netport_client packets.
7908 +## Send mysqlmanagerd_client packets.
7909 ## </summary>
7910 ## <param name="domain">
7911 ## <summary>
7912 @@ -55188,17 +56074,17 @@ interface(`corenet_tcp_connect_netport_port',`
7913 ## </param>
7914 ## <infoflow type="write" weight="10"/>
7915 #
7916 -interface(`corenet_send_netport_client_packets',`
7917 +interface(`corenet_send_mysqlmanagerd_client_packets',`
7918 gen_require(`
7919 - type netport_client_packet_t;
7920 + type mysqlmanagerd_client_packet_t;
7921 ')
7922
7923 - allow $1 netport_client_packet_t:packet send;
7924 + allow $1 mysqlmanagerd_client_packet_t:packet send;
7925 ')
7926
7927 ########################################
7928 ## <summary>
7929 -## Do not audit attempts to send netport_client packets.
7930 +## Do not audit attempts to send mysqlmanagerd_client packets.
7931 ## </summary>
7932 ## <param name="domain">
7933 ## <summary>
7934 @@ -55207,17 +56093,17 @@ interface(`corenet_send_netport_client_packets',`
7935 ## </param>
7936 ## <infoflow type="none"/>
7937 #
7938 -interface(`corenet_dontaudit_send_netport_client_packets',`
7939 +interface(`corenet_dontaudit_send_mysqlmanagerd_client_packets',`
7940 gen_require(`
7941 - type netport_client_packet_t;
7942 + type mysqlmanagerd_client_packet_t;
7943 ')
7944
7945 - dontaudit $1 netport_client_packet_t:packet send;
7946 + dontaudit $1 mysqlmanagerd_client_packet_t:packet send;
7947 ')
7948
7949 ########################################
7950 ## <summary>
7951 -## Receive netport_client packets.
7952 +## Receive mysqlmanagerd_client packets.
7953 ## </summary>
7954 ## <param name="domain">
7955 ## <summary>
7956 @@ -55226,17 +56112,17 @@ interface(`corenet_dontaudit_send_netport_client_packets',`
7957 ## </param>
7958 ## <infoflow type="read" weight="10"/>
7959 #
7960 -interface(`corenet_receive_netport_client_packets',`
7961 +interface(`corenet_receive_mysqlmanagerd_client_packets',`
7962 gen_require(`
7963 - type netport_client_packet_t;
7964 + type mysqlmanagerd_client_packet_t;
7965 ')
7966
7967 - allow $1 netport_client_packet_t:packet recv;
7968 + allow $1 mysqlmanagerd_client_packet_t:packet recv;
7969 ')
7970
7971 ########################################
7972 ## <summary>
7973 -## Do not audit attempts to receive netport_client packets.
7974 +## Do not audit attempts to receive mysqlmanagerd_client packets.
7975 ## </summary>
7976 ## <param name="domain">
7977 ## <summary>
7978 @@ -55245,17 +56131,17 @@ interface(`corenet_receive_netport_client_packets',`
7979 ## </param>
7980 ## <infoflow type="none"/>
7981 #
7982 -interface(`corenet_dontaudit_receive_netport_client_packets',`
7983 +interface(`corenet_dontaudit_receive_mysqlmanagerd_client_packets',`
7984 gen_require(`
7985 - type netport_client_packet_t;
7986 + type mysqlmanagerd_client_packet_t;
7987 ')
7988
7989 - dontaudit $1 netport_client_packet_t:packet recv;
7990 + dontaudit $1 mysqlmanagerd_client_packet_t:packet recv;
7991 ')
7992
7993 ########################################
7994 ## <summary>
7995 -## Send and receive netport_client packets.
7996 +## Send and receive mysqlmanagerd_client packets.
7997 ## </summary>
7998 ## <param name="domain">
7999 ## <summary>
8000 @@ -55264,14 +56150,14 @@ interface(`corenet_dontaudit_receive_netport_client_packets',`
8001 ## </param>
8002 ## <infoflow type="both" weight="10"/>
8003 #
8004 -interface(`corenet_sendrecv_netport_client_packets',`
8005 - corenet_send_netport_client_packets($1)
8006 - corenet_receive_netport_client_packets($1)
8007 +interface(`corenet_sendrecv_mysqlmanagerd_client_packets',`
8008 + corenet_send_mysqlmanagerd_client_packets($1)
8009 + corenet_receive_mysqlmanagerd_client_packets($1)
8010 ')
8011
8012 ########################################
8013 ## <summary>
8014 -## Do not audit attempts to send and receive netport_client packets.
8015 +## Do not audit attempts to send and receive mysqlmanagerd_client packets.
8016 ## </summary>
8017 ## <param name="domain">
8018 ## <summary>
8019 @@ -55280,14 +56166,14 @@ interface(`corenet_sendrecv_netport_client_packets',`
8020 ## </param>
8021 ## <infoflow type="none"/>
8022 #
8023 -interface(`corenet_dontaudit_sendrecv_netport_client_packets',`
8024 - corenet_dontaudit_send_netport_client_packets($1)
8025 - corenet_dontaudit_receive_netport_client_packets($1)
8026 +interface(`corenet_dontaudit_sendrecv_mysqlmanagerd_client_packets',`
8027 + corenet_dontaudit_send_mysqlmanagerd_client_packets($1)
8028 + corenet_dontaudit_receive_mysqlmanagerd_client_packets($1)
8029 ')
8030
8031 ########################################
8032 ## <summary>
8033 -## Relabel packets to netport_client the packet type.
8034 +## Relabel packets to mysqlmanagerd_client the packet type.
8035 ## </summary>
8036 ## <param name="domain">
8037 ## <summary>
8038 @@ -55295,18 +56181,18 @@ interface(`corenet_dontaudit_sendrecv_netport_client_packets',`
8039 ## </summary>
8040 ## </param>
8041 #
8042 -interface(`corenet_relabelto_netport_client_packets',`
8043 +interface(`corenet_relabelto_mysqlmanagerd_client_packets',`
8044 gen_require(`
8045 - type netport_client_packet_t;
8046 + type mysqlmanagerd_client_packet_t;
8047 ')
8048
8049 - allow $1 netport_client_packet_t:packet relabelto;
8050 + allow $1 mysqlmanagerd_client_packet_t:packet relabelto;
8051 ')
8052
8053
8054 ########################################
8055 ## <summary>
8056 -## Send netport_server packets.
8057 +## Send mysqlmanagerd_server packets.
8058 ## </summary>
8059 ## <param name="domain">
8060 ## <summary>
8061 @@ -55315,17 +56201,17 @@ interface(`corenet_relabelto_netport_client_packets',`
8062 ## </param>
8063 ## <infoflow type="write" weight="10"/>
8064 #
8065 -interface(`corenet_send_netport_server_packets',`
8066 +interface(`corenet_send_mysqlmanagerd_server_packets',`
8067 gen_require(`
8068 - type netport_server_packet_t;
8069 + type mysqlmanagerd_server_packet_t;
8070 ')
8071
8072 - allow $1 netport_server_packet_t:packet send;
8073 + allow $1 mysqlmanagerd_server_packet_t:packet send;
8074 ')
8075
8076 ########################################
8077 ## <summary>
8078 -## Do not audit attempts to send netport_server packets.
8079 +## Do not audit attempts to send mysqlmanagerd_server packets.
8080 ## </summary>
8081 ## <param name="domain">
8082 ## <summary>
8083 @@ -55334,17 +56220,17 @@ interface(`corenet_send_netport_server_packets',`
8084 ## </param>
8085 ## <infoflow type="none"/>
8086 #
8087 -interface(`corenet_dontaudit_send_netport_server_packets',`
8088 +interface(`corenet_dontaudit_send_mysqlmanagerd_server_packets',`
8089 gen_require(`
8090 - type netport_server_packet_t;
8091 + type mysqlmanagerd_server_packet_t;
8092 ')
8093
8094 - dontaudit $1 netport_server_packet_t:packet send;
8095 + dontaudit $1 mysqlmanagerd_server_packet_t:packet send;
8096 ')
8097
8098 ########################################
8099 ## <summary>
8100 -## Receive netport_server packets.
8101 +## Receive mysqlmanagerd_server packets.
8102 ## </summary>
8103 ## <param name="domain">
8104 ## <summary>
8105 @@ -55353,17 +56239,17 @@ interface(`corenet_dontaudit_send_netport_server_packets',`
8106 ## </param>
8107 ## <infoflow type="read" weight="10"/>
8108 #
8109 -interface(`corenet_receive_netport_server_packets',`
8110 +interface(`corenet_receive_mysqlmanagerd_server_packets',`
8111 gen_require(`
8112 - type netport_server_packet_t;
8113 + type mysqlmanagerd_server_packet_t;
8114 ')
8115
8116 - allow $1 netport_server_packet_t:packet recv;
8117 + allow $1 mysqlmanagerd_server_packet_t:packet recv;
8118 ')
8119
8120 ########################################
8121 ## <summary>
8122 -## Do not audit attempts to receive netport_server packets.
8123 +## Do not audit attempts to receive mysqlmanagerd_server packets.
8124 ## </summary>
8125 ## <param name="domain">
8126 ## <summary>
8127 @@ -55372,17 +56258,17 @@ interface(`corenet_receive_netport_server_packets',`
8128 ## </param>
8129 ## <infoflow type="none"/>
8130 #
8131 -interface(`corenet_dontaudit_receive_netport_server_packets',`
8132 +interface(`corenet_dontaudit_receive_mysqlmanagerd_server_packets',`
8133 gen_require(`
8134 - type netport_server_packet_t;
8135 + type mysqlmanagerd_server_packet_t;
8136 ')
8137
8138 - dontaudit $1 netport_server_packet_t:packet recv;
8139 + dontaudit $1 mysqlmanagerd_server_packet_t:packet recv;
8140 ')
8141
8142 ########################################
8143 ## <summary>
8144 -## Send and receive netport_server packets.
8145 +## Send and receive mysqlmanagerd_server packets.
8146 ## </summary>
8147 ## <param name="domain">
8148 ## <summary>
8149 @@ -55391,14 +56277,14 @@ interface(`corenet_dontaudit_receive_netport_server_packets',`
8150 ## </param>
8151 ## <infoflow type="both" weight="10"/>
8152 #
8153 -interface(`corenet_sendrecv_netport_server_packets',`
8154 - corenet_send_netport_server_packets($1)
8155 - corenet_receive_netport_server_packets($1)
8156 +interface(`corenet_sendrecv_mysqlmanagerd_server_packets',`
8157 + corenet_send_mysqlmanagerd_server_packets($1)
8158 + corenet_receive_mysqlmanagerd_server_packets($1)
8159 ')
8160
8161 ########################################
8162 ## <summary>
8163 -## Do not audit attempts to send and receive netport_server packets.
8164 +## Do not audit attempts to send and receive mysqlmanagerd_server packets.
8165 ## </summary>
8166 ## <param name="domain">
8167 ## <summary>
8168 @@ -55407,14 +56293,14 @@ interface(`corenet_sendrecv_netport_server_packets',`
8169 ## </param>
8170 ## <infoflow type="none"/>
8171 #
8172 -interface(`corenet_dontaudit_sendrecv_netport_server_packets',`
8173 - corenet_dontaudit_send_netport_server_packets($1)
8174 - corenet_dontaudit_receive_netport_server_packets($1)
8175 +interface(`corenet_dontaudit_sendrecv_mysqlmanagerd_server_packets',`
8176 + corenet_dontaudit_send_mysqlmanagerd_server_packets($1)
8177 + corenet_dontaudit_receive_mysqlmanagerd_server_packets($1)
8178 ')
8179
8180 ########################################
8181 ## <summary>
8182 -## Relabel packets to netport_server the packet type.
8183 +## Relabel packets to mysqlmanagerd_server the packet type.
8184 ## </summary>
8185 ## <param name="domain">
8186 ## <summary>
8187 @@ -55422,12 +56308,12 @@ interface(`corenet_dontaudit_sendrecv_netport_server_packets',`
8188 ## </summary>
8189 ## </param>
8190 #
8191 -interface(`corenet_relabelto_netport_server_packets',`
8192 +interface(`corenet_relabelto_mysqlmanagerd_server_packets',`
8193 gen_require(`
8194 - type netport_server_packet_t;
8195 + type mysqlmanagerd_server_packet_t;
8196 ')
8197
8198 - allow $1 netport_server_packet_t:packet relabelto;
8199 + allow $1 mysqlmanagerd_server_packet_t:packet relabelto;
8200 ')
8201
8202
8203 @@ -55435,7 +56321,7 @@ interface(`corenet_relabelto_netport_server_packets',`
8204
8205 ########################################
8206 ## <summary>
8207 -## Send and receive TCP traffic on the netsupport port.
8208 +## Send and receive TCP traffic on the nessus port.
8209 ## </summary>
8210 ## <param name="domain">
8211 ## <summary>
8212 @@ -55444,17 +56330,17 @@ interface(`corenet_relabelto_netport_server_packets',`
8213 ## </param>
8214 ## <infoflow type="both" weight="10"/>
8215 #
8216 -interface(`corenet_tcp_sendrecv_netsupport_port',`
8217 +interface(`corenet_tcp_sendrecv_nessus_port',`
8218 gen_require(`
8219 - type netsupport_port_t;
8220 + type nessus_port_t;
8221 ')
8222
8223 - allow $1 netsupport_port_t:tcp_socket { send_msg recv_msg };
8224 + allow $1 nessus_port_t:tcp_socket { send_msg recv_msg };
8225 ')
8226
8227 ########################################
8228 ## <summary>
8229 -## Send UDP traffic on the netsupport port.
8230 +## Send UDP traffic on the nessus port.
8231 ## </summary>
8232 ## <param name="domain">
8233 ## <summary>
8234 @@ -55463,17 +56349,17 @@ interface(`corenet_tcp_sendrecv_netsupport_port',`
8235 ## </param>
8236 ## <infoflow type="write" weight="10"/>
8237 #
8238 -interface(`corenet_udp_send_netsupport_port',`
8239 +interface(`corenet_udp_send_nessus_port',`
8240 gen_require(`
8241 - type netsupport_port_t;
8242 + type nessus_port_t;
8243 ')
8244
8245 - allow $1 netsupport_port_t:udp_socket send_msg;
8246 + allow $1 nessus_port_t:udp_socket send_msg;
8247 ')
8248
8249 ########################################
8250 ## <summary>
8251 -## Do not audit attempts to send UDP traffic on the netsupport port.
8252 +## Do not audit attempts to send UDP traffic on the nessus port.
8253 ## </summary>
8254 ## <param name="domain">
8255 ## <summary>
8256 @@ -55482,17 +56368,17 @@ interface(`corenet_udp_send_netsupport_port',`
8257 ## </param>
8258 ## <infoflow type="none"/>
8259 #
8260 -interface(`corenet_dontaudit_udp_send_netsupport_port',`
8261 +interface(`corenet_dontaudit_udp_send_nessus_port',`
8262 gen_require(`
8263 - type netsupport_port_t;
8264 + type nessus_port_t;
8265 ')
8266
8267 - dontaudit $1 netsupport_port_t:udp_socket send_msg;
8268 + dontaudit $1 nessus_port_t:udp_socket send_msg;
8269 ')
8270
8271 ########################################
8272 ## <summary>
8273 -## Receive UDP traffic on the netsupport port.
8274 +## Receive UDP traffic on the nessus port.
8275 ## </summary>
8276 ## <param name="domain">
8277 ## <summary>
8278 @@ -55501,17 +56387,17 @@ interface(`corenet_dontaudit_udp_send_netsupport_port',`
8279 ## </param>
8280 ## <infoflow type="read" weight="10"/>
8281 #
8282 -interface(`corenet_udp_receive_netsupport_port',`
8283 +interface(`corenet_udp_receive_nessus_port',`
8284 gen_require(`
8285 - type netsupport_port_t;
8286 + type nessus_port_t;
8287 ')
8288
8289 - allow $1 netsupport_port_t:udp_socket recv_msg;
8290 + allow $1 nessus_port_t:udp_socket recv_msg;
8291 ')
8292
8293 ########################################
8294 ## <summary>
8295 -## Do not audit attempts to receive UDP traffic on the netsupport port.
8296 +## Do not audit attempts to receive UDP traffic on the nessus port.
8297 ## </summary>
8298 ## <param name="domain">
8299 ## <summary>
8300 @@ -55520,17 +56406,17 @@ interface(`corenet_udp_receive_netsupport_port',`
8301 ## </param>
8302 ## <infoflow type="none"/>
8303 #
8304 -interface(`corenet_dontaudit_udp_receive_netsupport_port',`
8305 +interface(`corenet_dontaudit_udp_receive_nessus_port',`
8306 gen_require(`
8307 - type netsupport_port_t;
8308 + type nessus_port_t;
8309 ')
8310
8311 - dontaudit $1 netsupport_port_t:udp_socket recv_msg;
8312 + dontaudit $1 nessus_port_t:udp_socket recv_msg;
8313 ')
8314
8315 ########################################
8316 ## <summary>
8317 -## Send and receive UDP traffic on the netsupport port.
8318 +## Send and receive UDP traffic on the nessus port.
8319 ## </summary>
8320 ## <param name="domain">
8321 ## <summary>
8322 @@ -55539,15 +56425,15 @@ interface(`corenet_dontaudit_udp_receive_netsupport_port',`
8323 ## </param>
8324 ## <infoflow type="both" weight="10"/>
8325 #
8326 -interface(`corenet_udp_sendrecv_netsupport_port',`
8327 - corenet_udp_send_netsupport_port($1)
8328 - corenet_udp_receive_netsupport_port($1)
8329 +interface(`corenet_udp_sendrecv_nessus_port',`
8330 + corenet_udp_send_nessus_port($1)
8331 + corenet_udp_receive_nessus_port($1)
8332 ')
8333
8334 ########################################
8335 ## <summary>
8336 ## Do not audit attempts to send and receive
8337 -## UDP traffic on the netsupport port.
8338 +## UDP traffic on the nessus port.
8339 ## </summary>
8340 ## <param name="domain">
8341 ## <summary>
8342 @@ -55556,14 +56442,14 @@ interface(`corenet_udp_sendrecv_netsupport_port',`
8343 ## </param>
8344 ## <infoflow type="none"/>
8345 #
8346 -interface(`corenet_dontaudit_udp_sendrecv_netsupport_port',`
8347 - corenet_dontaudit_udp_send_netsupport_port($1)
8348 - corenet_dontaudit_udp_receive_netsupport_port($1)
8349 +interface(`corenet_dontaudit_udp_sendrecv_nessus_port',`
8350 + corenet_dontaudit_udp_send_nessus_port($1)
8351 + corenet_dontaudit_udp_receive_nessus_port($1)
8352 ')
8353
8354 ########################################
8355 ## <summary>
8356 -## Bind TCP sockets to the netsupport port.
8357 +## Bind TCP sockets to the nessus port.
8358 ## </summary>
8359 ## <param name="domain">
8360 ## <summary>
8361 @@ -55572,18 +56458,18 @@ interface(`corenet_dontaudit_udp_sendrecv_netsupport_port',`
8362 ## </param>
8363 ## <infoflow type="none"/>
8364 #
8365 -interface(`corenet_tcp_bind_netsupport_port',`
8366 +interface(`corenet_tcp_bind_nessus_port',`
8367 gen_require(`
8368 - type netsupport_port_t;
8369 + type nessus_port_t;
8370 ')
8371
8372 - allow $1 netsupport_port_t:tcp_socket name_bind;
8373 + allow $1 nessus_port_t:tcp_socket name_bind;
8374
8375 ')
8376
8377 ########################################
8378 ## <summary>
8379 -## Bind UDP sockets to the netsupport port.
8380 +## Bind UDP sockets to the nessus port.
8381 ## </summary>
8382 ## <param name="domain">
8383 ## <summary>
8384 @@ -55592,18 +56478,18 @@ interface(`corenet_tcp_bind_netsupport_port',`
8385 ## </param>
8386 ## <infoflow type="none"/>
8387 #
8388 -interface(`corenet_udp_bind_netsupport_port',`
8389 +interface(`corenet_udp_bind_nessus_port',`
8390 gen_require(`
8391 - type netsupport_port_t;
8392 + type nessus_port_t;
8393 ')
8394
8395 - allow $1 netsupport_port_t:udp_socket name_bind;
8396 + allow $1 nessus_port_t:udp_socket name_bind;
8397
8398 ')
8399
8400 ########################################
8401 ## <summary>
8402 -## Make a TCP connection to the netsupport port.
8403 +## Make a TCP connection to the nessus port.
8404 ## </summary>
8405 ## <param name="domain">
8406 ## <summary>
8407 @@ -55611,18 +56497,18 @@ interface(`corenet_udp_bind_netsupport_port',`
8408 ## </summary>
8409 ## </param>
8410 #
8411 -interface(`corenet_tcp_connect_netsupport_port',`
8412 +interface(`corenet_tcp_connect_nessus_port',`
8413 gen_require(`
8414 - type netsupport_port_t;
8415 + type nessus_port_t;
8416 ')
8417
8418 - allow $1 netsupport_port_t:tcp_socket name_connect;
8419 + allow $1 nessus_port_t:tcp_socket name_connect;
8420 ')
8421
8422
8423 ########################################
8424 ## <summary>
8425 -## Send netsupport_client packets.
8426 +## Send nessus_client packets.
8427 ## </summary>
8428 ## <param name="domain">
8429 ## <summary>
8430 @@ -55631,17 +56517,17 @@ interface(`corenet_tcp_connect_netsupport_port',`
8431 ## </param>
8432 ## <infoflow type="write" weight="10"/>
8433 #
8434 -interface(`corenet_send_netsupport_client_packets',`
8435 +interface(`corenet_send_nessus_client_packets',`
8436 gen_require(`
8437 - type netsupport_client_packet_t;
8438 + type nessus_client_packet_t;
8439 ')
8440
8441 - allow $1 netsupport_client_packet_t:packet send;
8442 + allow $1 nessus_client_packet_t:packet send;
8443 ')
8444
8445 ########################################
8446 ## <summary>
8447 -## Do not audit attempts to send netsupport_client packets.
8448 +## Do not audit attempts to send nessus_client packets.
8449 ## </summary>
8450 ## <param name="domain">
8451 ## <summary>
8452 @@ -55650,17 +56536,17 @@ interface(`corenet_send_netsupport_client_packets',`
8453 ## </param>
8454 ## <infoflow type="none"/>
8455 #
8456 -interface(`corenet_dontaudit_send_netsupport_client_packets',`
8457 +interface(`corenet_dontaudit_send_nessus_client_packets',`
8458 gen_require(`
8459 - type netsupport_client_packet_t;
8460 + type nessus_client_packet_t;
8461 ')
8462
8463 - dontaudit $1 netsupport_client_packet_t:packet send;
8464 + dontaudit $1 nessus_client_packet_t:packet send;
8465 ')
8466
8467 ########################################
8468 ## <summary>
8469 -## Receive netsupport_client packets.
8470 +## Receive nessus_client packets.
8471 ## </summary>
8472 ## <param name="domain">
8473 ## <summary>
8474 @@ -55669,17 +56555,17 @@ interface(`corenet_dontaudit_send_netsupport_client_packets',`
8475 ## </param>
8476 ## <infoflow type="read" weight="10"/>
8477 #
8478 -interface(`corenet_receive_netsupport_client_packets',`
8479 +interface(`corenet_receive_nessus_client_packets',`
8480 gen_require(`
8481 - type netsupport_client_packet_t;
8482 + type nessus_client_packet_t;
8483 ')
8484
8485 - allow $1 netsupport_client_packet_t:packet recv;
8486 + allow $1 nessus_client_packet_t:packet recv;
8487 ')
8488
8489 ########################################
8490 ## <summary>
8491 -## Do not audit attempts to receive netsupport_client packets.
8492 +## Do not audit attempts to receive nessus_client packets.
8493 ## </summary>
8494 ## <param name="domain">
8495 ## <summary>
8496 @@ -55688,17 +56574,17 @@ interface(`corenet_receive_netsupport_client_packets',`
8497 ## </param>
8498 ## <infoflow type="none"/>
8499 #
8500 -interface(`corenet_dontaudit_receive_netsupport_client_packets',`
8501 +interface(`corenet_dontaudit_receive_nessus_client_packets',`
8502 gen_require(`
8503 - type netsupport_client_packet_t;
8504 + type nessus_client_packet_t;
8505 ')
8506
8507 - dontaudit $1 netsupport_client_packet_t:packet recv;
8508 + dontaudit $1 nessus_client_packet_t:packet recv;
8509 ')
8510
8511 ########################################
8512 ## <summary>
8513 -## Send and receive netsupport_client packets.
8514 +## Send and receive nessus_client packets.
8515 ## </summary>
8516 ## <param name="domain">
8517 ## <summary>
8518 @@ -55707,14 +56593,14 @@ interface(`corenet_dontaudit_receive_netsupport_client_packets',`
8519 ## </param>
8520 ## <infoflow type="both" weight="10"/>
8521 #
8522 -interface(`corenet_sendrecv_netsupport_client_packets',`
8523 - corenet_send_netsupport_client_packets($1)
8524 - corenet_receive_netsupport_client_packets($1)
8525 +interface(`corenet_sendrecv_nessus_client_packets',`
8526 + corenet_send_nessus_client_packets($1)
8527 + corenet_receive_nessus_client_packets($1)
8528 ')
8529
8530 ########################################
8531 ## <summary>
8532 -## Do not audit attempts to send and receive netsupport_client packets.
8533 +## Do not audit attempts to send and receive nessus_client packets.
8534 ## </summary>
8535 ## <param name="domain">
8536 ## <summary>
8537 @@ -55723,14 +56609,14 @@ interface(`corenet_sendrecv_netsupport_client_packets',`
8538 ## </param>
8539 ## <infoflow type="none"/>
8540 #
8541 -interface(`corenet_dontaudit_sendrecv_netsupport_client_packets',`
8542 - corenet_dontaudit_send_netsupport_client_packets($1)
8543 - corenet_dontaudit_receive_netsupport_client_packets($1)
8544 +interface(`corenet_dontaudit_sendrecv_nessus_client_packets',`
8545 + corenet_dontaudit_send_nessus_client_packets($1)
8546 + corenet_dontaudit_receive_nessus_client_packets($1)
8547 ')
8548
8549 ########################################
8550 ## <summary>
8551 -## Relabel packets to netsupport_client the packet type.
8552 +## Relabel packets to nessus_client the packet type.
8553 ## </summary>
8554 ## <param name="domain">
8555 ## <summary>
8556 @@ -55738,18 +56624,18 @@ interface(`corenet_dontaudit_sendrecv_netsupport_client_packets',`
8557 ## </summary>
8558 ## </param>
8559 #
8560 -interface(`corenet_relabelto_netsupport_client_packets',`
8561 +interface(`corenet_relabelto_nessus_client_packets',`
8562 gen_require(`
8563 - type netsupport_client_packet_t;
8564 + type nessus_client_packet_t;
8565 ')
8566
8567 - allow $1 netsupport_client_packet_t:packet relabelto;
8568 + allow $1 nessus_client_packet_t:packet relabelto;
8569 ')
8570
8571
8572 ########################################
8573 ## <summary>
8574 -## Send netsupport_server packets.
8575 +## Send nessus_server packets.
8576 ## </summary>
8577 ## <param name="domain">
8578 ## <summary>
8579 @@ -55758,17 +56644,17 @@ interface(`corenet_relabelto_netsupport_client_packets',`
8580 ## </param>
8581 ## <infoflow type="write" weight="10"/>
8582 #
8583 -interface(`corenet_send_netsupport_server_packets',`
8584 +interface(`corenet_send_nessus_server_packets',`
8585 gen_require(`
8586 - type netsupport_server_packet_t;
8587 + type nessus_server_packet_t;
8588 ')
8589
8590 - allow $1 netsupport_server_packet_t:packet send;
8591 + allow $1 nessus_server_packet_t:packet send;
8592 ')
8593
8594 ########################################
8595 ## <summary>
8596 -## Do not audit attempts to send netsupport_server packets.
8597 +## Do not audit attempts to send nessus_server packets.
8598 ## </summary>
8599 ## <param name="domain">
8600 ## <summary>
8601 @@ -55777,17 +56663,17 @@ interface(`corenet_send_netsupport_server_packets',`
8602 ## </param>
8603 ## <infoflow type="none"/>
8604 #
8605 -interface(`corenet_dontaudit_send_netsupport_server_packets',`
8606 +interface(`corenet_dontaudit_send_nessus_server_packets',`
8607 gen_require(`
8608 - type netsupport_server_packet_t;
8609 + type nessus_server_packet_t;
8610 ')
8611
8612 - dontaudit $1 netsupport_server_packet_t:packet send;
8613 + dontaudit $1 nessus_server_packet_t:packet send;
8614 ')
8615
8616 ########################################
8617 ## <summary>
8618 -## Receive netsupport_server packets.
8619 +## Receive nessus_server packets.
8620 ## </summary>
8621 ## <param name="domain">
8622 ## <summary>
8623 @@ -55796,17 +56682,17 @@ interface(`corenet_dontaudit_send_netsupport_server_packets',`
8624 ## </param>
8625 ## <infoflow type="read" weight="10"/>
8626 #
8627 -interface(`corenet_receive_netsupport_server_packets',`
8628 +interface(`corenet_receive_nessus_server_packets',`
8629 gen_require(`
8630 - type netsupport_server_packet_t;
8631 + type nessus_server_packet_t;
8632 ')
8633
8634 - allow $1 netsupport_server_packet_t:packet recv;
8635 + allow $1 nessus_server_packet_t:packet recv;
8636 ')
8637
8638 ########################################
8639 ## <summary>
8640 -## Do not audit attempts to receive netsupport_server packets.
8641 +## Do not audit attempts to receive nessus_server packets.
8642 ## </summary>
8643 ## <param name="domain">
8644 ## <summary>
8645 @@ -55815,17 +56701,17 @@ interface(`corenet_receive_netsupport_server_packets',`
8646 ## </param>
8647 ## <infoflow type="none"/>
8648 #
8649 -interface(`corenet_dontaudit_receive_netsupport_server_packets',`
8650 +interface(`corenet_dontaudit_receive_nessus_server_packets',`
8651 gen_require(`
8652 - type netsupport_server_packet_t;
8653 + type nessus_server_packet_t;
8654 ')
8655
8656 - dontaudit $1 netsupport_server_packet_t:packet recv;
8657 + dontaudit $1 nessus_server_packet_t:packet recv;
8658 ')
8659
8660 ########################################
8661 ## <summary>
8662 -## Send and receive netsupport_server packets.
8663 +## Send and receive nessus_server packets.
8664 ## </summary>
8665 ## <param name="domain">
8666 ## <summary>
8667 @@ -55834,14 +56720,14 @@ interface(`corenet_dontaudit_receive_netsupport_server_packets',`
8668 ## </param>
8669 ## <infoflow type="both" weight="10"/>
8670 #
8671 -interface(`corenet_sendrecv_netsupport_server_packets',`
8672 - corenet_send_netsupport_server_packets($1)
8673 - corenet_receive_netsupport_server_packets($1)
8674 +interface(`corenet_sendrecv_nessus_server_packets',`
8675 + corenet_send_nessus_server_packets($1)
8676 + corenet_receive_nessus_server_packets($1)
8677 ')
8678
8679 ########################################
8680 ## <summary>
8681 -## Do not audit attempts to send and receive netsupport_server packets.
8682 +## Do not audit attempts to send and receive nessus_server packets.
8683 ## </summary>
8684 ## <param name="domain">
8685 ## <summary>
8686 @@ -55850,14 +56736,14 @@ interface(`corenet_sendrecv_netsupport_server_packets',`
8687 ## </param>
8688 ## <infoflow type="none"/>
8689 #
8690 -interface(`corenet_dontaudit_sendrecv_netsupport_server_packets',`
8691 - corenet_dontaudit_send_netsupport_server_packets($1)
8692 - corenet_dontaudit_receive_netsupport_server_packets($1)
8693 +interface(`corenet_dontaudit_sendrecv_nessus_server_packets',`
8694 + corenet_dontaudit_send_nessus_server_packets($1)
8695 + corenet_dontaudit_receive_nessus_server_packets($1)
8696 ')
8697
8698 ########################################
8699 ## <summary>
8700 -## Relabel packets to netsupport_server the packet type.
8701 +## Relabel packets to nessus_server the packet type.
8702 ## </summary>
8703 ## <param name="domain">
8704 ## <summary>
8705 @@ -55865,12 +56751,12 @@ interface(`corenet_dontaudit_sendrecv_netsupport_server_packets',`
8706 ## </summary>
8707 ## </param>
8708 #
8709 -interface(`corenet_relabelto_netsupport_server_packets',`
8710 +interface(`corenet_relabelto_nessus_server_packets',`
8711 gen_require(`
8712 - type netsupport_server_packet_t;
8713 + type nessus_server_packet_t;
8714 ')
8715
8716 - allow $1 netsupport_server_packet_t:packet relabelto;
8717 + allow $1 nessus_server_packet_t:packet relabelto;
8718 ')
8719
8720
8721 @@ -55878,7 +56764,7 @@ interface(`corenet_relabelto_netsupport_server_packets',`
8722
8723 ########################################
8724 ## <summary>
8725 -## Send and receive TCP traffic on the nfs port.
8726 +## Send and receive TCP traffic on the netport port.
8727 ## </summary>
8728 ## <param name="domain">
8729 ## <summary>
8730 @@ -55887,17 +56773,17 @@ interface(`corenet_relabelto_netsupport_server_packets',`
8731 ## </param>
8732 ## <infoflow type="both" weight="10"/>
8733 #
8734 -interface(`corenet_tcp_sendrecv_nfs_port',`
8735 +interface(`corenet_tcp_sendrecv_netport_port',`
8736 gen_require(`
8737 - type nfs_port_t;
8738 + type netport_port_t;
8739 ')
8740
8741 - allow $1 nfs_port_t:tcp_socket { send_msg recv_msg };
8742 + allow $1 netport_port_t:tcp_socket { send_msg recv_msg };
8743 ')
8744
8745 ########################################
8746 ## <summary>
8747 -## Send UDP traffic on the nfs port.
8748 +## Send UDP traffic on the netport port.
8749 ## </summary>
8750 ## <param name="domain">
8751 ## <summary>
8752 @@ -55906,17 +56792,17 @@ interface(`corenet_tcp_sendrecv_nfs_port',`
8753 ## </param>
8754 ## <infoflow type="write" weight="10"/>
8755 #
8756 -interface(`corenet_udp_send_nfs_port',`
8757 +interface(`corenet_udp_send_netport_port',`
8758 gen_require(`
8759 - type nfs_port_t;
8760 + type netport_port_t;
8761 ')
8762
8763 - allow $1 nfs_port_t:udp_socket send_msg;
8764 + allow $1 netport_port_t:udp_socket send_msg;
8765 ')
8766
8767 ########################################
8768 ## <summary>
8769 -## Do not audit attempts to send UDP traffic on the nfs port.
8770 +## Do not audit attempts to send UDP traffic on the netport port.
8771 ## </summary>
8772 ## <param name="domain">
8773 ## <summary>
8774 @@ -55925,17 +56811,17 @@ interface(`corenet_udp_send_nfs_port',`
8775 ## </param>
8776 ## <infoflow type="none"/>
8777 #
8778 -interface(`corenet_dontaudit_udp_send_nfs_port',`
8779 +interface(`corenet_dontaudit_udp_send_netport_port',`
8780 gen_require(`
8781 - type nfs_port_t;
8782 + type netport_port_t;
8783 ')
8784
8785 - dontaudit $1 nfs_port_t:udp_socket send_msg;
8786 + dontaudit $1 netport_port_t:udp_socket send_msg;
8787 ')
8788
8789 ########################################
8790 ## <summary>
8791 -## Receive UDP traffic on the nfs port.
8792 +## Receive UDP traffic on the netport port.
8793 ## </summary>
8794 ## <param name="domain">
8795 ## <summary>
8796 @@ -55944,17 +56830,17 @@ interface(`corenet_dontaudit_udp_send_nfs_port',`
8797 ## </param>
8798 ## <infoflow type="read" weight="10"/>
8799 #
8800 -interface(`corenet_udp_receive_nfs_port',`
8801 +interface(`corenet_udp_receive_netport_port',`
8802 gen_require(`
8803 - type nfs_port_t;
8804 + type netport_port_t;
8805 ')
8806
8807 - allow $1 nfs_port_t:udp_socket recv_msg;
8808 + allow $1 netport_port_t:udp_socket recv_msg;
8809 ')
8810
8811 ########################################
8812 ## <summary>
8813 -## Do not audit attempts to receive UDP traffic on the nfs port.
8814 +## Do not audit attempts to receive UDP traffic on the netport port.
8815 ## </summary>
8816 ## <param name="domain">
8817 ## <summary>
8818 @@ -55963,17 +56849,17 @@ interface(`corenet_udp_receive_nfs_port',`
8819 ## </param>
8820 ## <infoflow type="none"/>
8821 #
8822 -interface(`corenet_dontaudit_udp_receive_nfs_port',`
8823 +interface(`corenet_dontaudit_udp_receive_netport_port',`
8824 gen_require(`
8825 - type nfs_port_t;
8826 + type netport_port_t;
8827 ')
8828
8829 - dontaudit $1 nfs_port_t:udp_socket recv_msg;
8830 + dontaudit $1 netport_port_t:udp_socket recv_msg;
8831 ')
8832
8833 ########################################
8834 ## <summary>
8835 -## Send and receive UDP traffic on the nfs port.
8836 +## Send and receive UDP traffic on the netport port.
8837 ## </summary>
8838 ## <param name="domain">
8839 ## <summary>
8840 @@ -55982,15 +56868,15 @@ interface(`corenet_dontaudit_udp_receive_nfs_port',`
8841 ## </param>
8842 ## <infoflow type="both" weight="10"/>
8843 #
8844 -interface(`corenet_udp_sendrecv_nfs_port',`
8845 - corenet_udp_send_nfs_port($1)
8846 - corenet_udp_receive_nfs_port($1)
8847 +interface(`corenet_udp_sendrecv_netport_port',`
8848 + corenet_udp_send_netport_port($1)
8849 + corenet_udp_receive_netport_port($1)
8850 ')
8851
8852 ########################################
8853 ## <summary>
8854 ## Do not audit attempts to send and receive
8855 -## UDP traffic on the nfs port.
8856 +## UDP traffic on the netport port.
8857 ## </summary>
8858 ## <param name="domain">
8859 ## <summary>
8860 @@ -55999,14 +56885,14 @@ interface(`corenet_udp_sendrecv_nfs_port',`
8861 ## </param>
8862 ## <infoflow type="none"/>
8863 #
8864 -interface(`corenet_dontaudit_udp_sendrecv_nfs_port',`
8865 - corenet_dontaudit_udp_send_nfs_port($1)
8866 - corenet_dontaudit_udp_receive_nfs_port($1)
8867 +interface(`corenet_dontaudit_udp_sendrecv_netport_port',`
8868 + corenet_dontaudit_udp_send_netport_port($1)
8869 + corenet_dontaudit_udp_receive_netport_port($1)
8870 ')
8871
8872 ########################################
8873 ## <summary>
8874 -## Bind TCP sockets to the nfs port.
8875 +## Bind TCP sockets to the netport port.
8876 ## </summary>
8877 ## <param name="domain">
8878 ## <summary>
8879 @@ -56015,18 +56901,18 @@ interface(`corenet_dontaudit_udp_sendrecv_nfs_port',`
8880 ## </param>
8881 ## <infoflow type="none"/>
8882 #
8883 -interface(`corenet_tcp_bind_nfs_port',`
8884 +interface(`corenet_tcp_bind_netport_port',`
8885 gen_require(`
8886 - type nfs_port_t;
8887 + type netport_port_t;
8888 ')
8889
8890 - allow $1 nfs_port_t:tcp_socket name_bind;
8891 + allow $1 netport_port_t:tcp_socket name_bind;
8892
8893 ')
8894
8895 ########################################
8896 ## <summary>
8897 -## Bind UDP sockets to the nfs port.
8898 +## Bind UDP sockets to the netport port.
8899 ## </summary>
8900 ## <param name="domain">
8901 ## <summary>
8902 @@ -56035,18 +56921,18 @@ interface(`corenet_tcp_bind_nfs_port',`
8903 ## </param>
8904 ## <infoflow type="none"/>
8905 #
8906 -interface(`corenet_udp_bind_nfs_port',`
8907 +interface(`corenet_udp_bind_netport_port',`
8908 gen_require(`
8909 - type nfs_port_t;
8910 + type netport_port_t;
8911 ')
8912
8913 - allow $1 nfs_port_t:udp_socket name_bind;
8914 + allow $1 netport_port_t:udp_socket name_bind;
8915
8916 ')
8917
8918 ########################################
8919 ## <summary>
8920 -## Make a TCP connection to the nfs port.
8921 +## Make a TCP connection to the netport port.
8922 ## </summary>
8923 ## <param name="domain">
8924 ## <summary>
8925 @@ -56054,18 +56940,18 @@ interface(`corenet_udp_bind_nfs_port',`
8926 ## </summary>
8927 ## </param>
8928 #
8929 -interface(`corenet_tcp_connect_nfs_port',`
8930 +interface(`corenet_tcp_connect_netport_port',`
8931 gen_require(`
8932 - type nfs_port_t;
8933 + type netport_port_t;
8934 ')
8935
8936 - allow $1 nfs_port_t:tcp_socket name_connect;
8937 + allow $1 netport_port_t:tcp_socket name_connect;
8938 ')
8939
8940
8941 ########################################
8942 ## <summary>
8943 -## Send nfs_client packets.
8944 +## Send netport_client packets.
8945 ## </summary>
8946 ## <param name="domain">
8947 ## <summary>
8948 @@ -56074,17 +56960,17 @@ interface(`corenet_tcp_connect_nfs_port',`
8949 ## </param>
8950 ## <infoflow type="write" weight="10"/>
8951 #
8952 -interface(`corenet_send_nfs_client_packets',`
8953 +interface(`corenet_send_netport_client_packets',`
8954 gen_require(`
8955 - type nfs_client_packet_t;
8956 + type netport_client_packet_t;
8957 ')
8958
8959 - allow $1 nfs_client_packet_t:packet send;
8960 + allow $1 netport_client_packet_t:packet send;
8961 ')
8962
8963 ########################################
8964 ## <summary>
8965 -## Do not audit attempts to send nfs_client packets.
8966 +## Do not audit attempts to send netport_client packets.
8967 ## </summary>
8968 ## <param name="domain">
8969 ## <summary>
8970 @@ -56093,17 +56979,17 @@ interface(`corenet_send_nfs_client_packets',`
8971 ## </param>
8972 ## <infoflow type="none"/>
8973 #
8974 -interface(`corenet_dontaudit_send_nfs_client_packets',`
8975 +interface(`corenet_dontaudit_send_netport_client_packets',`
8976 gen_require(`
8977 - type nfs_client_packet_t;
8978 + type netport_client_packet_t;
8979 ')
8980
8981 - dontaudit $1 nfs_client_packet_t:packet send;
8982 + dontaudit $1 netport_client_packet_t:packet send;
8983 ')
8984
8985 ########################################
8986 ## <summary>
8987 -## Receive nfs_client packets.
8988 +## Receive netport_client packets.
8989 ## </summary>
8990 ## <param name="domain">
8991 ## <summary>
8992 @@ -56112,17 +56998,17 @@ interface(`corenet_dontaudit_send_nfs_client_packets',`
8993 ## </param>
8994 ## <infoflow type="read" weight="10"/>
8995 #
8996 -interface(`corenet_receive_nfs_client_packets',`
8997 +interface(`corenet_receive_netport_client_packets',`
8998 gen_require(`
8999 - type nfs_client_packet_t;
9000 + type netport_client_packet_t;
9001 ')
9002
9003 - allow $1 nfs_client_packet_t:packet recv;
9004 + allow $1 netport_client_packet_t:packet recv;
9005 ')
9006
9007 ########################################
9008 ## <summary>
9009 -## Do not audit attempts to receive nfs_client packets.
9010 +## Do not audit attempts to receive netport_client packets.
9011 ## </summary>
9012 ## <param name="domain">
9013 ## <summary>
9014 @@ -56131,17 +57017,17 @@ interface(`corenet_receive_nfs_client_packets',`
9015 ## </param>
9016 ## <infoflow type="none"/>
9017 #
9018 -interface(`corenet_dontaudit_receive_nfs_client_packets',`
9019 +interface(`corenet_dontaudit_receive_netport_client_packets',`
9020 gen_require(`
9021 - type nfs_client_packet_t;
9022 + type netport_client_packet_t;
9023 ')
9024
9025 - dontaudit $1 nfs_client_packet_t:packet recv;
9026 + dontaudit $1 netport_client_packet_t:packet recv;
9027 ')
9028
9029 ########################################
9030 ## <summary>
9031 -## Send and receive nfs_client packets.
9032 +## Send and receive netport_client packets.
9033 ## </summary>
9034 ## <param name="domain">
9035 ## <summary>
9036 @@ -56150,14 +57036,14 @@ interface(`corenet_dontaudit_receive_nfs_client_packets',`
9037 ## </param>
9038 ## <infoflow type="both" weight="10"/>
9039 #
9040 -interface(`corenet_sendrecv_nfs_client_packets',`
9041 - corenet_send_nfs_client_packets($1)
9042 - corenet_receive_nfs_client_packets($1)
9043 +interface(`corenet_sendrecv_netport_client_packets',`
9044 + corenet_send_netport_client_packets($1)
9045 + corenet_receive_netport_client_packets($1)
9046 ')
9047
9048 ########################################
9049 ## <summary>
9050 -## Do not audit attempts to send and receive nfs_client packets.
9051 +## Do not audit attempts to send and receive netport_client packets.
9052 ## </summary>
9053 ## <param name="domain">
9054 ## <summary>
9055 @@ -56166,14 +57052,14 @@ interface(`corenet_sendrecv_nfs_client_packets',`
9056 ## </param>
9057 ## <infoflow type="none"/>
9058 #
9059 -interface(`corenet_dontaudit_sendrecv_nfs_client_packets',`
9060 - corenet_dontaudit_send_nfs_client_packets($1)
9061 - corenet_dontaudit_receive_nfs_client_packets($1)
9062 +interface(`corenet_dontaudit_sendrecv_netport_client_packets',`
9063 + corenet_dontaudit_send_netport_client_packets($1)
9064 + corenet_dontaudit_receive_netport_client_packets($1)
9065 ')
9066
9067 ########################################
9068 ## <summary>
9069 -## Relabel packets to nfs_client the packet type.
9070 +## Relabel packets to netport_client the packet type.
9071 ## </summary>
9072 ## <param name="domain">
9073 ## <summary>
9074 @@ -56181,18 +57067,18 @@ interface(`corenet_dontaudit_sendrecv_nfs_client_packets',`
9075 ## </summary>
9076 ## </param>
9077 #
9078 -interface(`corenet_relabelto_nfs_client_packets',`
9079 +interface(`corenet_relabelto_netport_client_packets',`
9080 gen_require(`
9081 - type nfs_client_packet_t;
9082 + type netport_client_packet_t;
9083 ')
9084
9085 - allow $1 nfs_client_packet_t:packet relabelto;
9086 + allow $1 netport_client_packet_t:packet relabelto;
9087 ')
9088
9089
9090 ########################################
9091 ## <summary>
9092 -## Send nfs_server packets.
9093 +## Send netport_server packets.
9094 ## </summary>
9095 ## <param name="domain">
9096 ## <summary>
9097 @@ -56201,17 +57087,17 @@ interface(`corenet_relabelto_nfs_client_packets',`
9098 ## </param>
9099 ## <infoflow type="write" weight="10"/>
9100 #
9101 -interface(`corenet_send_nfs_server_packets',`
9102 +interface(`corenet_send_netport_server_packets',`
9103 gen_require(`
9104 - type nfs_server_packet_t;
9105 + type netport_server_packet_t;
9106 ')
9107
9108 - allow $1 nfs_server_packet_t:packet send;
9109 + allow $1 netport_server_packet_t:packet send;
9110 ')
9111
9112 ########################################
9113 ## <summary>
9114 -## Do not audit attempts to send nfs_server packets.
9115 +## Do not audit attempts to send netport_server packets.
9116 ## </summary>
9117 ## <param name="domain">
9118 ## <summary>
9119 @@ -56220,17 +57106,17 @@ interface(`corenet_send_nfs_server_packets',`
9120 ## </param>
9121 ## <infoflow type="none"/>
9122 #
9123 -interface(`corenet_dontaudit_send_nfs_server_packets',`
9124 +interface(`corenet_dontaudit_send_netport_server_packets',`
9125 gen_require(`
9126 - type nfs_server_packet_t;
9127 + type netport_server_packet_t;
9128 ')
9129
9130 - dontaudit $1 nfs_server_packet_t:packet send;
9131 + dontaudit $1 netport_server_packet_t:packet send;
9132 ')
9133
9134 ########################################
9135 ## <summary>
9136 -## Receive nfs_server packets.
9137 +## Receive netport_server packets.
9138 ## </summary>
9139 ## <param name="domain">
9140 ## <summary>
9141 @@ -56239,17 +57125,17 @@ interface(`corenet_dontaudit_send_nfs_server_packets',`
9142 ## </param>
9143 ## <infoflow type="read" weight="10"/>
9144 #
9145 -interface(`corenet_receive_nfs_server_packets',`
9146 +interface(`corenet_receive_netport_server_packets',`
9147 gen_require(`
9148 - type nfs_server_packet_t;
9149 + type netport_server_packet_t;
9150 ')
9151
9152 - allow $1 nfs_server_packet_t:packet recv;
9153 + allow $1 netport_server_packet_t:packet recv;
9154 ')
9155
9156 ########################################
9157 ## <summary>
9158 -## Do not audit attempts to receive nfs_server packets.
9159 +## Do not audit attempts to receive netport_server packets.
9160 ## </summary>
9161 ## <param name="domain">
9162 ## <summary>
9163 @@ -56258,17 +57144,17 @@ interface(`corenet_receive_nfs_server_packets',`
9164 ## </param>
9165 ## <infoflow type="none"/>
9166 #
9167 -interface(`corenet_dontaudit_receive_nfs_server_packets',`
9168 +interface(`corenet_dontaudit_receive_netport_server_packets',`
9169 gen_require(`
9170 - type nfs_server_packet_t;
9171 + type netport_server_packet_t;
9172 ')
9173
9174 - dontaudit $1 nfs_server_packet_t:packet recv;
9175 + dontaudit $1 netport_server_packet_t:packet recv;
9176 ')
9177
9178 ########################################
9179 ## <summary>
9180 -## Send and receive nfs_server packets.
9181 +## Send and receive netport_server packets.
9182 ## </summary>
9183 ## <param name="domain">
9184 ## <summary>
9185 @@ -56277,14 +57163,14 @@ interface(`corenet_dontaudit_receive_nfs_server_packets',`
9186 ## </param>
9187 ## <infoflow type="both" weight="10"/>
9188 #
9189 -interface(`corenet_sendrecv_nfs_server_packets',`
9190 - corenet_send_nfs_server_packets($1)
9191 - corenet_receive_nfs_server_packets($1)
9192 +interface(`corenet_sendrecv_netport_server_packets',`
9193 + corenet_send_netport_server_packets($1)
9194 + corenet_receive_netport_server_packets($1)
9195 ')
9196
9197 ########################################
9198 ## <summary>
9199 -## Do not audit attempts to send and receive nfs_server packets.
9200 +## Do not audit attempts to send and receive netport_server packets.
9201 ## </summary>
9202 ## <param name="domain">
9203 ## <summary>
9204 @@ -56293,14 +57179,14 @@ interface(`corenet_sendrecv_nfs_server_packets',`
9205 ## </param>
9206 ## <infoflow type="none"/>
9207 #
9208 -interface(`corenet_dontaudit_sendrecv_nfs_server_packets',`
9209 - corenet_dontaudit_send_nfs_server_packets($1)
9210 - corenet_dontaudit_receive_nfs_server_packets($1)
9211 +interface(`corenet_dontaudit_sendrecv_netport_server_packets',`
9212 + corenet_dontaudit_send_netport_server_packets($1)
9213 + corenet_dontaudit_receive_netport_server_packets($1)
9214 ')
9215
9216 ########################################
9217 ## <summary>
9218 -## Relabel packets to nfs_server the packet type.
9219 +## Relabel packets to netport_server the packet type.
9220 ## </summary>
9221 ## <param name="domain">
9222 ## <summary>
9223 @@ -56308,12 +57194,12 @@ interface(`corenet_dontaudit_sendrecv_nfs_server_packets',`
9224 ## </summary>
9225 ## </param>
9226 #
9227 -interface(`corenet_relabelto_nfs_server_packets',`
9228 +interface(`corenet_relabelto_netport_server_packets',`
9229 gen_require(`
9230 - type nfs_server_packet_t;
9231 + type netport_server_packet_t;
9232 ')
9233
9234 - allow $1 nfs_server_packet_t:packet relabelto;
9235 + allow $1 netport_server_packet_t:packet relabelto;
9236 ')
9237
9238
9239 @@ -56321,7 +57207,7 @@ interface(`corenet_relabelto_nfs_server_packets',`
9240
9241 ########################################
9242 ## <summary>
9243 -## Send and receive TCP traffic on the nfsrdma port.
9244 +## Send and receive TCP traffic on the netsupport port.
9245 ## </summary>
9246 ## <param name="domain">
9247 ## <summary>
9248 @@ -56330,17 +57216,17 @@ interface(`corenet_relabelto_nfs_server_packets',`
9249 ## </param>
9250 ## <infoflow type="both" weight="10"/>
9251 #
9252 -interface(`corenet_tcp_sendrecv_nfsrdma_port',`
9253 +interface(`corenet_tcp_sendrecv_netsupport_port',`
9254 gen_require(`
9255 - type nfsrdma_port_t;
9256 + type netsupport_port_t;
9257 ')
9258
9259 - allow $1 nfsrdma_port_t:tcp_socket { send_msg recv_msg };
9260 + allow $1 netsupport_port_t:tcp_socket { send_msg recv_msg };
9261 ')
9262
9263 ########################################
9264 ## <summary>
9265 -## Send UDP traffic on the nfsrdma port.
9266 +## Send UDP traffic on the netsupport port.
9267 ## </summary>
9268 ## <param name="domain">
9269 ## <summary>
9270 @@ -56349,17 +57235,17 @@ interface(`corenet_tcp_sendrecv_nfsrdma_port',`
9271 ## </param>
9272 ## <infoflow type="write" weight="10"/>
9273 #
9274 -interface(`corenet_udp_send_nfsrdma_port',`
9275 +interface(`corenet_udp_send_netsupport_port',`
9276 gen_require(`
9277 - type nfsrdma_port_t;
9278 + type netsupport_port_t;
9279 ')
9280
9281 - allow $1 nfsrdma_port_t:udp_socket send_msg;
9282 + allow $1 netsupport_port_t:udp_socket send_msg;
9283 ')
9284
9285 ########################################
9286 ## <summary>
9287 -## Do not audit attempts to send UDP traffic on the nfsrdma port.
9288 +## Do not audit attempts to send UDP traffic on the netsupport port.
9289 ## </summary>
9290 ## <param name="domain">
9291 ## <summary>
9292 @@ -56368,17 +57254,17 @@ interface(`corenet_udp_send_nfsrdma_port',`
9293 ## </param>
9294 ## <infoflow type="none"/>
9295 #
9296 -interface(`corenet_dontaudit_udp_send_nfsrdma_port',`
9297 +interface(`corenet_dontaudit_udp_send_netsupport_port',`
9298 gen_require(`
9299 - type nfsrdma_port_t;
9300 + type netsupport_port_t;
9301 ')
9302
9303 - dontaudit $1 nfsrdma_port_t:udp_socket send_msg;
9304 + dontaudit $1 netsupport_port_t:udp_socket send_msg;
9305 ')
9306
9307 ########################################
9308 ## <summary>
9309 -## Receive UDP traffic on the nfsrdma port.
9310 +## Receive UDP traffic on the netsupport port.
9311 ## </summary>
9312 ## <param name="domain">
9313 ## <summary>
9314 @@ -56387,17 +57273,17 @@ interface(`corenet_dontaudit_udp_send_nfsrdma_port',`
9315 ## </param>
9316 ## <infoflow type="read" weight="10"/>
9317 #
9318 -interface(`corenet_udp_receive_nfsrdma_port',`
9319 +interface(`corenet_udp_receive_netsupport_port',`
9320 gen_require(`
9321 - type nfsrdma_port_t;
9322 + type netsupport_port_t;
9323 ')
9324
9325 - allow $1 nfsrdma_port_t:udp_socket recv_msg;
9326 + allow $1 netsupport_port_t:udp_socket recv_msg;
9327 ')
9328
9329 ########################################
9330 ## <summary>
9331 -## Do not audit attempts to receive UDP traffic on the nfsrdma port.
9332 +## Do not audit attempts to receive UDP traffic on the netsupport port.
9333 ## </summary>
9334 ## <param name="domain">
9335 ## <summary>
9336 @@ -56406,17 +57292,17 @@ interface(`corenet_udp_receive_nfsrdma_port',`
9337 ## </param>
9338 ## <infoflow type="none"/>
9339 #
9340 -interface(`corenet_dontaudit_udp_receive_nfsrdma_port',`
9341 +interface(`corenet_dontaudit_udp_receive_netsupport_port',`
9342 gen_require(`
9343 - type nfsrdma_port_t;
9344 + type netsupport_port_t;
9345 ')
9346
9347 - dontaudit $1 nfsrdma_port_t:udp_socket recv_msg;
9348 + dontaudit $1 netsupport_port_t:udp_socket recv_msg;
9349 ')
9350
9351 ########################################
9352 ## <summary>
9353 -## Send and receive UDP traffic on the nfsrdma port.
9354 +## Send and receive UDP traffic on the netsupport port.
9355 ## </summary>
9356 ## <param name="domain">
9357 ## <summary>
9358 @@ -56425,15 +57311,15 @@ interface(`corenet_dontaudit_udp_receive_nfsrdma_port',`
9359 ## </param>
9360 ## <infoflow type="both" weight="10"/>
9361 #
9362 -interface(`corenet_udp_sendrecv_nfsrdma_port',`
9363 - corenet_udp_send_nfsrdma_port($1)
9364 - corenet_udp_receive_nfsrdma_port($1)
9365 +interface(`corenet_udp_sendrecv_netsupport_port',`
9366 + corenet_udp_send_netsupport_port($1)
9367 + corenet_udp_receive_netsupport_port($1)
9368 ')
9369
9370 ########################################
9371 ## <summary>
9372 ## Do not audit attempts to send and receive
9373 -## UDP traffic on the nfsrdma port.
9374 +## UDP traffic on the netsupport port.
9375 ## </summary>
9376 ## <param name="domain">
9377 ## <summary>
9378 @@ -56442,14 +57328,14 @@ interface(`corenet_udp_sendrecv_nfsrdma_port',`
9379 ## </param>
9380 ## <infoflow type="none"/>
9381 #
9382 -interface(`corenet_dontaudit_udp_sendrecv_nfsrdma_port',`
9383 - corenet_dontaudit_udp_send_nfsrdma_port($1)
9384 - corenet_dontaudit_udp_receive_nfsrdma_port($1)
9385 +interface(`corenet_dontaudit_udp_sendrecv_netsupport_port',`
9386 + corenet_dontaudit_udp_send_netsupport_port($1)
9387 + corenet_dontaudit_udp_receive_netsupport_port($1)
9388 ')
9389
9390 ########################################
9391 ## <summary>
9392 -## Bind TCP sockets to the nfsrdma port.
9393 +## Bind TCP sockets to the netsupport port.
9394 ## </summary>
9395 ## <param name="domain">
9396 ## <summary>
9397 @@ -56458,18 +57344,18 @@ interface(`corenet_dontaudit_udp_sendrecv_nfsrdma_port',`
9398 ## </param>
9399 ## <infoflow type="none"/>
9400 #
9401 -interface(`corenet_tcp_bind_nfsrdma_port',`
9402 +interface(`corenet_tcp_bind_netsupport_port',`
9403 gen_require(`
9404 - type nfsrdma_port_t;
9405 + type netsupport_port_t;
9406 ')
9407
9408 - allow $1 nfsrdma_port_t:tcp_socket name_bind;
9409 + allow $1 netsupport_port_t:tcp_socket name_bind;
9410
9411 ')
9412
9413 ########################################
9414 ## <summary>
9415 -## Bind UDP sockets to the nfsrdma port.
9416 +## Bind UDP sockets to the netsupport port.
9417 ## </summary>
9418 ## <param name="domain">
9419 ## <summary>
9420 @@ -56478,18 +57364,18 @@ interface(`corenet_tcp_bind_nfsrdma_port',`
9421 ## </param>
9422 ## <infoflow type="none"/>
9423 #
9424 -interface(`corenet_udp_bind_nfsrdma_port',`
9425 +interface(`corenet_udp_bind_netsupport_port',`
9426 gen_require(`
9427 - type nfsrdma_port_t;
9428 + type netsupport_port_t;
9429 ')
9430
9431 - allow $1 nfsrdma_port_t:udp_socket name_bind;
9432 + allow $1 netsupport_port_t:udp_socket name_bind;
9433
9434 ')
9435
9436 ########################################
9437 ## <summary>
9438 -## Make a TCP connection to the nfsrdma port.
9439 +## Make a TCP connection to the netsupport port.
9440 ## </summary>
9441 ## <param name="domain">
9442 ## <summary>
9443 @@ -56497,18 +57383,18 @@ interface(`corenet_udp_bind_nfsrdma_port',`
9444 ## </summary>
9445 ## </param>
9446 #
9447 -interface(`corenet_tcp_connect_nfsrdma_port',`
9448 +interface(`corenet_tcp_connect_netsupport_port',`
9449 gen_require(`
9450 - type nfsrdma_port_t;
9451 + type netsupport_port_t;
9452 ')
9453
9454 - allow $1 nfsrdma_port_t:tcp_socket name_connect;
9455 + allow $1 netsupport_port_t:tcp_socket name_connect;
9456 ')
9457
9458
9459 ########################################
9460 ## <summary>
9461 -## Send nfsrdma_client packets.
9462 +## Send netsupport_client packets.
9463 ## </summary>
9464 ## <param name="domain">
9465 ## <summary>
9466 @@ -56517,17 +57403,17 @@ interface(`corenet_tcp_connect_nfsrdma_port',`
9467 ## </param>
9468 ## <infoflow type="write" weight="10"/>
9469 #
9470 -interface(`corenet_send_nfsrdma_client_packets',`
9471 +interface(`corenet_send_netsupport_client_packets',`
9472 gen_require(`
9473 - type nfsrdma_client_packet_t;
9474 + type netsupport_client_packet_t;
9475 ')
9476
9477 - allow $1 nfsrdma_client_packet_t:packet send;
9478 + allow $1 netsupport_client_packet_t:packet send;
9479 ')
9480
9481 ########################################
9482 ## <summary>
9483 -## Do not audit attempts to send nfsrdma_client packets.
9484 +## Do not audit attempts to send netsupport_client packets.
9485 ## </summary>
9486 ## <param name="domain">
9487 ## <summary>
9488 @@ -56536,17 +57422,17 @@ interface(`corenet_send_nfsrdma_client_packets',`
9489 ## </param>
9490 ## <infoflow type="none"/>
9491 #
9492 -interface(`corenet_dontaudit_send_nfsrdma_client_packets',`
9493 +interface(`corenet_dontaudit_send_netsupport_client_packets',`
9494 gen_require(`
9495 - type nfsrdma_client_packet_t;
9496 + type netsupport_client_packet_t;
9497 ')
9498
9499 - dontaudit $1 nfsrdma_client_packet_t:packet send;
9500 + dontaudit $1 netsupport_client_packet_t:packet send;
9501 ')
9502
9503 ########################################
9504 ## <summary>
9505 -## Receive nfsrdma_client packets.
9506 +## Receive netsupport_client packets.
9507 ## </summary>
9508 ## <param name="domain">
9509 ## <summary>
9510 @@ -56555,17 +57441,17 @@ interface(`corenet_dontaudit_send_nfsrdma_client_packets',`
9511 ## </param>
9512 ## <infoflow type="read" weight="10"/>
9513 #
9514 -interface(`corenet_receive_nfsrdma_client_packets',`
9515 +interface(`corenet_receive_netsupport_client_packets',`
9516 gen_require(`
9517 - type nfsrdma_client_packet_t;
9518 + type netsupport_client_packet_t;
9519 ')
9520
9521 - allow $1 nfsrdma_client_packet_t:packet recv;
9522 + allow $1 netsupport_client_packet_t:packet recv;
9523 ')
9524
9525 ########################################
9526 ## <summary>
9527 -## Do not audit attempts to receive nfsrdma_client packets.
9528 +## Do not audit attempts to receive netsupport_client packets.
9529 ## </summary>
9530 ## <param name="domain">
9531 ## <summary>
9532 @@ -56574,17 +57460,17 @@ interface(`corenet_receive_nfsrdma_client_packets',`
9533 ## </param>
9534 ## <infoflow type="none"/>
9535 #
9536 -interface(`corenet_dontaudit_receive_nfsrdma_client_packets',`
9537 +interface(`corenet_dontaudit_receive_netsupport_client_packets',`
9538 gen_require(`
9539 - type nfsrdma_client_packet_t;
9540 + type netsupport_client_packet_t;
9541 ')
9542
9543 - dontaudit $1 nfsrdma_client_packet_t:packet recv;
9544 + dontaudit $1 netsupport_client_packet_t:packet recv;
9545 ')
9546
9547 ########################################
9548 ## <summary>
9549 -## Send and receive nfsrdma_client packets.
9550 +## Send and receive netsupport_client packets.
9551 ## </summary>
9552 ## <param name="domain">
9553 ## <summary>
9554 @@ -56593,14 +57479,14 @@ interface(`corenet_dontaudit_receive_nfsrdma_client_packets',`
9555 ## </param>
9556 ## <infoflow type="both" weight="10"/>
9557 #
9558 -interface(`corenet_sendrecv_nfsrdma_client_packets',`
9559 - corenet_send_nfsrdma_client_packets($1)
9560 - corenet_receive_nfsrdma_client_packets($1)
9561 +interface(`corenet_sendrecv_netsupport_client_packets',`
9562 + corenet_send_netsupport_client_packets($1)
9563 + corenet_receive_netsupport_client_packets($1)
9564 ')
9565
9566 ########################################
9567 ## <summary>
9568 -## Do not audit attempts to send and receive nfsrdma_client packets.
9569 +## Do not audit attempts to send and receive netsupport_client packets.
9570 ## </summary>
9571 ## <param name="domain">
9572 ## <summary>
9573 @@ -56609,14 +57495,14 @@ interface(`corenet_sendrecv_nfsrdma_client_packets',`
9574 ## </param>
9575 ## <infoflow type="none"/>
9576 #
9577 -interface(`corenet_dontaudit_sendrecv_nfsrdma_client_packets',`
9578 - corenet_dontaudit_send_nfsrdma_client_packets($1)
9579 - corenet_dontaudit_receive_nfsrdma_client_packets($1)
9580 +interface(`corenet_dontaudit_sendrecv_netsupport_client_packets',`
9581 + corenet_dontaudit_send_netsupport_client_packets($1)
9582 + corenet_dontaudit_receive_netsupport_client_packets($1)
9583 ')
9584
9585 ########################################
9586 ## <summary>
9587 -## Relabel packets to nfsrdma_client the packet type.
9588 +## Relabel packets to netsupport_client the packet type.
9589 ## </summary>
9590 ## <param name="domain">
9591 ## <summary>
9592 @@ -56624,18 +57510,18 @@ interface(`corenet_dontaudit_sendrecv_nfsrdma_client_packets',`
9593 ## </summary>
9594 ## </param>
9595 #
9596 -interface(`corenet_relabelto_nfsrdma_client_packets',`
9597 +interface(`corenet_relabelto_netsupport_client_packets',`
9598 gen_require(`
9599 - type nfsrdma_client_packet_t;
9600 + type netsupport_client_packet_t;
9601 ')
9602
9603 - allow $1 nfsrdma_client_packet_t:packet relabelto;
9604 + allow $1 netsupport_client_packet_t:packet relabelto;
9605 ')
9606
9607
9608 ########################################
9609 ## <summary>
9610 -## Send nfsrdma_server packets.
9611 +## Send netsupport_server packets.
9612 ## </summary>
9613 ## <param name="domain">
9614 ## <summary>
9615 @@ -56644,17 +57530,17 @@ interface(`corenet_relabelto_nfsrdma_client_packets',`
9616 ## </param>
9617 ## <infoflow type="write" weight="10"/>
9618 #
9619 -interface(`corenet_send_nfsrdma_server_packets',`
9620 +interface(`corenet_send_netsupport_server_packets',`
9621 gen_require(`
9622 - type nfsrdma_server_packet_t;
9623 + type netsupport_server_packet_t;
9624 ')
9625
9626 - allow $1 nfsrdma_server_packet_t:packet send;
9627 + allow $1 netsupport_server_packet_t:packet send;
9628 ')
9629
9630 ########################################
9631 ## <summary>
9632 -## Do not audit attempts to send nfsrdma_server packets.
9633 +## Do not audit attempts to send netsupport_server packets.
9634 ## </summary>
9635 ## <param name="domain">
9636 ## <summary>
9637 @@ -56663,17 +57549,17 @@ interface(`corenet_send_nfsrdma_server_packets',`
9638 ## </param>
9639 ## <infoflow type="none"/>
9640 #
9641 -interface(`corenet_dontaudit_send_nfsrdma_server_packets',`
9642 +interface(`corenet_dontaudit_send_netsupport_server_packets',`
9643 gen_require(`
9644 - type nfsrdma_server_packet_t;
9645 + type netsupport_server_packet_t;
9646 ')
9647
9648 - dontaudit $1 nfsrdma_server_packet_t:packet send;
9649 + dontaudit $1 netsupport_server_packet_t:packet send;
9650 ')
9651
9652 ########################################
9653 ## <summary>
9654 -## Receive nfsrdma_server packets.
9655 +## Receive netsupport_server packets.
9656 ## </summary>
9657 ## <param name="domain">
9658 ## <summary>
9659 @@ -56682,17 +57568,17 @@ interface(`corenet_dontaudit_send_nfsrdma_server_packets',`
9660 ## </param>
9661 ## <infoflow type="read" weight="10"/>
9662 #
9663 -interface(`corenet_receive_nfsrdma_server_packets',`
9664 +interface(`corenet_receive_netsupport_server_packets',`
9665 gen_require(`
9666 - type nfsrdma_server_packet_t;
9667 + type netsupport_server_packet_t;
9668 ')
9669
9670 - allow $1 nfsrdma_server_packet_t:packet recv;
9671 + allow $1 netsupport_server_packet_t:packet recv;
9672 ')
9673
9674 ########################################
9675 ## <summary>
9676 -## Do not audit attempts to receive nfsrdma_server packets.
9677 +## Do not audit attempts to receive netsupport_server packets.
9678 ## </summary>
9679 ## <param name="domain">
9680 ## <summary>
9681 @@ -56701,17 +57587,17 @@ interface(`corenet_receive_nfsrdma_server_packets',`
9682 ## </param>
9683 ## <infoflow type="none"/>
9684 #
9685 -interface(`corenet_dontaudit_receive_nfsrdma_server_packets',`
9686 +interface(`corenet_dontaudit_receive_netsupport_server_packets',`
9687 gen_require(`
9688 - type nfsrdma_server_packet_t;
9689 + type netsupport_server_packet_t;
9690 ')
9691
9692 - dontaudit $1 nfsrdma_server_packet_t:packet recv;
9693 + dontaudit $1 netsupport_server_packet_t:packet recv;
9694 ')
9695
9696 ########################################
9697 ## <summary>
9698 -## Send and receive nfsrdma_server packets.
9699 +## Send and receive netsupport_server packets.
9700 ## </summary>
9701 ## <param name="domain">
9702 ## <summary>
9703 @@ -56720,14 +57606,14 @@ interface(`corenet_dontaudit_receive_nfsrdma_server_packets',`
9704 ## </param>
9705 ## <infoflow type="both" weight="10"/>
9706 #
9707 -interface(`corenet_sendrecv_nfsrdma_server_packets',`
9708 - corenet_send_nfsrdma_server_packets($1)
9709 - corenet_receive_nfsrdma_server_packets($1)
9710 +interface(`corenet_sendrecv_netsupport_server_packets',`
9711 + corenet_send_netsupport_server_packets($1)
9712 + corenet_receive_netsupport_server_packets($1)
9713 ')
9714
9715 ########################################
9716 ## <summary>
9717 -## Do not audit attempts to send and receive nfsrdma_server packets.
9718 +## Do not audit attempts to send and receive netsupport_server packets.
9719 ## </summary>
9720 ## <param name="domain">
9721 ## <summary>
9722 @@ -56736,14 +57622,14 @@ interface(`corenet_sendrecv_nfsrdma_server_packets',`
9723 ## </param>
9724 ## <infoflow type="none"/>
9725 #
9726 -interface(`corenet_dontaudit_sendrecv_nfsrdma_server_packets',`
9727 - corenet_dontaudit_send_nfsrdma_server_packets($1)
9728 - corenet_dontaudit_receive_nfsrdma_server_packets($1)
9729 +interface(`corenet_dontaudit_sendrecv_netsupport_server_packets',`
9730 + corenet_dontaudit_send_netsupport_server_packets($1)
9731 + corenet_dontaudit_receive_netsupport_server_packets($1)
9732 ')
9733
9734 ########################################
9735 ## <summary>
9736 -## Relabel packets to nfsrdma_server the packet type.
9737 +## Relabel packets to netsupport_server the packet type.
9738 ## </summary>
9739 ## <param name="domain">
9740 ## <summary>
9741 @@ -56751,12 +57637,12 @@ interface(`corenet_dontaudit_sendrecv_nfsrdma_server_packets',`
9742 ## </summary>
9743 ## </param>
9744 #
9745 -interface(`corenet_relabelto_nfsrdma_server_packets',`
9746 +interface(`corenet_relabelto_netsupport_server_packets',`
9747 gen_require(`
9748 - type nfsrdma_server_packet_t;
9749 + type netsupport_server_packet_t;
9750 ')
9751
9752 - allow $1 nfsrdma_server_packet_t:packet relabelto;
9753 + allow $1 netsupport_server_packet_t:packet relabelto;
9754 ')
9755
9756
9757 @@ -56764,7 +57650,7 @@ interface(`corenet_relabelto_nfsrdma_server_packets',`
9758
9759 ########################################
9760 ## <summary>
9761 -## Send and receive TCP traffic on the nmbd port.
9762 +## Send and receive TCP traffic on the nfs port.
9763 ## </summary>
9764 ## <param name="domain">
9765 ## <summary>
9766 @@ -56773,17 +57659,17 @@ interface(`corenet_relabelto_nfsrdma_server_packets',`
9767 ## </param>
9768 ## <infoflow type="both" weight="10"/>
9769 #
9770 -interface(`corenet_tcp_sendrecv_nmbd_port',`
9771 +interface(`corenet_tcp_sendrecv_nfs_port',`
9772 gen_require(`
9773 - type nmbd_port_t;
9774 + type nfs_port_t;
9775 ')
9776
9777 - allow $1 nmbd_port_t:tcp_socket { send_msg recv_msg };
9778 + allow $1 nfs_port_t:tcp_socket { send_msg recv_msg };
9779 ')
9780
9781 ########################################
9782 ## <summary>
9783 -## Send UDP traffic on the nmbd port.
9784 +## Send UDP traffic on the nfs port.
9785 ## </summary>
9786 ## <param name="domain">
9787 ## <summary>
9788 @@ -56792,17 +57678,17 @@ interface(`corenet_tcp_sendrecv_nmbd_port',`
9789 ## </param>
9790 ## <infoflow type="write" weight="10"/>
9791 #
9792 -interface(`corenet_udp_send_nmbd_port',`
9793 +interface(`corenet_udp_send_nfs_port',`
9794 gen_require(`
9795 - type nmbd_port_t;
9796 + type nfs_port_t;
9797 ')
9798
9799 - allow $1 nmbd_port_t:udp_socket send_msg;
9800 + allow $1 nfs_port_t:udp_socket send_msg;
9801 ')
9802
9803 ########################################
9804 ## <summary>
9805 -## Do not audit attempts to send UDP traffic on the nmbd port.
9806 +## Do not audit attempts to send UDP traffic on the nfs port.
9807 ## </summary>
9808 ## <param name="domain">
9809 ## <summary>
9810 @@ -56811,17 +57697,17 @@ interface(`corenet_udp_send_nmbd_port',`
9811 ## </param>
9812 ## <infoflow type="none"/>
9813 #
9814 -interface(`corenet_dontaudit_udp_send_nmbd_port',`
9815 +interface(`corenet_dontaudit_udp_send_nfs_port',`
9816 gen_require(`
9817 - type nmbd_port_t;
9818 + type nfs_port_t;
9819 ')
9820
9821 - dontaudit $1 nmbd_port_t:udp_socket send_msg;
9822 + dontaudit $1 nfs_port_t:udp_socket send_msg;
9823 ')
9824
9825 ########################################
9826 ## <summary>
9827 -## Receive UDP traffic on the nmbd port.
9828 +## Receive UDP traffic on the nfs port.
9829 ## </summary>
9830 ## <param name="domain">
9831 ## <summary>
9832 @@ -56830,17 +57716,17 @@ interface(`corenet_dontaudit_udp_send_nmbd_port',`
9833 ## </param>
9834 ## <infoflow type="read" weight="10"/>
9835 #
9836 -interface(`corenet_udp_receive_nmbd_port',`
9837 +interface(`corenet_udp_receive_nfs_port',`
9838 gen_require(`
9839 - type nmbd_port_t;
9840 + type nfs_port_t;
9841 ')
9842
9843 - allow $1 nmbd_port_t:udp_socket recv_msg;
9844 + allow $1 nfs_port_t:udp_socket recv_msg;
9845 ')
9846
9847 ########################################
9848 ## <summary>
9849 -## Do not audit attempts to receive UDP traffic on the nmbd port.
9850 +## Do not audit attempts to receive UDP traffic on the nfs port.
9851 ## </summary>
9852 ## <param name="domain">
9853 ## <summary>
9854 @@ -56849,17 +57735,17 @@ interface(`corenet_udp_receive_nmbd_port',`
9855 ## </param>
9856 ## <infoflow type="none"/>
9857 #
9858 -interface(`corenet_dontaudit_udp_receive_nmbd_port',`
9859 +interface(`corenet_dontaudit_udp_receive_nfs_port',`
9860 gen_require(`
9861 - type nmbd_port_t;
9862 + type nfs_port_t;
9863 ')
9864
9865 - dontaudit $1 nmbd_port_t:udp_socket recv_msg;
9866 + dontaudit $1 nfs_port_t:udp_socket recv_msg;
9867 ')
9868
9869 ########################################
9870 ## <summary>
9871 -## Send and receive UDP traffic on the nmbd port.
9872 +## Send and receive UDP traffic on the nfs port.
9873 ## </summary>
9874 ## <param name="domain">
9875 ## <summary>
9876 @@ -56868,15 +57754,15 @@ interface(`corenet_dontaudit_udp_receive_nmbd_port',`
9877 ## </param>
9878 ## <infoflow type="both" weight="10"/>
9879 #
9880 -interface(`corenet_udp_sendrecv_nmbd_port',`
9881 - corenet_udp_send_nmbd_port($1)
9882 - corenet_udp_receive_nmbd_port($1)
9883 +interface(`corenet_udp_sendrecv_nfs_port',`
9884 + corenet_udp_send_nfs_port($1)
9885 + corenet_udp_receive_nfs_port($1)
9886 ')
9887
9888 ########################################
9889 ## <summary>
9890 ## Do not audit attempts to send and receive
9891 -## UDP traffic on the nmbd port.
9892 +## UDP traffic on the nfs port.
9893 ## </summary>
9894 ## <param name="domain">
9895 ## <summary>
9896 @@ -56885,14 +57771,14 @@ interface(`corenet_udp_sendrecv_nmbd_port',`
9897 ## </param>
9898 ## <infoflow type="none"/>
9899 #
9900 -interface(`corenet_dontaudit_udp_sendrecv_nmbd_port',`
9901 - corenet_dontaudit_udp_send_nmbd_port($1)
9902 - corenet_dontaudit_udp_receive_nmbd_port($1)
9903 +interface(`corenet_dontaudit_udp_sendrecv_nfs_port',`
9904 + corenet_dontaudit_udp_send_nfs_port($1)
9905 + corenet_dontaudit_udp_receive_nfs_port($1)
9906 ')
9907
9908 ########################################
9909 ## <summary>
9910 -## Bind TCP sockets to the nmbd port.
9911 +## Bind TCP sockets to the nfs port.
9912 ## </summary>
9913 ## <param name="domain">
9914 ## <summary>
9915 @@ -56901,18 +57787,18 @@ interface(`corenet_dontaudit_udp_sendrecv_nmbd_port',`
9916 ## </param>
9917 ## <infoflow type="none"/>
9918 #
9919 -interface(`corenet_tcp_bind_nmbd_port',`
9920 +interface(`corenet_tcp_bind_nfs_port',`
9921 gen_require(`
9922 - type nmbd_port_t;
9923 + type nfs_port_t;
9924 ')
9925
9926 - allow $1 nmbd_port_t:tcp_socket name_bind;
9927 - allow $1 self:capability net_bind_service;
9928 + allow $1 nfs_port_t:tcp_socket name_bind;
9929 +
9930 ')
9931
9932 ########################################
9933 ## <summary>
9934 -## Bind UDP sockets to the nmbd port.
9935 +## Bind UDP sockets to the nfs port.
9936 ## </summary>
9937 ## <param name="domain">
9938 ## <summary>
9939 @@ -56921,18 +57807,18 @@ interface(`corenet_tcp_bind_nmbd_port',`
9940 ## </param>
9941 ## <infoflow type="none"/>
9942 #
9943 -interface(`corenet_udp_bind_nmbd_port',`
9944 +interface(`corenet_udp_bind_nfs_port',`
9945 gen_require(`
9946 - type nmbd_port_t;
9947 + type nfs_port_t;
9948 ')
9949
9950 - allow $1 nmbd_port_t:udp_socket name_bind;
9951 - allow $1 self:capability net_bind_service;
9952 + allow $1 nfs_port_t:udp_socket name_bind;
9953 +
9954 ')
9955
9956 ########################################
9957 ## <summary>
9958 -## Make a TCP connection to the nmbd port.
9959 +## Make a TCP connection to the nfs port.
9960 ## </summary>
9961 ## <param name="domain">
9962 ## <summary>
9963 @@ -56940,18 +57826,18 @@ interface(`corenet_udp_bind_nmbd_port',`
9964 ## </summary>
9965 ## </param>
9966 #
9967 -interface(`corenet_tcp_connect_nmbd_port',`
9968 +interface(`corenet_tcp_connect_nfs_port',`
9969 gen_require(`
9970 - type nmbd_port_t;
9971 + type nfs_port_t;
9972 ')
9973
9974 - allow $1 nmbd_port_t:tcp_socket name_connect;
9975 + allow $1 nfs_port_t:tcp_socket name_connect;
9976 ')
9977
9978
9979 ########################################
9980 ## <summary>
9981 -## Send nmbd_client packets.
9982 +## Send nfs_client packets.
9983 ## </summary>
9984 ## <param name="domain">
9985 ## <summary>
9986 @@ -56960,17 +57846,17 @@ interface(`corenet_tcp_connect_nmbd_port',`
9987 ## </param>
9988 ## <infoflow type="write" weight="10"/>
9989 #
9990 -interface(`corenet_send_nmbd_client_packets',`
9991 +interface(`corenet_send_nfs_client_packets',`
9992 gen_require(`
9993 - type nmbd_client_packet_t;
9994 + type nfs_client_packet_t;
9995 ')
9996
9997 - allow $1 nmbd_client_packet_t:packet send;
9998 + allow $1 nfs_client_packet_t:packet send;
9999 ')
10000
10001 ########################################
10002 ## <summary>
10003 -## Do not audit attempts to send nmbd_client packets.
10004 +## Do not audit attempts to send nfs_client packets.
10005 ## </summary>
10006 ## <param name="domain">
10007 ## <summary>
10008 @@ -56979,17 +57865,17 @@ interface(`corenet_send_nmbd_client_packets',`
10009 ## </param>
10010 ## <infoflow type="none"/>
10011 #
10012 -interface(`corenet_dontaudit_send_nmbd_client_packets',`
10013 +interface(`corenet_dontaudit_send_nfs_client_packets',`
10014 gen_require(`
10015 - type nmbd_client_packet_t;
10016 + type nfs_client_packet_t;
10017 ')
10018
10019 - dontaudit $1 nmbd_client_packet_t:packet send;
10020 + dontaudit $1 nfs_client_packet_t:packet send;
10021 ')
10022
10023 ########################################
10024 ## <summary>
10025 -## Receive nmbd_client packets.
10026 +## Receive nfs_client packets.
10027 ## </summary>
10028 ## <param name="domain">
10029 ## <summary>
10030 @@ -56998,17 +57884,17 @@ interface(`corenet_dontaudit_send_nmbd_client_packets',`
10031 ## </param>
10032 ## <infoflow type="read" weight="10"/>
10033 #
10034 -interface(`corenet_receive_nmbd_client_packets',`
10035 +interface(`corenet_receive_nfs_client_packets',`
10036 gen_require(`
10037 - type nmbd_client_packet_t;
10038 + type nfs_client_packet_t;
10039 ')
10040
10041 - allow $1 nmbd_client_packet_t:packet recv;
10042 + allow $1 nfs_client_packet_t:packet recv;
10043 ')
10044
10045 ########################################
10046 ## <summary>
10047 -## Do not audit attempts to receive nmbd_client packets.
10048 +## Do not audit attempts to receive nfs_client packets.
10049 ## </summary>
10050 ## <param name="domain">
10051 ## <summary>
10052 @@ -57017,17 +57903,17 @@ interface(`corenet_receive_nmbd_client_packets',`
10053 ## </param>
10054 ## <infoflow type="none"/>
10055 #
10056 -interface(`corenet_dontaudit_receive_nmbd_client_packets',`
10057 +interface(`corenet_dontaudit_receive_nfs_client_packets',`
10058 gen_require(`
10059 - type nmbd_client_packet_t;
10060 + type nfs_client_packet_t;
10061 ')
10062
10063 - dontaudit $1 nmbd_client_packet_t:packet recv;
10064 + dontaudit $1 nfs_client_packet_t:packet recv;
10065 ')
10066
10067 ########################################
10068 ## <summary>
10069 -## Send and receive nmbd_client packets.
10070 +## Send and receive nfs_client packets.
10071 ## </summary>
10072 ## <param name="domain">
10073 ## <summary>
10074 @@ -57036,14 +57922,14 @@ interface(`corenet_dontaudit_receive_nmbd_client_packets',`
10075 ## </param>
10076 ## <infoflow type="both" weight="10"/>
10077 #
10078 -interface(`corenet_sendrecv_nmbd_client_packets',`
10079 - corenet_send_nmbd_client_packets($1)
10080 - corenet_receive_nmbd_client_packets($1)
10081 +interface(`corenet_sendrecv_nfs_client_packets',`
10082 + corenet_send_nfs_client_packets($1)
10083 + corenet_receive_nfs_client_packets($1)
10084 ')
10085
10086 ########################################
10087 ## <summary>
10088 -## Do not audit attempts to send and receive nmbd_client packets.
10089 +## Do not audit attempts to send and receive nfs_client packets.
10090 ## </summary>
10091 ## <param name="domain">
10092 ## <summary>
10093 @@ -57052,14 +57938,14 @@ interface(`corenet_sendrecv_nmbd_client_packets',`
10094 ## </param>
10095 ## <infoflow type="none"/>
10096 #
10097 -interface(`corenet_dontaudit_sendrecv_nmbd_client_packets',`
10098 - corenet_dontaudit_send_nmbd_client_packets($1)
10099 - corenet_dontaudit_receive_nmbd_client_packets($1)
10100 +interface(`corenet_dontaudit_sendrecv_nfs_client_packets',`
10101 + corenet_dontaudit_send_nfs_client_packets($1)
10102 + corenet_dontaudit_receive_nfs_client_packets($1)
10103 ')
10104
10105 ########################################
10106 ## <summary>
10107 -## Relabel packets to nmbd_client the packet type.
10108 +## Relabel packets to nfs_client the packet type.
10109 ## </summary>
10110 ## <param name="domain">
10111 ## <summary>
10112 @@ -57067,18 +57953,18 @@ interface(`corenet_dontaudit_sendrecv_nmbd_client_packets',`
10113 ## </summary>
10114 ## </param>
10115 #
10116 -interface(`corenet_relabelto_nmbd_client_packets',`
10117 +interface(`corenet_relabelto_nfs_client_packets',`
10118 gen_require(`
10119 - type nmbd_client_packet_t;
10120 + type nfs_client_packet_t;
10121 ')
10122
10123 - allow $1 nmbd_client_packet_t:packet relabelto;
10124 + allow $1 nfs_client_packet_t:packet relabelto;
10125 ')
10126
10127
10128 ########################################
10129 ## <summary>
10130 -## Send nmbd_server packets.
10131 +## Send nfs_server packets.
10132 ## </summary>
10133 ## <param name="domain">
10134 ## <summary>
10135 @@ -57087,17 +57973,17 @@ interface(`corenet_relabelto_nmbd_client_packets',`
10136 ## </param>
10137 ## <infoflow type="write" weight="10"/>
10138 #
10139 -interface(`corenet_send_nmbd_server_packets',`
10140 +interface(`corenet_send_nfs_server_packets',`
10141 gen_require(`
10142 - type nmbd_server_packet_t;
10143 + type nfs_server_packet_t;
10144 ')
10145
10146 - allow $1 nmbd_server_packet_t:packet send;
10147 + allow $1 nfs_server_packet_t:packet send;
10148 ')
10149
10150 ########################################
10151 ## <summary>
10152 -## Do not audit attempts to send nmbd_server packets.
10153 +## Do not audit attempts to send nfs_server packets.
10154 ## </summary>
10155 ## <param name="domain">
10156 ## <summary>
10157 @@ -57106,17 +57992,17 @@ interface(`corenet_send_nmbd_server_packets',`
10158 ## </param>
10159 ## <infoflow type="none"/>
10160 #
10161 -interface(`corenet_dontaudit_send_nmbd_server_packets',`
10162 +interface(`corenet_dontaudit_send_nfs_server_packets',`
10163 gen_require(`
10164 - type nmbd_server_packet_t;
10165 + type nfs_server_packet_t;
10166 ')
10167
10168 - dontaudit $1 nmbd_server_packet_t:packet send;
10169 + dontaudit $1 nfs_server_packet_t:packet send;
10170 ')
10171
10172 ########################################
10173 ## <summary>
10174 -## Receive nmbd_server packets.
10175 +## Receive nfs_server packets.
10176 ## </summary>
10177 ## <param name="domain">
10178 ## <summary>
10179 @@ -57125,17 +58011,17 @@ interface(`corenet_dontaudit_send_nmbd_server_packets',`
10180 ## </param>
10181 ## <infoflow type="read" weight="10"/>
10182 #
10183 -interface(`corenet_receive_nmbd_server_packets',`
10184 +interface(`corenet_receive_nfs_server_packets',`
10185 gen_require(`
10186 - type nmbd_server_packet_t;
10187 + type nfs_server_packet_t;
10188 ')
10189
10190 - allow $1 nmbd_server_packet_t:packet recv;
10191 + allow $1 nfs_server_packet_t:packet recv;
10192 ')
10193
10194 ########################################
10195 ## <summary>
10196 -## Do not audit attempts to receive nmbd_server packets.
10197 +## Do not audit attempts to receive nfs_server packets.
10198 ## </summary>
10199 ## <param name="domain">
10200 ## <summary>
10201 @@ -57144,17 +58030,17 @@ interface(`corenet_receive_nmbd_server_packets',`
10202 ## </param>
10203 ## <infoflow type="none"/>
10204 #
10205 -interface(`corenet_dontaudit_receive_nmbd_server_packets',`
10206 +interface(`corenet_dontaudit_receive_nfs_server_packets',`
10207 gen_require(`
10208 - type nmbd_server_packet_t;
10209 + type nfs_server_packet_t;
10210 ')
10211
10212 - dontaudit $1 nmbd_server_packet_t:packet recv;
10213 + dontaudit $1 nfs_server_packet_t:packet recv;
10214 ')
10215
10216 ########################################
10217 ## <summary>
10218 -## Send and receive nmbd_server packets.
10219 +## Send and receive nfs_server packets.
10220 ## </summary>
10221 ## <param name="domain">
10222 ## <summary>
10223 @@ -57163,14 +58049,14 @@ interface(`corenet_dontaudit_receive_nmbd_server_packets',`
10224 ## </param>
10225 ## <infoflow type="both" weight="10"/>
10226 #
10227 -interface(`corenet_sendrecv_nmbd_server_packets',`
10228 - corenet_send_nmbd_server_packets($1)
10229 - corenet_receive_nmbd_server_packets($1)
10230 +interface(`corenet_sendrecv_nfs_server_packets',`
10231 + corenet_send_nfs_server_packets($1)
10232 + corenet_receive_nfs_server_packets($1)
10233 ')
10234
10235 ########################################
10236 ## <summary>
10237 -## Do not audit attempts to send and receive nmbd_server packets.
10238 +## Do not audit attempts to send and receive nfs_server packets.
10239 ## </summary>
10240 ## <param name="domain">
10241 ## <summary>
10242 @@ -57179,14 +58065,14 @@ interface(`corenet_sendrecv_nmbd_server_packets',`
10243 ## </param>
10244 ## <infoflow type="none"/>
10245 #
10246 -interface(`corenet_dontaudit_sendrecv_nmbd_server_packets',`
10247 - corenet_dontaudit_send_nmbd_server_packets($1)
10248 - corenet_dontaudit_receive_nmbd_server_packets($1)
10249 +interface(`corenet_dontaudit_sendrecv_nfs_server_packets',`
10250 + corenet_dontaudit_send_nfs_server_packets($1)
10251 + corenet_dontaudit_receive_nfs_server_packets($1)
10252 ')
10253
10254 ########################################
10255 ## <summary>
10256 -## Relabel packets to nmbd_server the packet type.
10257 +## Relabel packets to nfs_server the packet type.
10258 ## </summary>
10259 ## <param name="domain">
10260 ## <summary>
10261 @@ -57194,12 +58080,12 @@ interface(`corenet_dontaudit_sendrecv_nmbd_server_packets',`
10262 ## </summary>
10263 ## </param>
10264 #
10265 -interface(`corenet_relabelto_nmbd_server_packets',`
10266 +interface(`corenet_relabelto_nfs_server_packets',`
10267 gen_require(`
10268 - type nmbd_server_packet_t;
10269 + type nfs_server_packet_t;
10270 ')
10271
10272 - allow $1 nmbd_server_packet_t:packet relabelto;
10273 + allow $1 nfs_server_packet_t:packet relabelto;
10274 ')
10275
10276
10277 @@ -57207,7 +58093,7 @@ interface(`corenet_relabelto_nmbd_server_packets',`
10278
10279 ########################################
10280 ## <summary>
10281 -## Send and receive TCP traffic on the ntop port.
10282 +## Send and receive TCP traffic on the nfsrdma port.
10283 ## </summary>
10284 ## <param name="domain">
10285 ## <summary>
10286 @@ -57216,17 +58102,17 @@ interface(`corenet_relabelto_nmbd_server_packets',`
10287 ## </param>
10288 ## <infoflow type="both" weight="10"/>
10289 #
10290 -interface(`corenet_tcp_sendrecv_ntop_port',`
10291 +interface(`corenet_tcp_sendrecv_nfsrdma_port',`
10292 gen_require(`
10293 - type ntop_port_t;
10294 + type nfsrdma_port_t;
10295 ')
10296
10297 - allow $1 ntop_port_t:tcp_socket { send_msg recv_msg };
10298 + allow $1 nfsrdma_port_t:tcp_socket { send_msg recv_msg };
10299 ')
10300
10301 ########################################
10302 ## <summary>
10303 -## Send UDP traffic on the ntop port.
10304 +## Send UDP traffic on the nfsrdma port.
10305 ## </summary>
10306 ## <param name="domain">
10307 ## <summary>
10308 @@ -57235,17 +58121,17 @@ interface(`corenet_tcp_sendrecv_ntop_port',`
10309 ## </param>
10310 ## <infoflow type="write" weight="10"/>
10311 #
10312 -interface(`corenet_udp_send_ntop_port',`
10313 +interface(`corenet_udp_send_nfsrdma_port',`
10314 gen_require(`
10315 - type ntop_port_t;
10316 + type nfsrdma_port_t;
10317 ')
10318
10319 - allow $1 ntop_port_t:udp_socket send_msg;
10320 + allow $1 nfsrdma_port_t:udp_socket send_msg;
10321 ')
10322
10323 ########################################
10324 ## <summary>
10325 -## Do not audit attempts to send UDP traffic on the ntop port.
10326 +## Do not audit attempts to send UDP traffic on the nfsrdma port.
10327 ## </summary>
10328 ## <param name="domain">
10329 ## <summary>
10330 @@ -57254,17 +58140,17 @@ interface(`corenet_udp_send_ntop_port',`
10331 ## </param>
10332 ## <infoflow type="none"/>
10333 #
10334 -interface(`corenet_dontaudit_udp_send_ntop_port',`
10335 +interface(`corenet_dontaudit_udp_send_nfsrdma_port',`
10336 gen_require(`
10337 - type ntop_port_t;
10338 + type nfsrdma_port_t;
10339 ')
10340
10341 - dontaudit $1 ntop_port_t:udp_socket send_msg;
10342 + dontaudit $1 nfsrdma_port_t:udp_socket send_msg;
10343 ')
10344
10345 ########################################
10346 ## <summary>
10347 -## Receive UDP traffic on the ntop port.
10348 +## Receive UDP traffic on the nfsrdma port.
10349 ## </summary>
10350 ## <param name="domain">
10351 ## <summary>
10352 @@ -57273,17 +58159,17 @@ interface(`corenet_dontaudit_udp_send_ntop_port',`
10353 ## </param>
10354 ## <infoflow type="read" weight="10"/>
10355 #
10356 -interface(`corenet_udp_receive_ntop_port',`
10357 +interface(`corenet_udp_receive_nfsrdma_port',`
10358 gen_require(`
10359 - type ntop_port_t;
10360 + type nfsrdma_port_t;
10361 ')
10362
10363 - allow $1 ntop_port_t:udp_socket recv_msg;
10364 + allow $1 nfsrdma_port_t:udp_socket recv_msg;
10365 ')
10366
10367 ########################################
10368 ## <summary>
10369 -## Do not audit attempts to receive UDP traffic on the ntop port.
10370 +## Do not audit attempts to receive UDP traffic on the nfsrdma port.
10371 ## </summary>
10372 ## <param name="domain">
10373 ## <summary>
10374 @@ -57292,17 +58178,17 @@ interface(`corenet_udp_receive_ntop_port',`
10375 ## </param>
10376 ## <infoflow type="none"/>
10377 #
10378 -interface(`corenet_dontaudit_udp_receive_ntop_port',`
10379 +interface(`corenet_dontaudit_udp_receive_nfsrdma_port',`
10380 gen_require(`
10381 - type ntop_port_t;
10382 + type nfsrdma_port_t;
10383 ')
10384
10385 - dontaudit $1 ntop_port_t:udp_socket recv_msg;
10386 + dontaudit $1 nfsrdma_port_t:udp_socket recv_msg;
10387 ')
10388
10389 ########################################
10390 ## <summary>
10391 -## Send and receive UDP traffic on the ntop port.
10392 +## Send and receive UDP traffic on the nfsrdma port.
10393 ## </summary>
10394 ## <param name="domain">
10395 ## <summary>
10396 @@ -57311,15 +58197,15 @@ interface(`corenet_dontaudit_udp_receive_ntop_port',`
10397 ## </param>
10398 ## <infoflow type="both" weight="10"/>
10399 #
10400 -interface(`corenet_udp_sendrecv_ntop_port',`
10401 - corenet_udp_send_ntop_port($1)
10402 - corenet_udp_receive_ntop_port($1)
10403 +interface(`corenet_udp_sendrecv_nfsrdma_port',`
10404 + corenet_udp_send_nfsrdma_port($1)
10405 + corenet_udp_receive_nfsrdma_port($1)
10406 ')
10407
10408 ########################################
10409 ## <summary>
10410 ## Do not audit attempts to send and receive
10411 -## UDP traffic on the ntop port.
10412 +## UDP traffic on the nfsrdma port.
10413 ## </summary>
10414 ## <param name="domain">
10415 ## <summary>
10416 @@ -57328,14 +58214,14 @@ interface(`corenet_udp_sendrecv_ntop_port',`
10417 ## </param>
10418 ## <infoflow type="none"/>
10419 #
10420 -interface(`corenet_dontaudit_udp_sendrecv_ntop_port',`
10421 - corenet_dontaudit_udp_send_ntop_port($1)
10422 - corenet_dontaudit_udp_receive_ntop_port($1)
10423 +interface(`corenet_dontaudit_udp_sendrecv_nfsrdma_port',`
10424 + corenet_dontaudit_udp_send_nfsrdma_port($1)
10425 + corenet_dontaudit_udp_receive_nfsrdma_port($1)
10426 ')
10427
10428 ########################################
10429 ## <summary>
10430 -## Bind TCP sockets to the ntop port.
10431 +## Bind TCP sockets to the nfsrdma port.
10432 ## </summary>
10433 ## <param name="domain">
10434 ## <summary>
10435 @@ -57344,18 +58230,18 @@ interface(`corenet_dontaudit_udp_sendrecv_ntop_port',`
10436 ## </param>
10437 ## <infoflow type="none"/>
10438 #
10439 -interface(`corenet_tcp_bind_ntop_port',`
10440 +interface(`corenet_tcp_bind_nfsrdma_port',`
10441 gen_require(`
10442 - type ntop_port_t;
10443 + type nfsrdma_port_t;
10444 ')
10445
10446 - allow $1 ntop_port_t:tcp_socket name_bind;
10447 - allow $1 self:capability net_bind_service;
10448 + allow $1 nfsrdma_port_t:tcp_socket name_bind;
10449 +
10450 ')
10451
10452 ########################################
10453 ## <summary>
10454 -## Bind UDP sockets to the ntop port.
10455 +## Bind UDP sockets to the nfsrdma port.
10456 ## </summary>
10457 ## <param name="domain">
10458 ## <summary>
10459 @@ -57364,18 +58250,18 @@ interface(`corenet_tcp_bind_ntop_port',`
10460 ## </param>
10461 ## <infoflow type="none"/>
10462 #
10463 -interface(`corenet_udp_bind_ntop_port',`
10464 +interface(`corenet_udp_bind_nfsrdma_port',`
10465 gen_require(`
10466 - type ntop_port_t;
10467 + type nfsrdma_port_t;
10468 ')
10469
10470 - allow $1 ntop_port_t:udp_socket name_bind;
10471 - allow $1 self:capability net_bind_service;
10472 + allow $1 nfsrdma_port_t:udp_socket name_bind;
10473 +
10474 ')
10475
10476 ########################################
10477 ## <summary>
10478 -## Make a TCP connection to the ntop port.
10479 +## Make a TCP connection to the nfsrdma port.
10480 ## </summary>
10481 ## <param name="domain">
10482 ## <summary>
10483 @@ -57383,18 +58269,18 @@ interface(`corenet_udp_bind_ntop_port',`
10484 ## </summary>
10485 ## </param>
10486 #
10487 -interface(`corenet_tcp_connect_ntop_port',`
10488 +interface(`corenet_tcp_connect_nfsrdma_port',`
10489 gen_require(`
10490 - type ntop_port_t;
10491 + type nfsrdma_port_t;
10492 ')
10493
10494 - allow $1 ntop_port_t:tcp_socket name_connect;
10495 + allow $1 nfsrdma_port_t:tcp_socket name_connect;
10496 ')
10497
10498
10499 ########################################
10500 ## <summary>
10501 -## Send ntop_client packets.
10502 +## Send nfsrdma_client packets.
10503 ## </summary>
10504 ## <param name="domain">
10505 ## <summary>
10506 @@ -57403,17 +58289,17 @@ interface(`corenet_tcp_connect_ntop_port',`
10507 ## </param>
10508 ## <infoflow type="write" weight="10"/>
10509 #
10510 -interface(`corenet_send_ntop_client_packets',`
10511 +interface(`corenet_send_nfsrdma_client_packets',`
10512 gen_require(`
10513 - type ntop_client_packet_t;
10514 + type nfsrdma_client_packet_t;
10515 ')
10516
10517 - allow $1 ntop_client_packet_t:packet send;
10518 + allow $1 nfsrdma_client_packet_t:packet send;
10519 ')
10520
10521 ########################################
10522 ## <summary>
10523 -## Do not audit attempts to send ntop_client packets.
10524 +## Do not audit attempts to send nfsrdma_client packets.
10525 ## </summary>
10526 ## <param name="domain">
10527 ## <summary>
10528 @@ -57422,17 +58308,17 @@ interface(`corenet_send_ntop_client_packets',`
10529 ## </param>
10530 ## <infoflow type="none"/>
10531 #
10532 -interface(`corenet_dontaudit_send_ntop_client_packets',`
10533 +interface(`corenet_dontaudit_send_nfsrdma_client_packets',`
10534 gen_require(`
10535 - type ntop_client_packet_t;
10536 + type nfsrdma_client_packet_t;
10537 ')
10538
10539 - dontaudit $1 ntop_client_packet_t:packet send;
10540 + dontaudit $1 nfsrdma_client_packet_t:packet send;
10541 ')
10542
10543 ########################################
10544 ## <summary>
10545 -## Receive ntop_client packets.
10546 +## Receive nfsrdma_client packets.
10547 ## </summary>
10548 ## <param name="domain">
10549 ## <summary>
10550 @@ -57441,17 +58327,17 @@ interface(`corenet_dontaudit_send_ntop_client_packets',`
10551 ## </param>
10552 ## <infoflow type="read" weight="10"/>
10553 #
10554 -interface(`corenet_receive_ntop_client_packets',`
10555 +interface(`corenet_receive_nfsrdma_client_packets',`
10556 gen_require(`
10557 - type ntop_client_packet_t;
10558 + type nfsrdma_client_packet_t;
10559 ')
10560
10561 - allow $1 ntop_client_packet_t:packet recv;
10562 + allow $1 nfsrdma_client_packet_t:packet recv;
10563 ')
10564
10565 ########################################
10566 ## <summary>
10567 -## Do not audit attempts to receive ntop_client packets.
10568 +## Do not audit attempts to receive nfsrdma_client packets.
10569 ## </summary>
10570 ## <param name="domain">
10571 ## <summary>
10572 @@ -57460,17 +58346,17 @@ interface(`corenet_receive_ntop_client_packets',`
10573 ## </param>
10574 ## <infoflow type="none"/>
10575 #
10576 -interface(`corenet_dontaudit_receive_ntop_client_packets',`
10577 +interface(`corenet_dontaudit_receive_nfsrdma_client_packets',`
10578 gen_require(`
10579 - type ntop_client_packet_t;
10580 + type nfsrdma_client_packet_t;
10581 ')
10582
10583 - dontaudit $1 ntop_client_packet_t:packet recv;
10584 + dontaudit $1 nfsrdma_client_packet_t:packet recv;
10585 ')
10586
10587 ########################################
10588 ## <summary>
10589 -## Send and receive ntop_client packets.
10590 +## Send and receive nfsrdma_client packets.
10591 ## </summary>
10592 ## <param name="domain">
10593 ## <summary>
10594 @@ -57479,14 +58365,14 @@ interface(`corenet_dontaudit_receive_ntop_client_packets',`
10595 ## </param>
10596 ## <infoflow type="both" weight="10"/>
10597 #
10598 -interface(`corenet_sendrecv_ntop_client_packets',`
10599 - corenet_send_ntop_client_packets($1)
10600 - corenet_receive_ntop_client_packets($1)
10601 +interface(`corenet_sendrecv_nfsrdma_client_packets',`
10602 + corenet_send_nfsrdma_client_packets($1)
10603 + corenet_receive_nfsrdma_client_packets($1)
10604 ')
10605
10606 ########################################
10607 ## <summary>
10608 -## Do not audit attempts to send and receive ntop_client packets.
10609 +## Do not audit attempts to send and receive nfsrdma_client packets.
10610 ## </summary>
10611 ## <param name="domain">
10612 ## <summary>
10613 @@ -57495,14 +58381,14 @@ interface(`corenet_sendrecv_ntop_client_packets',`
10614 ## </param>
10615 ## <infoflow type="none"/>
10616 #
10617 -interface(`corenet_dontaudit_sendrecv_ntop_client_packets',`
10618 - corenet_dontaudit_send_ntop_client_packets($1)
10619 - corenet_dontaudit_receive_ntop_client_packets($1)
10620 +interface(`corenet_dontaudit_sendrecv_nfsrdma_client_packets',`
10621 + corenet_dontaudit_send_nfsrdma_client_packets($1)
10622 + corenet_dontaudit_receive_nfsrdma_client_packets($1)
10623 ')
10624
10625 ########################################
10626 ## <summary>
10627 -## Relabel packets to ntop_client the packet type.
10628 +## Relabel packets to nfsrdma_client the packet type.
10629 ## </summary>
10630 ## <param name="domain">
10631 ## <summary>
10632 @@ -57510,18 +58396,18 @@ interface(`corenet_dontaudit_sendrecv_ntop_client_packets',`
10633 ## </summary>
10634 ## </param>
10635 #
10636 -interface(`corenet_relabelto_ntop_client_packets',`
10637 +interface(`corenet_relabelto_nfsrdma_client_packets',`
10638 gen_require(`
10639 - type ntop_client_packet_t;
10640 + type nfsrdma_client_packet_t;
10641 ')
10642
10643 - allow $1 ntop_client_packet_t:packet relabelto;
10644 + allow $1 nfsrdma_client_packet_t:packet relabelto;
10645 ')
10646
10647
10648 ########################################
10649 ## <summary>
10650 -## Send ntop_server packets.
10651 +## Send nfsrdma_server packets.
10652 ## </summary>
10653 ## <param name="domain">
10654 ## <summary>
10655 @@ -57530,17 +58416,17 @@ interface(`corenet_relabelto_ntop_client_packets',`
10656 ## </param>
10657 ## <infoflow type="write" weight="10"/>
10658 #
10659 -interface(`corenet_send_ntop_server_packets',`
10660 +interface(`corenet_send_nfsrdma_server_packets',`
10661 gen_require(`
10662 - type ntop_server_packet_t;
10663 + type nfsrdma_server_packet_t;
10664 ')
10665
10666 - allow $1 ntop_server_packet_t:packet send;
10667 + allow $1 nfsrdma_server_packet_t:packet send;
10668 ')
10669
10670 ########################################
10671 ## <summary>
10672 -## Do not audit attempts to send ntop_server packets.
10673 +## Do not audit attempts to send nfsrdma_server packets.
10674 ## </summary>
10675 ## <param name="domain">
10676 ## <summary>
10677 @@ -57549,17 +58435,17 @@ interface(`corenet_send_ntop_server_packets',`
10678 ## </param>
10679 ## <infoflow type="none"/>
10680 #
10681 -interface(`corenet_dontaudit_send_ntop_server_packets',`
10682 +interface(`corenet_dontaudit_send_nfsrdma_server_packets',`
10683 gen_require(`
10684 - type ntop_server_packet_t;
10685 + type nfsrdma_server_packet_t;
10686 ')
10687
10688 - dontaudit $1 ntop_server_packet_t:packet send;
10689 + dontaudit $1 nfsrdma_server_packet_t:packet send;
10690 ')
10691
10692 ########################################
10693 ## <summary>
10694 -## Receive ntop_server packets.
10695 +## Receive nfsrdma_server packets.
10696 ## </summary>
10697 ## <param name="domain">
10698 ## <summary>
10699 @@ -57568,17 +58454,17 @@ interface(`corenet_dontaudit_send_ntop_server_packets',`
10700 ## </param>
10701 ## <infoflow type="read" weight="10"/>
10702 #
10703 -interface(`corenet_receive_ntop_server_packets',`
10704 +interface(`corenet_receive_nfsrdma_server_packets',`
10705 gen_require(`
10706 - type ntop_server_packet_t;
10707 + type nfsrdma_server_packet_t;
10708 ')
10709
10710 - allow $1 ntop_server_packet_t:packet recv;
10711 + allow $1 nfsrdma_server_packet_t:packet recv;
10712 ')
10713
10714 ########################################
10715 ## <summary>
10716 -## Do not audit attempts to receive ntop_server packets.
10717 +## Do not audit attempts to receive nfsrdma_server packets.
10718 ## </summary>
10719 ## <param name="domain">
10720 ## <summary>
10721 @@ -57587,17 +58473,17 @@ interface(`corenet_receive_ntop_server_packets',`
10722 ## </param>
10723 ## <infoflow type="none"/>
10724 #
10725 -interface(`corenet_dontaudit_receive_ntop_server_packets',`
10726 +interface(`corenet_dontaudit_receive_nfsrdma_server_packets',`
10727 gen_require(`
10728 - type ntop_server_packet_t;
10729 + type nfsrdma_server_packet_t;
10730 ')
10731
10732 - dontaudit $1 ntop_server_packet_t:packet recv;
10733 + dontaudit $1 nfsrdma_server_packet_t:packet recv;
10734 ')
10735
10736 ########################################
10737 ## <summary>
10738 -## Send and receive ntop_server packets.
10739 +## Send and receive nfsrdma_server packets.
10740 ## </summary>
10741 ## <param name="domain">
10742 ## <summary>
10743 @@ -57606,14 +58492,14 @@ interface(`corenet_dontaudit_receive_ntop_server_packets',`
10744 ## </param>
10745 ## <infoflow type="both" weight="10"/>
10746 #
10747 -interface(`corenet_sendrecv_ntop_server_packets',`
10748 - corenet_send_ntop_server_packets($1)
10749 - corenet_receive_ntop_server_packets($1)
10750 +interface(`corenet_sendrecv_nfsrdma_server_packets',`
10751 + corenet_send_nfsrdma_server_packets($1)
10752 + corenet_receive_nfsrdma_server_packets($1)
10753 ')
10754
10755 ########################################
10756 ## <summary>
10757 -## Do not audit attempts to send and receive ntop_server packets.
10758 +## Do not audit attempts to send and receive nfsrdma_server packets.
10759 ## </summary>
10760 ## <param name="domain">
10761 ## <summary>
10762 @@ -57622,14 +58508,14 @@ interface(`corenet_sendrecv_ntop_server_packets',`
10763 ## </param>
10764 ## <infoflow type="none"/>
10765 #
10766 -interface(`corenet_dontaudit_sendrecv_ntop_server_packets',`
10767 - corenet_dontaudit_send_ntop_server_packets($1)
10768 - corenet_dontaudit_receive_ntop_server_packets($1)
10769 +interface(`corenet_dontaudit_sendrecv_nfsrdma_server_packets',`
10770 + corenet_dontaudit_send_nfsrdma_server_packets($1)
10771 + corenet_dontaudit_receive_nfsrdma_server_packets($1)
10772 ')
10773
10774 ########################################
10775 ## <summary>
10776 -## Relabel packets to ntop_server the packet type.
10777 +## Relabel packets to nfsrdma_server the packet type.
10778 ## </summary>
10779 ## <param name="domain">
10780 ## <summary>
10781 @@ -57637,12 +58523,12 @@ interface(`corenet_dontaudit_sendrecv_ntop_server_packets',`
10782 ## </summary>
10783 ## </param>
10784 #
10785 -interface(`corenet_relabelto_ntop_server_packets',`
10786 +interface(`corenet_relabelto_nfsrdma_server_packets',`
10787 gen_require(`
10788 - type ntop_server_packet_t;
10789 + type nfsrdma_server_packet_t;
10790 ')
10791
10792 - allow $1 ntop_server_packet_t:packet relabelto;
10793 + allow $1 nfsrdma_server_packet_t:packet relabelto;
10794 ')
10795
10796
10797 @@ -57650,7 +58536,7 @@ interface(`corenet_relabelto_ntop_server_packets',`
10798
10799 ########################################
10800 ## <summary>
10801 -## Send and receive TCP traffic on the ntp port.
10802 +## Send and receive TCP traffic on the nmbd port.
10803 ## </summary>
10804 ## <param name="domain">
10805 ## <summary>
10806 @@ -57659,17 +58545,17 @@ interface(`corenet_relabelto_ntop_server_packets',`
10807 ## </param>
10808 ## <infoflow type="both" weight="10"/>
10809 #
10810 -interface(`corenet_tcp_sendrecv_ntp_port',`
10811 +interface(`corenet_tcp_sendrecv_nmbd_port',`
10812 gen_require(`
10813 - type ntp_port_t;
10814 + type nmbd_port_t;
10815 ')
10816
10817 - allow $1 ntp_port_t:tcp_socket { send_msg recv_msg };
10818 + allow $1 nmbd_port_t:tcp_socket { send_msg recv_msg };
10819 ')
10820
10821 ########################################
10822 ## <summary>
10823 -## Send UDP traffic on the ntp port.
10824 +## Send UDP traffic on the nmbd port.
10825 ## </summary>
10826 ## <param name="domain">
10827 ## <summary>
10828 @@ -57678,17 +58564,17 @@ interface(`corenet_tcp_sendrecv_ntp_port',`
10829 ## </param>
10830 ## <infoflow type="write" weight="10"/>
10831 #
10832 -interface(`corenet_udp_send_ntp_port',`
10833 +interface(`corenet_udp_send_nmbd_port',`
10834 gen_require(`
10835 - type ntp_port_t;
10836 + type nmbd_port_t;
10837 ')
10838
10839 - allow $1 ntp_port_t:udp_socket send_msg;
10840 + allow $1 nmbd_port_t:udp_socket send_msg;
10841 ')
10842
10843 ########################################
10844 ## <summary>
10845 -## Do not audit attempts to send UDP traffic on the ntp port.
10846 +## Do not audit attempts to send UDP traffic on the nmbd port.
10847 ## </summary>
10848 ## <param name="domain">
10849 ## <summary>
10850 @@ -57697,17 +58583,17 @@ interface(`corenet_udp_send_ntp_port',`
10851 ## </param>
10852 ## <infoflow type="none"/>
10853 #
10854 -interface(`corenet_dontaudit_udp_send_ntp_port',`
10855 +interface(`corenet_dontaudit_udp_send_nmbd_port',`
10856 gen_require(`
10857 - type ntp_port_t;
10858 + type nmbd_port_t;
10859 ')
10860
10861 - dontaudit $1 ntp_port_t:udp_socket send_msg;
10862 + dontaudit $1 nmbd_port_t:udp_socket send_msg;
10863 ')
10864
10865 ########################################
10866 ## <summary>
10867 -## Receive UDP traffic on the ntp port.
10868 +## Receive UDP traffic on the nmbd port.
10869 ## </summary>
10870 ## <param name="domain">
10871 ## <summary>
10872 @@ -57716,17 +58602,17 @@ interface(`corenet_dontaudit_udp_send_ntp_port',`
10873 ## </param>
10874 ## <infoflow type="read" weight="10"/>
10875 #
10876 -interface(`corenet_udp_receive_ntp_port',`
10877 +interface(`corenet_udp_receive_nmbd_port',`
10878 gen_require(`
10879 - type ntp_port_t;
10880 + type nmbd_port_t;
10881 ')
10882
10883 - allow $1 ntp_port_t:udp_socket recv_msg;
10884 + allow $1 nmbd_port_t:udp_socket recv_msg;
10885 ')
10886
10887 ########################################
10888 ## <summary>
10889 -## Do not audit attempts to receive UDP traffic on the ntp port.
10890 +## Do not audit attempts to receive UDP traffic on the nmbd port.
10891 ## </summary>
10892 ## <param name="domain">
10893 ## <summary>
10894 @@ -57735,17 +58621,17 @@ interface(`corenet_udp_receive_ntp_port',`
10895 ## </param>
10896 ## <infoflow type="none"/>
10897 #
10898 -interface(`corenet_dontaudit_udp_receive_ntp_port',`
10899 +interface(`corenet_dontaudit_udp_receive_nmbd_port',`
10900 gen_require(`
10901 - type ntp_port_t;
10902 + type nmbd_port_t;
10903 ')
10904
10905 - dontaudit $1 ntp_port_t:udp_socket recv_msg;
10906 + dontaudit $1 nmbd_port_t:udp_socket recv_msg;
10907 ')
10908
10909 ########################################
10910 ## <summary>
10911 -## Send and receive UDP traffic on the ntp port.
10912 +## Send and receive UDP traffic on the nmbd port.
10913 ## </summary>
10914 ## <param name="domain">
10915 ## <summary>
10916 @@ -57754,15 +58640,15 @@ interface(`corenet_dontaudit_udp_receive_ntp_port',`
10917 ## </param>
10918 ## <infoflow type="both" weight="10"/>
10919 #
10920 -interface(`corenet_udp_sendrecv_ntp_port',`
10921 - corenet_udp_send_ntp_port($1)
10922 - corenet_udp_receive_ntp_port($1)
10923 +interface(`corenet_udp_sendrecv_nmbd_port',`
10924 + corenet_udp_send_nmbd_port($1)
10925 + corenet_udp_receive_nmbd_port($1)
10926 ')
10927
10928 ########################################
10929 ## <summary>
10930 ## Do not audit attempts to send and receive
10931 -## UDP traffic on the ntp port.
10932 +## UDP traffic on the nmbd port.
10933 ## </summary>
10934 ## <param name="domain">
10935 ## <summary>
10936 @@ -57771,14 +58657,14 @@ interface(`corenet_udp_sendrecv_ntp_port',`
10937 ## </param>
10938 ## <infoflow type="none"/>
10939 #
10940 -interface(`corenet_dontaudit_udp_sendrecv_ntp_port',`
10941 - corenet_dontaudit_udp_send_ntp_port($1)
10942 - corenet_dontaudit_udp_receive_ntp_port($1)
10943 +interface(`corenet_dontaudit_udp_sendrecv_nmbd_port',`
10944 + corenet_dontaudit_udp_send_nmbd_port($1)
10945 + corenet_dontaudit_udp_receive_nmbd_port($1)
10946 ')
10947
10948 ########################################
10949 ## <summary>
10950 -## Bind TCP sockets to the ntp port.
10951 +## Bind TCP sockets to the nmbd port.
10952 ## </summary>
10953 ## <param name="domain">
10954 ## <summary>
10955 @@ -57787,18 +58673,18 @@ interface(`corenet_dontaudit_udp_sendrecv_ntp_port',`
10956 ## </param>
10957 ## <infoflow type="none"/>
10958 #
10959 -interface(`corenet_tcp_bind_ntp_port',`
10960 +interface(`corenet_tcp_bind_nmbd_port',`
10961 gen_require(`
10962 - type ntp_port_t;
10963 + type nmbd_port_t;
10964 ')
10965
10966 - allow $1 ntp_port_t:tcp_socket name_bind;
10967 + allow $1 nmbd_port_t:tcp_socket name_bind;
10968 allow $1 self:capability net_bind_service;
10969 ')
10970
10971 ########################################
10972 ## <summary>
10973 -## Bind UDP sockets to the ntp port.
10974 +## Bind UDP sockets to the nmbd port.
10975 ## </summary>
10976 ## <param name="domain">
10977 ## <summary>
10978 @@ -57807,18 +58693,18 @@ interface(`corenet_tcp_bind_ntp_port',`
10979 ## </param>
10980 ## <infoflow type="none"/>
10981 #
10982 -interface(`corenet_udp_bind_ntp_port',`
10983 +interface(`corenet_udp_bind_nmbd_port',`
10984 gen_require(`
10985 - type ntp_port_t;
10986 + type nmbd_port_t;
10987 ')
10988
10989 - allow $1 ntp_port_t:udp_socket name_bind;
10990 + allow $1 nmbd_port_t:udp_socket name_bind;
10991 allow $1 self:capability net_bind_service;
10992 ')
10993
10994 ########################################
10995 ## <summary>
10996 -## Make a TCP connection to the ntp port.
10997 +## Make a TCP connection to the nmbd port.
10998 ## </summary>
10999 ## <param name="domain">
11000 ## <summary>
11001 @@ -57826,18 +58712,18 @@ interface(`corenet_udp_bind_ntp_port',`
11002 ## </summary>
11003 ## </param>
11004 #
11005 -interface(`corenet_tcp_connect_ntp_port',`
11006 +interface(`corenet_tcp_connect_nmbd_port',`
11007 gen_require(`
11008 - type ntp_port_t;
11009 + type nmbd_port_t;
11010 ')
11011
11012 - allow $1 ntp_port_t:tcp_socket name_connect;
11013 + allow $1 nmbd_port_t:tcp_socket name_connect;
11014 ')
11015
11016
11017 ########################################
11018 ## <summary>
11019 -## Send ntp_client packets.
11020 +## Send nmbd_client packets.
11021 ## </summary>
11022 ## <param name="domain">
11023 ## <summary>
11024 @@ -57846,17 +58732,17 @@ interface(`corenet_tcp_connect_ntp_port',`
11025 ## </param>
11026 ## <infoflow type="write" weight="10"/>
11027 #
11028 -interface(`corenet_send_ntp_client_packets',`
11029 +interface(`corenet_send_nmbd_client_packets',`
11030 gen_require(`
11031 - type ntp_client_packet_t;
11032 + type nmbd_client_packet_t;
11033 ')
11034
11035 - allow $1 ntp_client_packet_t:packet send;
11036 + allow $1 nmbd_client_packet_t:packet send;
11037 ')
11038
11039 ########################################
11040 ## <summary>
11041 -## Do not audit attempts to send ntp_client packets.
11042 +## Do not audit attempts to send nmbd_client packets.
11043 ## </summary>
11044 ## <param name="domain">
11045 ## <summary>
11046 @@ -57865,17 +58751,17 @@ interface(`corenet_send_ntp_client_packets',`
11047 ## </param>
11048 ## <infoflow type="none"/>
11049 #
11050 -interface(`corenet_dontaudit_send_ntp_client_packets',`
11051 +interface(`corenet_dontaudit_send_nmbd_client_packets',`
11052 gen_require(`
11053 - type ntp_client_packet_t;
11054 + type nmbd_client_packet_t;
11055 ')
11056
11057 - dontaudit $1 ntp_client_packet_t:packet send;
11058 + dontaudit $1 nmbd_client_packet_t:packet send;
11059 ')
11060
11061 ########################################
11062 ## <summary>
11063 -## Receive ntp_client packets.
11064 +## Receive nmbd_client packets.
11065 ## </summary>
11066 ## <param name="domain">
11067 ## <summary>
11068 @@ -57884,17 +58770,17 @@ interface(`corenet_dontaudit_send_ntp_client_packets',`
11069 ## </param>
11070 ## <infoflow type="read" weight="10"/>
11071 #
11072 -interface(`corenet_receive_ntp_client_packets',`
11073 +interface(`corenet_receive_nmbd_client_packets',`
11074 gen_require(`
11075 - type ntp_client_packet_t;
11076 + type nmbd_client_packet_t;
11077 ')
11078
11079 - allow $1 ntp_client_packet_t:packet recv;
11080 + allow $1 nmbd_client_packet_t:packet recv;
11081 ')
11082
11083 ########################################
11084 ## <summary>
11085 -## Do not audit attempts to receive ntp_client packets.
11086 +## Do not audit attempts to receive nmbd_client packets.
11087 ## </summary>
11088 ## <param name="domain">
11089 ## <summary>
11090 @@ -57903,17 +58789,17 @@ interface(`corenet_receive_ntp_client_packets',`
11091 ## </param>
11092 ## <infoflow type="none"/>
11093 #
11094 -interface(`corenet_dontaudit_receive_ntp_client_packets',`
11095 +interface(`corenet_dontaudit_receive_nmbd_client_packets',`
11096 gen_require(`
11097 - type ntp_client_packet_t;
11098 + type nmbd_client_packet_t;
11099 ')
11100
11101 - dontaudit $1 ntp_client_packet_t:packet recv;
11102 + dontaudit $1 nmbd_client_packet_t:packet recv;
11103 ')
11104
11105 ########################################
11106 ## <summary>
11107 -## Send and receive ntp_client packets.
11108 +## Send and receive nmbd_client packets.
11109 ## </summary>
11110 ## <param name="domain">
11111 ## <summary>
11112 @@ -57922,14 +58808,14 @@ interface(`corenet_dontaudit_receive_ntp_client_packets',`
11113 ## </param>
11114 ## <infoflow type="both" weight="10"/>
11115 #
11116 -interface(`corenet_sendrecv_ntp_client_packets',`
11117 - corenet_send_ntp_client_packets($1)
11118 - corenet_receive_ntp_client_packets($1)
11119 +interface(`corenet_sendrecv_nmbd_client_packets',`
11120 + corenet_send_nmbd_client_packets($1)
11121 + corenet_receive_nmbd_client_packets($1)
11122 ')
11123
11124 ########################################
11125 ## <summary>
11126 -## Do not audit attempts to send and receive ntp_client packets.
11127 +## Do not audit attempts to send and receive nmbd_client packets.
11128 ## </summary>
11129 ## <param name="domain">
11130 ## <summary>
11131 @@ -57938,14 +58824,14 @@ interface(`corenet_sendrecv_ntp_client_packets',`
11132 ## </param>
11133 ## <infoflow type="none"/>
11134 #
11135 -interface(`corenet_dontaudit_sendrecv_ntp_client_packets',`
11136 - corenet_dontaudit_send_ntp_client_packets($1)
11137 - corenet_dontaudit_receive_ntp_client_packets($1)
11138 +interface(`corenet_dontaudit_sendrecv_nmbd_client_packets',`
11139 + corenet_dontaudit_send_nmbd_client_packets($1)
11140 + corenet_dontaudit_receive_nmbd_client_packets($1)
11141 ')
11142
11143 ########################################
11144 ## <summary>
11145 -## Relabel packets to ntp_client the packet type.
11146 +## Relabel packets to nmbd_client the packet type.
11147 ## </summary>
11148 ## <param name="domain">
11149 ## <summary>
11150 @@ -57953,18 +58839,18 @@ interface(`corenet_dontaudit_sendrecv_ntp_client_packets',`
11151 ## </summary>
11152 ## </param>
11153 #
11154 -interface(`corenet_relabelto_ntp_client_packets',`
11155 +interface(`corenet_relabelto_nmbd_client_packets',`
11156 gen_require(`
11157 - type ntp_client_packet_t;
11158 + type nmbd_client_packet_t;
11159 ')
11160
11161 - allow $1 ntp_client_packet_t:packet relabelto;
11162 + allow $1 nmbd_client_packet_t:packet relabelto;
11163 ')
11164
11165
11166 ########################################
11167 ## <summary>
11168 -## Send ntp_server packets.
11169 +## Send nmbd_server packets.
11170 ## </summary>
11171 ## <param name="domain">
11172 ## <summary>
11173 @@ -57973,17 +58859,17 @@ interface(`corenet_relabelto_ntp_client_packets',`
11174 ## </param>
11175 ## <infoflow type="write" weight="10"/>
11176 #
11177 -interface(`corenet_send_ntp_server_packets',`
11178 +interface(`corenet_send_nmbd_server_packets',`
11179 gen_require(`
11180 - type ntp_server_packet_t;
11181 + type nmbd_server_packet_t;
11182 ')
11183
11184 - allow $1 ntp_server_packet_t:packet send;
11185 + allow $1 nmbd_server_packet_t:packet send;
11186 ')
11187
11188 ########################################
11189 ## <summary>
11190 -## Do not audit attempts to send ntp_server packets.
11191 +## Do not audit attempts to send nmbd_server packets.
11192 ## </summary>
11193 ## <param name="domain">
11194 ## <summary>
11195 @@ -57992,17 +58878,17 @@ interface(`corenet_send_ntp_server_packets',`
11196 ## </param>
11197 ## <infoflow type="none"/>
11198 #
11199 -interface(`corenet_dontaudit_send_ntp_server_packets',`
11200 +interface(`corenet_dontaudit_send_nmbd_server_packets',`
11201 gen_require(`
11202 - type ntp_server_packet_t;
11203 + type nmbd_server_packet_t;
11204 ')
11205
11206 - dontaudit $1 ntp_server_packet_t:packet send;
11207 + dontaudit $1 nmbd_server_packet_t:packet send;
11208 ')
11209
11210 ########################################
11211 ## <summary>
11212 -## Receive ntp_server packets.
11213 +## Receive nmbd_server packets.
11214 ## </summary>
11215 ## <param name="domain">
11216 ## <summary>
11217 @@ -58011,17 +58897,17 @@ interface(`corenet_dontaudit_send_ntp_server_packets',`
11218 ## </param>
11219 ## <infoflow type="read" weight="10"/>
11220 #
11221 -interface(`corenet_receive_ntp_server_packets',`
11222 +interface(`corenet_receive_nmbd_server_packets',`
11223 gen_require(`
11224 - type ntp_server_packet_t;
11225 + type nmbd_server_packet_t;
11226 ')
11227
11228 - allow $1 ntp_server_packet_t:packet recv;
11229 + allow $1 nmbd_server_packet_t:packet recv;
11230 ')
11231
11232 ########################################
11233 ## <summary>
11234 -## Do not audit attempts to receive ntp_server packets.
11235 +## Do not audit attempts to receive nmbd_server packets.
11236 ## </summary>
11237 ## <param name="domain">
11238 ## <summary>
11239 @@ -58030,17 +58916,17 @@ interface(`corenet_receive_ntp_server_packets',`
11240 ## </param>
11241 ## <infoflow type="none"/>
11242 #
11243 -interface(`corenet_dontaudit_receive_ntp_server_packets',`
11244 +interface(`corenet_dontaudit_receive_nmbd_server_packets',`
11245 gen_require(`
11246 - type ntp_server_packet_t;
11247 + type nmbd_server_packet_t;
11248 ')
11249
11250 - dontaudit $1 ntp_server_packet_t:packet recv;
11251 + dontaudit $1 nmbd_server_packet_t:packet recv;
11252 ')
11253
11254 ########################################
11255 ## <summary>
11256 -## Send and receive ntp_server packets.
11257 +## Send and receive nmbd_server packets.
11258 ## </summary>
11259 ## <param name="domain">
11260 ## <summary>
11261 @@ -58049,14 +58935,14 @@ interface(`corenet_dontaudit_receive_ntp_server_packets',`
11262 ## </param>
11263 ## <infoflow type="both" weight="10"/>
11264 #
11265 -interface(`corenet_sendrecv_ntp_server_packets',`
11266 - corenet_send_ntp_server_packets($1)
11267 - corenet_receive_ntp_server_packets($1)
11268 +interface(`corenet_sendrecv_nmbd_server_packets',`
11269 + corenet_send_nmbd_server_packets($1)
11270 + corenet_receive_nmbd_server_packets($1)
11271 ')
11272
11273 ########################################
11274 ## <summary>
11275 -## Do not audit attempts to send and receive ntp_server packets.
11276 +## Do not audit attempts to send and receive nmbd_server packets.
11277 ## </summary>
11278 ## <param name="domain">
11279 ## <summary>
11280 @@ -58065,14 +58951,14 @@ interface(`corenet_sendrecv_ntp_server_packets',`
11281 ## </param>
11282 ## <infoflow type="none"/>
11283 #
11284 -interface(`corenet_dontaudit_sendrecv_ntp_server_packets',`
11285 - corenet_dontaudit_send_ntp_server_packets($1)
11286 - corenet_dontaudit_receive_ntp_server_packets($1)
11287 +interface(`corenet_dontaudit_sendrecv_nmbd_server_packets',`
11288 + corenet_dontaudit_send_nmbd_server_packets($1)
11289 + corenet_dontaudit_receive_nmbd_server_packets($1)
11290 ')
11291
11292 ########################################
11293 ## <summary>
11294 -## Relabel packets to ntp_server the packet type.
11295 +## Relabel packets to nmbd_server the packet type.
11296 ## </summary>
11297 ## <param name="domain">
11298 ## <summary>
11299 @@ -58080,12 +58966,12 @@ interface(`corenet_dontaudit_sendrecv_ntp_server_packets',`
11300 ## </summary>
11301 ## </param>
11302 #
11303 -interface(`corenet_relabelto_ntp_server_packets',`
11304 +interface(`corenet_relabelto_nmbd_server_packets',`
11305 gen_require(`
11306 - type ntp_server_packet_t;
11307 + type nmbd_server_packet_t;
11308 ')
11309
11310 - allow $1 ntp_server_packet_t:packet relabelto;
11311 + allow $1 nmbd_server_packet_t:packet relabelto;
11312 ')
11313
11314
11315 @@ -58093,7 +58979,7 @@ interface(`corenet_relabelto_ntp_server_packets',`
11316
11317 ########################################
11318 ## <summary>
11319 -## Send and receive TCP traffic on the oa_system port.
11320 +## Send and receive TCP traffic on the ntop port.
11321 ## </summary>
11322 ## <param name="domain">
11323 ## <summary>
11324 @@ -58102,17 +58988,17 @@ interface(`corenet_relabelto_ntp_server_packets',`
11325 ## </param>
11326 ## <infoflow type="both" weight="10"/>
11327 #
11328 -interface(`corenet_tcp_sendrecv_oa_system_port',`
11329 +interface(`corenet_tcp_sendrecv_ntop_port',`
11330 gen_require(`
11331 - type oa_system_port_t;
11332 + type ntop_port_t;
11333 ')
11334
11335 - allow $1 oa_system_port_t:tcp_socket { send_msg recv_msg };
11336 + allow $1 ntop_port_t:tcp_socket { send_msg recv_msg };
11337 ')
11338
11339 ########################################
11340 ## <summary>
11341 -## Send UDP traffic on the oa_system port.
11342 +## Send UDP traffic on the ntop port.
11343 ## </summary>
11344 ## <param name="domain">
11345 ## <summary>
11346 @@ -58121,17 +59007,17 @@ interface(`corenet_tcp_sendrecv_oa_system_port',`
11347 ## </param>
11348 ## <infoflow type="write" weight="10"/>
11349 #
11350 -interface(`corenet_udp_send_oa_system_port',`
11351 +interface(`corenet_udp_send_ntop_port',`
11352 gen_require(`
11353 - type oa_system_port_t;
11354 + type ntop_port_t;
11355 ')
11356
11357 - allow $1 oa_system_port_t:udp_socket send_msg;
11358 + allow $1 ntop_port_t:udp_socket send_msg;
11359 ')
11360
11361 ########################################
11362 ## <summary>
11363 -## Do not audit attempts to send UDP traffic on the oa_system port.
11364 +## Do not audit attempts to send UDP traffic on the ntop port.
11365 ## </summary>
11366 ## <param name="domain">
11367 ## <summary>
11368 @@ -58140,17 +59026,17 @@ interface(`corenet_udp_send_oa_system_port',`
11369 ## </param>
11370 ## <infoflow type="none"/>
11371 #
11372 -interface(`corenet_dontaudit_udp_send_oa_system_port',`
11373 +interface(`corenet_dontaudit_udp_send_ntop_port',`
11374 gen_require(`
11375 - type oa_system_port_t;
11376 + type ntop_port_t;
11377 ')
11378
11379 - dontaudit $1 oa_system_port_t:udp_socket send_msg;
11380 + dontaudit $1 ntop_port_t:udp_socket send_msg;
11381 ')
11382
11383 ########################################
11384 ## <summary>
11385 -## Receive UDP traffic on the oa_system port.
11386 +## Receive UDP traffic on the ntop port.
11387 ## </summary>
11388 ## <param name="domain">
11389 ## <summary>
11390 @@ -58159,17 +59045,17 @@ interface(`corenet_dontaudit_udp_send_oa_system_port',`
11391 ## </param>
11392 ## <infoflow type="read" weight="10"/>
11393 #
11394 -interface(`corenet_udp_receive_oa_system_port',`
11395 +interface(`corenet_udp_receive_ntop_port',`
11396 gen_require(`
11397 - type oa_system_port_t;
11398 + type ntop_port_t;
11399 ')
11400
11401 - allow $1 oa_system_port_t:udp_socket recv_msg;
11402 + allow $1 ntop_port_t:udp_socket recv_msg;
11403 ')
11404
11405 ########################################
11406 ## <summary>
11407 -## Do not audit attempts to receive UDP traffic on the oa_system port.
11408 +## Do not audit attempts to receive UDP traffic on the ntop port.
11409 ## </summary>
11410 ## <param name="domain">
11411 ## <summary>
11412 @@ -58178,17 +59064,17 @@ interface(`corenet_udp_receive_oa_system_port',`
11413 ## </param>
11414 ## <infoflow type="none"/>
11415 #
11416 -interface(`corenet_dontaudit_udp_receive_oa_system_port',`
11417 +interface(`corenet_dontaudit_udp_receive_ntop_port',`
11418 gen_require(`
11419 - type oa_system_port_t;
11420 + type ntop_port_t;
11421 ')
11422
11423 - dontaudit $1 oa_system_port_t:udp_socket recv_msg;
11424 + dontaudit $1 ntop_port_t:udp_socket recv_msg;
11425 ')
11426
11427 ########################################
11428 ## <summary>
11429 -## Send and receive UDP traffic on the oa_system port.
11430 +## Send and receive UDP traffic on the ntop port.
11431 ## </summary>
11432 ## <param name="domain">
11433 ## <summary>
11434 @@ -58197,15 +59083,15 @@ interface(`corenet_dontaudit_udp_receive_oa_system_port',`
11435 ## </param>
11436 ## <infoflow type="both" weight="10"/>
11437 #
11438 -interface(`corenet_udp_sendrecv_oa_system_port',`
11439 - corenet_udp_send_oa_system_port($1)
11440 - corenet_udp_receive_oa_system_port($1)
11441 +interface(`corenet_udp_sendrecv_ntop_port',`
11442 + corenet_udp_send_ntop_port($1)
11443 + corenet_udp_receive_ntop_port($1)
11444 ')
11445
11446 ########################################
11447 ## <summary>
11448 ## Do not audit attempts to send and receive
11449 -## UDP traffic on the oa_system port.
11450 +## UDP traffic on the ntop port.
11451 ## </summary>
11452 ## <param name="domain">
11453 ## <summary>
11454 @@ -58214,14 +59100,14 @@ interface(`corenet_udp_sendrecv_oa_system_port',`
11455 ## </param>
11456 ## <infoflow type="none"/>
11457 #
11458 -interface(`corenet_dontaudit_udp_sendrecv_oa_system_port',`
11459 - corenet_dontaudit_udp_send_oa_system_port($1)
11460 - corenet_dontaudit_udp_receive_oa_system_port($1)
11461 +interface(`corenet_dontaudit_udp_sendrecv_ntop_port',`
11462 + corenet_dontaudit_udp_send_ntop_port($1)
11463 + corenet_dontaudit_udp_receive_ntop_port($1)
11464 ')
11465
11466 ########################################
11467 ## <summary>
11468 -## Bind TCP sockets to the oa_system port.
11469 +## Bind TCP sockets to the ntop port.
11470 ## </summary>
11471 ## <param name="domain">
11472 ## <summary>
11473 @@ -58230,18 +59116,18 @@ interface(`corenet_dontaudit_udp_sendrecv_oa_system_port',`
11474 ## </param>
11475 ## <infoflow type="none"/>
11476 #
11477 -interface(`corenet_tcp_bind_oa_system_port',`
11478 +interface(`corenet_tcp_bind_ntop_port',`
11479 gen_require(`
11480 - type oa_system_port_t;
11481 + type ntop_port_t;
11482 ')
11483
11484 - allow $1 oa_system_port_t:tcp_socket name_bind;
11485 -
11486 + allow $1 ntop_port_t:tcp_socket name_bind;
11487 + allow $1 self:capability net_bind_service;
11488 ')
11489
11490 ########################################
11491 ## <summary>
11492 -## Bind UDP sockets to the oa_system port.
11493 +## Bind UDP sockets to the ntop port.
11494 ## </summary>
11495 ## <param name="domain">
11496 ## <summary>
11497 @@ -58250,18 +59136,18 @@ interface(`corenet_tcp_bind_oa_system_port',`
11498 ## </param>
11499 ## <infoflow type="none"/>
11500 #
11501 -interface(`corenet_udp_bind_oa_system_port',`
11502 +interface(`corenet_udp_bind_ntop_port',`
11503 gen_require(`
11504 - type oa_system_port_t;
11505 + type ntop_port_t;
11506 ')
11507
11508 - allow $1 oa_system_port_t:udp_socket name_bind;
11509 -
11510 + allow $1 ntop_port_t:udp_socket name_bind;
11511 + allow $1 self:capability net_bind_service;
11512 ')
11513
11514 ########################################
11515 ## <summary>
11516 -## Make a TCP connection to the oa_system port.
11517 +## Make a TCP connection to the ntop port.
11518 ## </summary>
11519 ## <param name="domain">
11520 ## <summary>
11521 @@ -58269,18 +59155,18 @@ interface(`corenet_udp_bind_oa_system_port',`
11522 ## </summary>
11523 ## </param>
11524 #
11525 -interface(`corenet_tcp_connect_oa_system_port',`
11526 +interface(`corenet_tcp_connect_ntop_port',`
11527 gen_require(`
11528 - type oa_system_port_t;
11529 + type ntop_port_t;
11530 ')
11531
11532 - allow $1 oa_system_port_t:tcp_socket name_connect;
11533 + allow $1 ntop_port_t:tcp_socket name_connect;
11534 ')
11535
11536
11537 ########################################
11538 ## <summary>
11539 -## Send oa_system_client packets.
11540 +## Send ntop_client packets.
11541 ## </summary>
11542 ## <param name="domain">
11543 ## <summary>
11544 @@ -58289,17 +59175,17 @@ interface(`corenet_tcp_connect_oa_system_port',`
11545 ## </param>
11546 ## <infoflow type="write" weight="10"/>
11547 #
11548 -interface(`corenet_send_oa_system_client_packets',`
11549 +interface(`corenet_send_ntop_client_packets',`
11550 gen_require(`
11551 - type oa_system_client_packet_t;
11552 + type ntop_client_packet_t;
11553 ')
11554
11555 - allow $1 oa_system_client_packet_t:packet send;
11556 + allow $1 ntop_client_packet_t:packet send;
11557 ')
11558
11559 ########################################
11560 ## <summary>
11561 -## Do not audit attempts to send oa_system_client packets.
11562 +## Do not audit attempts to send ntop_client packets.
11563 ## </summary>
11564 ## <param name="domain">
11565 ## <summary>
11566 @@ -58308,17 +59194,17 @@ interface(`corenet_send_oa_system_client_packets',`
11567 ## </param>
11568 ## <infoflow type="none"/>
11569 #
11570 -interface(`corenet_dontaudit_send_oa_system_client_packets',`
11571 +interface(`corenet_dontaudit_send_ntop_client_packets',`
11572 gen_require(`
11573 - type oa_system_client_packet_t;
11574 + type ntop_client_packet_t;
11575 ')
11576
11577 - dontaudit $1 oa_system_client_packet_t:packet send;
11578 + dontaudit $1 ntop_client_packet_t:packet send;
11579 ')
11580
11581 ########################################
11582 ## <summary>
11583 -## Receive oa_system_client packets.
11584 +## Receive ntop_client packets.
11585 ## </summary>
11586 ## <param name="domain">
11587 ## <summary>
11588 @@ -58327,17 +59213,17 @@ interface(`corenet_dontaudit_send_oa_system_client_packets',`
11589 ## </param>
11590 ## <infoflow type="read" weight="10"/>
11591 #
11592 -interface(`corenet_receive_oa_system_client_packets',`
11593 +interface(`corenet_receive_ntop_client_packets',`
11594 gen_require(`
11595 - type oa_system_client_packet_t;
11596 + type ntop_client_packet_t;
11597 ')
11598
11599 - allow $1 oa_system_client_packet_t:packet recv;
11600 + allow $1 ntop_client_packet_t:packet recv;
11601 ')
11602
11603 ########################################
11604 ## <summary>
11605 -## Do not audit attempts to receive oa_system_client packets.
11606 +## Do not audit attempts to receive ntop_client packets.
11607 ## </summary>
11608 ## <param name="domain">
11609 ## <summary>
11610 @@ -58346,17 +59232,17 @@ interface(`corenet_receive_oa_system_client_packets',`
11611 ## </param>
11612 ## <infoflow type="none"/>
11613 #
11614 -interface(`corenet_dontaudit_receive_oa_system_client_packets',`
11615 +interface(`corenet_dontaudit_receive_ntop_client_packets',`
11616 gen_require(`
11617 - type oa_system_client_packet_t;
11618 + type ntop_client_packet_t;
11619 ')
11620
11621 - dontaudit $1 oa_system_client_packet_t:packet recv;
11622 + dontaudit $1 ntop_client_packet_t:packet recv;
11623 ')
11624
11625 ########################################
11626 ## <summary>
11627 -## Send and receive oa_system_client packets.
11628 +## Send and receive ntop_client packets.
11629 ## </summary>
11630 ## <param name="domain">
11631 ## <summary>
11632 @@ -58365,14 +59251,14 @@ interface(`corenet_dontaudit_receive_oa_system_client_packets',`
11633 ## </param>
11634 ## <infoflow type="both" weight="10"/>
11635 #
11636 -interface(`corenet_sendrecv_oa_system_client_packets',`
11637 - corenet_send_oa_system_client_packets($1)
11638 - corenet_receive_oa_system_client_packets($1)
11639 +interface(`corenet_sendrecv_ntop_client_packets',`
11640 + corenet_send_ntop_client_packets($1)
11641 + corenet_receive_ntop_client_packets($1)
11642 ')
11643
11644 ########################################
11645 ## <summary>
11646 -## Do not audit attempts to send and receive oa_system_client packets.
11647 +## Do not audit attempts to send and receive ntop_client packets.
11648 ## </summary>
11649 ## <param name="domain">
11650 ## <summary>
11651 @@ -58381,14 +59267,14 @@ interface(`corenet_sendrecv_oa_system_client_packets',`
11652 ## </param>
11653 ## <infoflow type="none"/>
11654 #
11655 -interface(`corenet_dontaudit_sendrecv_oa_system_client_packets',`
11656 - corenet_dontaudit_send_oa_system_client_packets($1)
11657 - corenet_dontaudit_receive_oa_system_client_packets($1)
11658 +interface(`corenet_dontaudit_sendrecv_ntop_client_packets',`
11659 + corenet_dontaudit_send_ntop_client_packets($1)
11660 + corenet_dontaudit_receive_ntop_client_packets($1)
11661 ')
11662
11663 ########################################
11664 ## <summary>
11665 -## Relabel packets to oa_system_client the packet type.
11666 +## Relabel packets to ntop_client the packet type.
11667 ## </summary>
11668 ## <param name="domain">
11669 ## <summary>
11670 @@ -58396,18 +59282,18 @@ interface(`corenet_dontaudit_sendrecv_oa_system_client_packets',`
11671 ## </summary>
11672 ## </param>
11673 #
11674 -interface(`corenet_relabelto_oa_system_client_packets',`
11675 +interface(`corenet_relabelto_ntop_client_packets',`
11676 gen_require(`
11677 - type oa_system_client_packet_t;
11678 + type ntop_client_packet_t;
11679 ')
11680
11681 - allow $1 oa_system_client_packet_t:packet relabelto;
11682 + allow $1 ntop_client_packet_t:packet relabelto;
11683 ')
11684
11685
11686 ########################################
11687 ## <summary>
11688 -## Send oa_system_server packets.
11689 +## Send ntop_server packets.
11690 ## </summary>
11691 ## <param name="domain">
11692 ## <summary>
11693 @@ -58416,17 +59302,17 @@ interface(`corenet_relabelto_oa_system_client_packets',`
11694 ## </param>
11695 ## <infoflow type="write" weight="10"/>
11696 #
11697 -interface(`corenet_send_oa_system_server_packets',`
11698 +interface(`corenet_send_ntop_server_packets',`
11699 gen_require(`
11700 - type oa_system_server_packet_t;
11701 + type ntop_server_packet_t;
11702 ')
11703
11704 - allow $1 oa_system_server_packet_t:packet send;
11705 + allow $1 ntop_server_packet_t:packet send;
11706 ')
11707
11708 ########################################
11709 ## <summary>
11710 -## Do not audit attempts to send oa_system_server packets.
11711 +## Do not audit attempts to send ntop_server packets.
11712 ## </summary>
11713 ## <param name="domain">
11714 ## <summary>
11715 @@ -58435,17 +59321,17 @@ interface(`corenet_send_oa_system_server_packets',`
11716 ## </param>
11717 ## <infoflow type="none"/>
11718 #
11719 -interface(`corenet_dontaudit_send_oa_system_server_packets',`
11720 +interface(`corenet_dontaudit_send_ntop_server_packets',`
11721 gen_require(`
11722 - type oa_system_server_packet_t;
11723 + type ntop_server_packet_t;
11724 ')
11725
11726 - dontaudit $1 oa_system_server_packet_t:packet send;
11727 + dontaudit $1 ntop_server_packet_t:packet send;
11728 ')
11729
11730 ########################################
11731 ## <summary>
11732 -## Receive oa_system_server packets.
11733 +## Receive ntop_server packets.
11734 ## </summary>
11735 ## <param name="domain">
11736 ## <summary>
11737 @@ -58454,17 +59340,17 @@ interface(`corenet_dontaudit_send_oa_system_server_packets',`
11738 ## </param>
11739 ## <infoflow type="read" weight="10"/>
11740 #
11741 -interface(`corenet_receive_oa_system_server_packets',`
11742 +interface(`corenet_receive_ntop_server_packets',`
11743 gen_require(`
11744 - type oa_system_server_packet_t;
11745 + type ntop_server_packet_t;
11746 ')
11747
11748 - allow $1 oa_system_server_packet_t:packet recv;
11749 + allow $1 ntop_server_packet_t:packet recv;
11750 ')
11751
11752 ########################################
11753 ## <summary>
11754 -## Do not audit attempts to receive oa_system_server packets.
11755 +## Do not audit attempts to receive ntop_server packets.
11756 ## </summary>
11757 ## <param name="domain">
11758 ## <summary>
11759 @@ -58473,17 +59359,17 @@ interface(`corenet_receive_oa_system_server_packets',`
11760 ## </param>
11761 ## <infoflow type="none"/>
11762 #
11763 -interface(`corenet_dontaudit_receive_oa_system_server_packets',`
11764 +interface(`corenet_dontaudit_receive_ntop_server_packets',`
11765 gen_require(`
11766 - type oa_system_server_packet_t;
11767 + type ntop_server_packet_t;
11768 ')
11769
11770 - dontaudit $1 oa_system_server_packet_t:packet recv;
11771 + dontaudit $1 ntop_server_packet_t:packet recv;
11772 ')
11773
11774 ########################################
11775 ## <summary>
11776 -## Send and receive oa_system_server packets.
11777 +## Send and receive ntop_server packets.
11778 ## </summary>
11779 ## <param name="domain">
11780 ## <summary>
11781 @@ -58492,14 +59378,14 @@ interface(`corenet_dontaudit_receive_oa_system_server_packets',`
11782 ## </param>
11783 ## <infoflow type="both" weight="10"/>
11784 #
11785 -interface(`corenet_sendrecv_oa_system_server_packets',`
11786 - corenet_send_oa_system_server_packets($1)
11787 - corenet_receive_oa_system_server_packets($1)
11788 +interface(`corenet_sendrecv_ntop_server_packets',`
11789 + corenet_send_ntop_server_packets($1)
11790 + corenet_receive_ntop_server_packets($1)
11791 ')
11792
11793 ########################################
11794 ## <summary>
11795 -## Do not audit attempts to send and receive oa_system_server packets.
11796 +## Do not audit attempts to send and receive ntop_server packets.
11797 ## </summary>
11798 ## <param name="domain">
11799 ## <summary>
11800 @@ -58508,14 +59394,14 @@ interface(`corenet_sendrecv_oa_system_server_packets',`
11801 ## </param>
11802 ## <infoflow type="none"/>
11803 #
11804 -interface(`corenet_dontaudit_sendrecv_oa_system_server_packets',`
11805 - corenet_dontaudit_send_oa_system_server_packets($1)
11806 - corenet_dontaudit_receive_oa_system_server_packets($1)
11807 +interface(`corenet_dontaudit_sendrecv_ntop_server_packets',`
11808 + corenet_dontaudit_send_ntop_server_packets($1)
11809 + corenet_dontaudit_receive_ntop_server_packets($1)
11810 ')
11811
11812 ########################################
11813 ## <summary>
11814 -## Relabel packets to oa_system_server the packet type.
11815 +## Relabel packets to ntop_server the packet type.
11816 ## </summary>
11817 ## <param name="domain">
11818 ## <summary>
11819 @@ -58523,12 +59409,12 @@ interface(`corenet_dontaudit_sendrecv_oa_system_server_packets',`
11820 ## </summary>
11821 ## </param>
11822 #
11823 -interface(`corenet_relabelto_oa_system_server_packets',`
11824 +interface(`corenet_relabelto_ntop_server_packets',`
11825 gen_require(`
11826 - type oa_system_server_packet_t;
11827 + type ntop_server_packet_t;
11828 ')
11829
11830 - allow $1 oa_system_server_packet_t:packet relabelto;
11831 + allow $1 ntop_server_packet_t:packet relabelto;
11832 ')
11833
11834
11835 @@ -58536,7 +59422,7 @@ interface(`corenet_relabelto_oa_system_server_packets',`
11836
11837 ########################################
11838 ## <summary>
11839 -## Send and receive TCP traffic on the oracledb port.
11840 +## Send and receive TCP traffic on the ntp port.
11841 ## </summary>
11842 ## <param name="domain">
11843 ## <summary>
11844 @@ -58545,17 +59431,17 @@ interface(`corenet_relabelto_oa_system_server_packets',`
11845 ## </param>
11846 ## <infoflow type="both" weight="10"/>
11847 #
11848 -interface(`corenet_tcp_sendrecv_oracledb_port',`
11849 +interface(`corenet_tcp_sendrecv_ntp_port',`
11850 gen_require(`
11851 - type oracledb_port_t;
11852 + type ntp_port_t;
11853 ')
11854
11855 - allow $1 oracledb_port_t:tcp_socket { send_msg recv_msg };
11856 + allow $1 ntp_port_t:tcp_socket { send_msg recv_msg };
11857 ')
11858
11859 ########################################
11860 ## <summary>
11861 -## Send UDP traffic on the oracledb port.
11862 +## Send UDP traffic on the ntp port.
11863 ## </summary>
11864 ## <param name="domain">
11865 ## <summary>
11866 @@ -58564,17 +59450,17 @@ interface(`corenet_tcp_sendrecv_oracledb_port',`
11867 ## </param>
11868 ## <infoflow type="write" weight="10"/>
11869 #
11870 -interface(`corenet_udp_send_oracledb_port',`
11871 +interface(`corenet_udp_send_ntp_port',`
11872 gen_require(`
11873 - type oracledb_port_t;
11874 + type ntp_port_t;
11875 ')
11876
11877 - allow $1 oracledb_port_t:udp_socket send_msg;
11878 + allow $1 ntp_port_t:udp_socket send_msg;
11879 ')
11880
11881 ########################################
11882 ## <summary>
11883 -## Do not audit attempts to send UDP traffic on the oracledb port.
11884 +## Do not audit attempts to send UDP traffic on the ntp port.
11885 ## </summary>
11886 ## <param name="domain">
11887 ## <summary>
11888 @@ -58583,17 +59469,17 @@ interface(`corenet_udp_send_oracledb_port',`
11889 ## </param>
11890 ## <infoflow type="none"/>
11891 #
11892 -interface(`corenet_dontaudit_udp_send_oracledb_port',`
11893 +interface(`corenet_dontaudit_udp_send_ntp_port',`
11894 gen_require(`
11895 - type oracledb_port_t;
11896 + type ntp_port_t;
11897 ')
11898
11899 - dontaudit $1 oracledb_port_t:udp_socket send_msg;
11900 + dontaudit $1 ntp_port_t:udp_socket send_msg;
11901 ')
11902
11903 ########################################
11904 ## <summary>
11905 -## Receive UDP traffic on the oracledb port.
11906 +## Receive UDP traffic on the ntp port.
11907 ## </summary>
11908 ## <param name="domain">
11909 ## <summary>
11910 @@ -58602,17 +59488,17 @@ interface(`corenet_dontaudit_udp_send_oracledb_port',`
11911 ## </param>
11912 ## <infoflow type="read" weight="10"/>
11913 #
11914 -interface(`corenet_udp_receive_oracledb_port',`
11915 +interface(`corenet_udp_receive_ntp_port',`
11916 gen_require(`
11917 - type oracledb_port_t;
11918 + type ntp_port_t;
11919 ')
11920
11921 - allow $1 oracledb_port_t:udp_socket recv_msg;
11922 + allow $1 ntp_port_t:udp_socket recv_msg;
11923 ')
11924
11925 ########################################
11926 ## <summary>
11927 -## Do not audit attempts to receive UDP traffic on the oracledb port.
11928 +## Do not audit attempts to receive UDP traffic on the ntp port.
11929 ## </summary>
11930 ## <param name="domain">
11931 ## <summary>
11932 @@ -58621,17 +59507,17 @@ interface(`corenet_udp_receive_oracledb_port',`
11933 ## </param>
11934 ## <infoflow type="none"/>
11935 #
11936 -interface(`corenet_dontaudit_udp_receive_oracledb_port',`
11937 +interface(`corenet_dontaudit_udp_receive_ntp_port',`
11938 gen_require(`
11939 - type oracledb_port_t;
11940 + type ntp_port_t;
11941 ')
11942
11943 - dontaudit $1 oracledb_port_t:udp_socket recv_msg;
11944 + dontaudit $1 ntp_port_t:udp_socket recv_msg;
11945 ')
11946
11947 ########################################
11948 ## <summary>
11949 -## Send and receive UDP traffic on the oracledb port.
11950 +## Send and receive UDP traffic on the ntp port.
11951 ## </summary>
11952 ## <param name="domain">
11953 ## <summary>
11954 @@ -58640,15 +59526,15 @@ interface(`corenet_dontaudit_udp_receive_oracledb_port',`
11955 ## </param>
11956 ## <infoflow type="both" weight="10"/>
11957 #
11958 -interface(`corenet_udp_sendrecv_oracledb_port',`
11959 - corenet_udp_send_oracledb_port($1)
11960 - corenet_udp_receive_oracledb_port($1)
11961 +interface(`corenet_udp_sendrecv_ntp_port',`
11962 + corenet_udp_send_ntp_port($1)
11963 + corenet_udp_receive_ntp_port($1)
11964 ')
11965
11966 ########################################
11967 ## <summary>
11968 ## Do not audit attempts to send and receive
11969 -## UDP traffic on the oracledb port.
11970 +## UDP traffic on the ntp port.
11971 ## </summary>
11972 ## <param name="domain">
11973 ## <summary>
11974 @@ -58657,14 +59543,14 @@ interface(`corenet_udp_sendrecv_oracledb_port',`
11975 ## </param>
11976 ## <infoflow type="none"/>
11977 #
11978 -interface(`corenet_dontaudit_udp_sendrecv_oracledb_port',`
11979 - corenet_dontaudit_udp_send_oracledb_port($1)
11980 - corenet_dontaudit_udp_receive_oracledb_port($1)
11981 +interface(`corenet_dontaudit_udp_sendrecv_ntp_port',`
11982 + corenet_dontaudit_udp_send_ntp_port($1)
11983 + corenet_dontaudit_udp_receive_ntp_port($1)
11984 ')
11985
11986 ########################################
11987 ## <summary>
11988 -## Bind TCP sockets to the oracledb port.
11989 +## Bind TCP sockets to the ntp port.
11990 ## </summary>
11991 ## <param name="domain">
11992 ## <summary>
11993 @@ -58673,18 +59559,18 @@ interface(`corenet_dontaudit_udp_sendrecv_oracledb_port',`
11994 ## </param>
11995 ## <infoflow type="none"/>
11996 #
11997 -interface(`corenet_tcp_bind_oracledb_port',`
11998 +interface(`corenet_tcp_bind_ntp_port',`
11999 gen_require(`
12000 - type oracledb_port_t;
12001 + type ntp_port_t;
12002 ')
12003
12004 - allow $1 oracledb_port_t:tcp_socket name_bind;
12005 -
12006 + allow $1 ntp_port_t:tcp_socket name_bind;
12007 + allow $1 self:capability net_bind_service;
12008 ')
12009
12010 ########################################
12011 ## <summary>
12012 -## Bind UDP sockets to the oracledb port.
12013 +## Bind UDP sockets to the ntp port.
12014 ## </summary>
12015 ## <param name="domain">
12016 ## <summary>
12017 @@ -58693,18 +59579,18 @@ interface(`corenet_tcp_bind_oracledb_port',`
12018 ## </param>
12019 ## <infoflow type="none"/>
12020 #
12021 -interface(`corenet_udp_bind_oracledb_port',`
12022 +interface(`corenet_udp_bind_ntp_port',`
12023 gen_require(`
12024 - type oracledb_port_t;
12025 + type ntp_port_t;
12026 ')
12027
12028 - allow $1 oracledb_port_t:udp_socket name_bind;
12029 -
12030 + allow $1 ntp_port_t:udp_socket name_bind;
12031 + allow $1 self:capability net_bind_service;
12032 ')
12033
12034 ########################################
12035 ## <summary>
12036 -## Make a TCP connection to the oracledb port.
12037 +## Make a TCP connection to the ntp port.
12038 ## </summary>
12039 ## <param name="domain">
12040 ## <summary>
12041 @@ -58712,18 +59598,18 @@ interface(`corenet_udp_bind_oracledb_port',`
12042 ## </summary>
12043 ## </param>
12044 #
12045 -interface(`corenet_tcp_connect_oracledb_port',`
12046 +interface(`corenet_tcp_connect_ntp_port',`
12047 gen_require(`
12048 - type oracledb_port_t;
12049 + type ntp_port_t;
12050 ')
12051
12052 - allow $1 oracledb_port_t:tcp_socket name_connect;
12053 + allow $1 ntp_port_t:tcp_socket name_connect;
12054 ')
12055
12056
12057 ########################################
12058 ## <summary>
12059 -## Send oracledb_client packets.
12060 +## Send ntp_client packets.
12061 ## </summary>
12062 ## <param name="domain">
12063 ## <summary>
12064 @@ -58732,17 +59618,17 @@ interface(`corenet_tcp_connect_oracledb_port',`
12065 ## </param>
12066 ## <infoflow type="write" weight="10"/>
12067 #
12068 -interface(`corenet_send_oracledb_client_packets',`
12069 +interface(`corenet_send_ntp_client_packets',`
12070 gen_require(`
12071 - type oracledb_client_packet_t;
12072 + type ntp_client_packet_t;
12073 ')
12074
12075 - allow $1 oracledb_client_packet_t:packet send;
12076 + allow $1 ntp_client_packet_t:packet send;
12077 ')
12078
12079 ########################################
12080 ## <summary>
12081 -## Do not audit attempts to send oracledb_client packets.
12082 +## Do not audit attempts to send ntp_client packets.
12083 ## </summary>
12084 ## <param name="domain">
12085 ## <summary>
12086 @@ -58751,17 +59637,17 @@ interface(`corenet_send_oracledb_client_packets',`
12087 ## </param>
12088 ## <infoflow type="none"/>
12089 #
12090 -interface(`corenet_dontaudit_send_oracledb_client_packets',`
12091 +interface(`corenet_dontaudit_send_ntp_client_packets',`
12092 gen_require(`
12093 - type oracledb_client_packet_t;
12094 + type ntp_client_packet_t;
12095 ')
12096
12097 - dontaudit $1 oracledb_client_packet_t:packet send;
12098 + dontaudit $1 ntp_client_packet_t:packet send;
12099 ')
12100
12101 ########################################
12102 ## <summary>
12103 -## Receive oracledb_client packets.
12104 +## Receive ntp_client packets.
12105 ## </summary>
12106 ## <param name="domain">
12107 ## <summary>
12108 @@ -58770,17 +59656,17 @@ interface(`corenet_dontaudit_send_oracledb_client_packets',`
12109 ## </param>
12110 ## <infoflow type="read" weight="10"/>
12111 #
12112 -interface(`corenet_receive_oracledb_client_packets',`
12113 +interface(`corenet_receive_ntp_client_packets',`
12114 gen_require(`
12115 - type oracledb_client_packet_t;
12116 + type ntp_client_packet_t;
12117 ')
12118
12119 - allow $1 oracledb_client_packet_t:packet recv;
12120 + allow $1 ntp_client_packet_t:packet recv;
12121 ')
12122
12123 ########################################
12124 ## <summary>
12125 -## Do not audit attempts to receive oracledb_client packets.
12126 +## Do not audit attempts to receive ntp_client packets.
12127 ## </summary>
12128 ## <param name="domain">
12129 ## <summary>
12130 @@ -58789,17 +59675,17 @@ interface(`corenet_receive_oracledb_client_packets',`
12131 ## </param>
12132 ## <infoflow type="none"/>
12133 #
12134 -interface(`corenet_dontaudit_receive_oracledb_client_packets',`
12135 +interface(`corenet_dontaudit_receive_ntp_client_packets',`
12136 gen_require(`
12137 - type oracledb_client_packet_t;
12138 + type ntp_client_packet_t;
12139 ')
12140
12141 - dontaudit $1 oracledb_client_packet_t:packet recv;
12142 + dontaudit $1 ntp_client_packet_t:packet recv;
12143 ')
12144
12145 ########################################
12146 ## <summary>
12147 -## Send and receive oracledb_client packets.
12148 +## Send and receive ntp_client packets.
12149 ## </summary>
12150 ## <param name="domain">
12151 ## <summary>
12152 @@ -58808,14 +59694,14 @@ interface(`corenet_dontaudit_receive_oracledb_client_packets',`
12153 ## </param>
12154 ## <infoflow type="both" weight="10"/>
12155 #
12156 -interface(`corenet_sendrecv_oracledb_client_packets',`
12157 - corenet_send_oracledb_client_packets($1)
12158 - corenet_receive_oracledb_client_packets($1)
12159 +interface(`corenet_sendrecv_ntp_client_packets',`
12160 + corenet_send_ntp_client_packets($1)
12161 + corenet_receive_ntp_client_packets($1)
12162 ')
12163
12164 ########################################
12165 ## <summary>
12166 -## Do not audit attempts to send and receive oracledb_client packets.
12167 +## Do not audit attempts to send and receive ntp_client packets.
12168 ## </summary>
12169 ## <param name="domain">
12170 ## <summary>
12171 @@ -58824,14 +59710,14 @@ interface(`corenet_sendrecv_oracledb_client_packets',`
12172 ## </param>
12173 ## <infoflow type="none"/>
12174 #
12175 -interface(`corenet_dontaudit_sendrecv_oracledb_client_packets',`
12176 - corenet_dontaudit_send_oracledb_client_packets($1)
12177 - corenet_dontaudit_receive_oracledb_client_packets($1)
12178 +interface(`corenet_dontaudit_sendrecv_ntp_client_packets',`
12179 + corenet_dontaudit_send_ntp_client_packets($1)
12180 + corenet_dontaudit_receive_ntp_client_packets($1)
12181 ')
12182
12183 ########################################
12184 ## <summary>
12185 -## Relabel packets to oracledb_client the packet type.
12186 +## Relabel packets to ntp_client the packet type.
12187 ## </summary>
12188 ## <param name="domain">
12189 ## <summary>
12190 @@ -58839,18 +59725,18 @@ interface(`corenet_dontaudit_sendrecv_oracledb_client_packets',`
12191 ## </summary>
12192 ## </param>
12193 #
12194 -interface(`corenet_relabelto_oracledb_client_packets',`
12195 +interface(`corenet_relabelto_ntp_client_packets',`
12196 gen_require(`
12197 - type oracledb_client_packet_t;
12198 + type ntp_client_packet_t;
12199 ')
12200
12201 - allow $1 oracledb_client_packet_t:packet relabelto;
12202 + allow $1 ntp_client_packet_t:packet relabelto;
12203 ')
12204
12205
12206 ########################################
12207 ## <summary>
12208 -## Send oracledb_server packets.
12209 +## Send ntp_server packets.
12210 ## </summary>
12211 ## <param name="domain">
12212 ## <summary>
12213 @@ -58859,17 +59745,17 @@ interface(`corenet_relabelto_oracledb_client_packets',`
12214 ## </param>
12215 ## <infoflow type="write" weight="10"/>
12216 #
12217 -interface(`corenet_send_oracledb_server_packets',`
12218 +interface(`corenet_send_ntp_server_packets',`
12219 gen_require(`
12220 - type oracledb_server_packet_t;
12221 + type ntp_server_packet_t;
12222 ')
12223
12224 - allow $1 oracledb_server_packet_t:packet send;
12225 + allow $1 ntp_server_packet_t:packet send;
12226 ')
12227
12228 ########################################
12229 ## <summary>
12230 -## Do not audit attempts to send oracledb_server packets.
12231 +## Do not audit attempts to send ntp_server packets.
12232 ## </summary>
12233 ## <param name="domain">
12234 ## <summary>
12235 @@ -58878,17 +59764,17 @@ interface(`corenet_send_oracledb_server_packets',`
12236 ## </param>
12237 ## <infoflow type="none"/>
12238 #
12239 -interface(`corenet_dontaudit_send_oracledb_server_packets',`
12240 +interface(`corenet_dontaudit_send_ntp_server_packets',`
12241 gen_require(`
12242 - type oracledb_server_packet_t;
12243 + type ntp_server_packet_t;
12244 ')
12245
12246 - dontaudit $1 oracledb_server_packet_t:packet send;
12247 + dontaudit $1 ntp_server_packet_t:packet send;
12248 ')
12249
12250 ########################################
12251 ## <summary>
12252 -## Receive oracledb_server packets.
12253 +## Receive ntp_server packets.
12254 ## </summary>
12255 ## <param name="domain">
12256 ## <summary>
12257 @@ -58897,17 +59783,17 @@ interface(`corenet_dontaudit_send_oracledb_server_packets',`
12258 ## </param>
12259 ## <infoflow type="read" weight="10"/>
12260 #
12261 -interface(`corenet_receive_oracledb_server_packets',`
12262 +interface(`corenet_receive_ntp_server_packets',`
12263 gen_require(`
12264 - type oracledb_server_packet_t;
12265 + type ntp_server_packet_t;
12266 ')
12267
12268 - allow $1 oracledb_server_packet_t:packet recv;
12269 + allow $1 ntp_server_packet_t:packet recv;
12270 ')
12271
12272 ########################################
12273 ## <summary>
12274 -## Do not audit attempts to receive oracledb_server packets.
12275 +## Do not audit attempts to receive ntp_server packets.
12276 ## </summary>
12277 ## <param name="domain">
12278 ## <summary>
12279 @@ -58916,17 +59802,17 @@ interface(`corenet_receive_oracledb_server_packets',`
12280 ## </param>
12281 ## <infoflow type="none"/>
12282 #
12283 -interface(`corenet_dontaudit_receive_oracledb_server_packets',`
12284 +interface(`corenet_dontaudit_receive_ntp_server_packets',`
12285 gen_require(`
12286 - type oracledb_server_packet_t;
12287 + type ntp_server_packet_t;
12288 ')
12289
12290 - dontaudit $1 oracledb_server_packet_t:packet recv;
12291 + dontaudit $1 ntp_server_packet_t:packet recv;
12292 ')
12293
12294 ########################################
12295 ## <summary>
12296 -## Send and receive oracledb_server packets.
12297 +## Send and receive ntp_server packets.
12298 ## </summary>
12299 ## <param name="domain">
12300 ## <summary>
12301 @@ -58935,14 +59821,14 @@ interface(`corenet_dontaudit_receive_oracledb_server_packets',`
12302 ## </param>
12303 ## <infoflow type="both" weight="10"/>
12304 #
12305 -interface(`corenet_sendrecv_oracledb_server_packets',`
12306 - corenet_send_oracledb_server_packets($1)
12307 - corenet_receive_oracledb_server_packets($1)
12308 +interface(`corenet_sendrecv_ntp_server_packets',`
12309 + corenet_send_ntp_server_packets($1)
12310 + corenet_receive_ntp_server_packets($1)
12311 ')
12312
12313 ########################################
12314 ## <summary>
12315 -## Do not audit attempts to send and receive oracledb_server packets.
12316 +## Do not audit attempts to send and receive ntp_server packets.
12317 ## </summary>
12318 ## <param name="domain">
12319 ## <summary>
12320 @@ -58951,14 +59837,14 @@ interface(`corenet_sendrecv_oracledb_server_packets',`
12321 ## </param>
12322 ## <infoflow type="none"/>
12323 #
12324 -interface(`corenet_dontaudit_sendrecv_oracledb_server_packets',`
12325 - corenet_dontaudit_send_oracledb_server_packets($1)
12326 - corenet_dontaudit_receive_oracledb_server_packets($1)
12327 +interface(`corenet_dontaudit_sendrecv_ntp_server_packets',`
12328 + corenet_dontaudit_send_ntp_server_packets($1)
12329 + corenet_dontaudit_receive_ntp_server_packets($1)
12330 ')
12331
12332 ########################################
12333 ## <summary>
12334 -## Relabel packets to oracledb_server the packet type.
12335 +## Relabel packets to ntp_server the packet type.
12336 ## </summary>
12337 ## <param name="domain">
12338 ## <summary>
12339 @@ -58966,12 +59852,12 @@ interface(`corenet_dontaudit_sendrecv_oracledb_server_packets',`
12340 ## </summary>
12341 ## </param>
12342 #
12343 -interface(`corenet_relabelto_oracledb_server_packets',`
12344 +interface(`corenet_relabelto_ntp_server_packets',`
12345 gen_require(`
12346 - type oracledb_server_packet_t;
12347 + type ntp_server_packet_t;
12348 ')
12349
12350 - allow $1 oracledb_server_packet_t:packet relabelto;
12351 + allow $1 ntp_server_packet_t:packet relabelto;
12352 ')
12353
12354
12355 @@ -58979,7 +59865,7 @@ interface(`corenet_relabelto_oracledb_server_packets',`
12356
12357 ########################################
12358 ## <summary>
12359 -## Send and receive TCP traffic on the ocsp port.
12360 +## Send and receive TCP traffic on the oa_system port.
12361 ## </summary>
12362 ## <param name="domain">
12363 ## <summary>
12364 @@ -58988,17 +59874,17 @@ interface(`corenet_relabelto_oracledb_server_packets',`
12365 ## </param>
12366 ## <infoflow type="both" weight="10"/>
12367 #
12368 -interface(`corenet_tcp_sendrecv_ocsp_port',`
12369 +interface(`corenet_tcp_sendrecv_oa_system_port',`
12370 gen_require(`
12371 - type ocsp_port_t;
12372 + type oa_system_port_t;
12373 ')
12374
12375 - allow $1 ocsp_port_t:tcp_socket { send_msg recv_msg };
12376 + allow $1 oa_system_port_t:tcp_socket { send_msg recv_msg };
12377 ')
12378
12379 ########################################
12380 ## <summary>
12381 -## Send UDP traffic on the ocsp port.
12382 +## Send UDP traffic on the oa_system port.
12383 ## </summary>
12384 ## <param name="domain">
12385 ## <summary>
12386 @@ -59007,17 +59893,17 @@ interface(`corenet_tcp_sendrecv_ocsp_port',`
12387 ## </param>
12388 ## <infoflow type="write" weight="10"/>
12389 #
12390 -interface(`corenet_udp_send_ocsp_port',`
12391 +interface(`corenet_udp_send_oa_system_port',`
12392 gen_require(`
12393 - type ocsp_port_t;
12394 + type oa_system_port_t;
12395 ')
12396
12397 - allow $1 ocsp_port_t:udp_socket send_msg;
12398 + allow $1 oa_system_port_t:udp_socket send_msg;
12399 ')
12400
12401 ########################################
12402 ## <summary>
12403 -## Do not audit attempts to send UDP traffic on the ocsp port.
12404 +## Do not audit attempts to send UDP traffic on the oa_system port.
12405 ## </summary>
12406 ## <param name="domain">
12407 ## <summary>
12408 @@ -59026,17 +59912,17 @@ interface(`corenet_udp_send_ocsp_port',`
12409 ## </param>
12410 ## <infoflow type="none"/>
12411 #
12412 -interface(`corenet_dontaudit_udp_send_ocsp_port',`
12413 +interface(`corenet_dontaudit_udp_send_oa_system_port',`
12414 gen_require(`
12415 - type ocsp_port_t;
12416 + type oa_system_port_t;
12417 ')
12418
12419 - dontaudit $1 ocsp_port_t:udp_socket send_msg;
12420 + dontaudit $1 oa_system_port_t:udp_socket send_msg;
12421 ')
12422
12423 ########################################
12424 ## <summary>
12425 -## Receive UDP traffic on the ocsp port.
12426 +## Receive UDP traffic on the oa_system port.
12427 ## </summary>
12428 ## <param name="domain">
12429 ## <summary>
12430 @@ -59045,17 +59931,17 @@ interface(`corenet_dontaudit_udp_send_ocsp_port',`
12431 ## </param>
12432 ## <infoflow type="read" weight="10"/>
12433 #
12434 -interface(`corenet_udp_receive_ocsp_port',`
12435 +interface(`corenet_udp_receive_oa_system_port',`
12436 gen_require(`
12437 - type ocsp_port_t;
12438 + type oa_system_port_t;
12439 ')
12440
12441 - allow $1 ocsp_port_t:udp_socket recv_msg;
12442 + allow $1 oa_system_port_t:udp_socket recv_msg;
12443 ')
12444
12445 ########################################
12446 ## <summary>
12447 -## Do not audit attempts to receive UDP traffic on the ocsp port.
12448 +## Do not audit attempts to receive UDP traffic on the oa_system port.
12449 ## </summary>
12450 ## <param name="domain">
12451 ## <summary>
12452 @@ -59064,17 +59950,17 @@ interface(`corenet_udp_receive_ocsp_port',`
12453 ## </param>
12454 ## <infoflow type="none"/>
12455 #
12456 -interface(`corenet_dontaudit_udp_receive_ocsp_port',`
12457 +interface(`corenet_dontaudit_udp_receive_oa_system_port',`
12458 gen_require(`
12459 - type ocsp_port_t;
12460 + type oa_system_port_t;
12461 ')
12462
12463 - dontaudit $1 ocsp_port_t:udp_socket recv_msg;
12464 + dontaudit $1 oa_system_port_t:udp_socket recv_msg;
12465 ')
12466
12467 ########################################
12468 ## <summary>
12469 -## Send and receive UDP traffic on the ocsp port.
12470 +## Send and receive UDP traffic on the oa_system port.
12471 ## </summary>
12472 ## <param name="domain">
12473 ## <summary>
12474 @@ -59083,15 +59969,15 @@ interface(`corenet_dontaudit_udp_receive_ocsp_port',`
12475 ## </param>
12476 ## <infoflow type="both" weight="10"/>
12477 #
12478 -interface(`corenet_udp_sendrecv_ocsp_port',`
12479 - corenet_udp_send_ocsp_port($1)
12480 - corenet_udp_receive_ocsp_port($1)
12481 +interface(`corenet_udp_sendrecv_oa_system_port',`
12482 + corenet_udp_send_oa_system_port($1)
12483 + corenet_udp_receive_oa_system_port($1)
12484 ')
12485
12486 ########################################
12487 ## <summary>
12488 ## Do not audit attempts to send and receive
12489 -## UDP traffic on the ocsp port.
12490 +## UDP traffic on the oa_system port.
12491 ## </summary>
12492 ## <param name="domain">
12493 ## <summary>
12494 @@ -59100,14 +59986,14 @@ interface(`corenet_udp_sendrecv_ocsp_port',`
12495 ## </param>
12496 ## <infoflow type="none"/>
12497 #
12498 -interface(`corenet_dontaudit_udp_sendrecv_ocsp_port',`
12499 - corenet_dontaudit_udp_send_ocsp_port($1)
12500 - corenet_dontaudit_udp_receive_ocsp_port($1)
12501 +interface(`corenet_dontaudit_udp_sendrecv_oa_system_port',`
12502 + corenet_dontaudit_udp_send_oa_system_port($1)
12503 + corenet_dontaudit_udp_receive_oa_system_port($1)
12504 ')
12505
12506 ########################################
12507 ## <summary>
12508 -## Bind TCP sockets to the ocsp port.
12509 +## Bind TCP sockets to the oa_system port.
12510 ## </summary>
12511 ## <param name="domain">
12512 ## <summary>
12513 @@ -59116,18 +60002,18 @@ interface(`corenet_dontaudit_udp_sendrecv_ocsp_port',`
12514 ## </param>
12515 ## <infoflow type="none"/>
12516 #
12517 -interface(`corenet_tcp_bind_ocsp_port',`
12518 +interface(`corenet_tcp_bind_oa_system_port',`
12519 gen_require(`
12520 - type ocsp_port_t;
12521 + type oa_system_port_t;
12522 ')
12523
12524 - allow $1 ocsp_port_t:tcp_socket name_bind;
12525 + allow $1 oa_system_port_t:tcp_socket name_bind;
12526
12527 ')
12528
12529 ########################################
12530 ## <summary>
12531 -## Bind UDP sockets to the ocsp port.
12532 +## Bind UDP sockets to the oa_system port.
12533 ## </summary>
12534 ## <param name="domain">
12535 ## <summary>
12536 @@ -59136,18 +60022,18 @@ interface(`corenet_tcp_bind_ocsp_port',`
12537 ## </param>
12538 ## <infoflow type="none"/>
12539 #
12540 -interface(`corenet_udp_bind_ocsp_port',`
12541 +interface(`corenet_udp_bind_oa_system_port',`
12542 gen_require(`
12543 - type ocsp_port_t;
12544 + type oa_system_port_t;
12545 ')
12546
12547 - allow $1 ocsp_port_t:udp_socket name_bind;
12548 + allow $1 oa_system_port_t:udp_socket name_bind;
12549
12550 ')
12551
12552 ########################################
12553 ## <summary>
12554 -## Make a TCP connection to the ocsp port.
12555 +## Make a TCP connection to the oa_system port.
12556 ## </summary>
12557 ## <param name="domain">
12558 ## <summary>
12559 @@ -59155,18 +60041,18 @@ interface(`corenet_udp_bind_ocsp_port',`
12560 ## </summary>
12561 ## </param>
12562 #
12563 -interface(`corenet_tcp_connect_ocsp_port',`
12564 +interface(`corenet_tcp_connect_oa_system_port',`
12565 gen_require(`
12566 - type ocsp_port_t;
12567 + type oa_system_port_t;
12568 ')
12569
12570 - allow $1 ocsp_port_t:tcp_socket name_connect;
12571 + allow $1 oa_system_port_t:tcp_socket name_connect;
12572 ')
12573
12574
12575 ########################################
12576 ## <summary>
12577 -## Send ocsp_client packets.
12578 +## Send oa_system_client packets.
12579 ## </summary>
12580 ## <param name="domain">
12581 ## <summary>
12582 @@ -59175,17 +60061,17 @@ interface(`corenet_tcp_connect_ocsp_port',`
12583 ## </param>
12584 ## <infoflow type="write" weight="10"/>
12585 #
12586 -interface(`corenet_send_ocsp_client_packets',`
12587 +interface(`corenet_send_oa_system_client_packets',`
12588 gen_require(`
12589 - type ocsp_client_packet_t;
12590 + type oa_system_client_packet_t;
12591 ')
12592
12593 - allow $1 ocsp_client_packet_t:packet send;
12594 + allow $1 oa_system_client_packet_t:packet send;
12595 ')
12596
12597 ########################################
12598 ## <summary>
12599 -## Do not audit attempts to send ocsp_client packets.
12600 +## Do not audit attempts to send oa_system_client packets.
12601 ## </summary>
12602 ## <param name="domain">
12603 ## <summary>
12604 @@ -59194,17 +60080,17 @@ interface(`corenet_send_ocsp_client_packets',`
12605 ## </param>
12606 ## <infoflow type="none"/>
12607 #
12608 -interface(`corenet_dontaudit_send_ocsp_client_packets',`
12609 +interface(`corenet_dontaudit_send_oa_system_client_packets',`
12610 gen_require(`
12611 - type ocsp_client_packet_t;
12612 + type oa_system_client_packet_t;
12613 ')
12614
12615 - dontaudit $1 ocsp_client_packet_t:packet send;
12616 + dontaudit $1 oa_system_client_packet_t:packet send;
12617 ')
12618
12619 ########################################
12620 ## <summary>
12621 -## Receive ocsp_client packets.
12622 +## Receive oa_system_client packets.
12623 ## </summary>
12624 ## <param name="domain">
12625 ## <summary>
12626 @@ -59213,17 +60099,17 @@ interface(`corenet_dontaudit_send_ocsp_client_packets',`
12627 ## </param>
12628 ## <infoflow type="read" weight="10"/>
12629 #
12630 -interface(`corenet_receive_ocsp_client_packets',`
12631 +interface(`corenet_receive_oa_system_client_packets',`
12632 gen_require(`
12633 - type ocsp_client_packet_t;
12634 + type oa_system_client_packet_t;
12635 ')
12636
12637 - allow $1 ocsp_client_packet_t:packet recv;
12638 + allow $1 oa_system_client_packet_t:packet recv;
12639 ')
12640
12641 ########################################
12642 ## <summary>
12643 -## Do not audit attempts to receive ocsp_client packets.
12644 +## Do not audit attempts to receive oa_system_client packets.
12645 ## </summary>
12646 ## <param name="domain">
12647 ## <summary>
12648 @@ -59232,17 +60118,17 @@ interface(`corenet_receive_ocsp_client_packets',`
12649 ## </param>
12650 ## <infoflow type="none"/>
12651 #
12652 -interface(`corenet_dontaudit_receive_ocsp_client_packets',`
12653 +interface(`corenet_dontaudit_receive_oa_system_client_packets',`
12654 gen_require(`
12655 - type ocsp_client_packet_t;
12656 + type oa_system_client_packet_t;
12657 ')
12658
12659 - dontaudit $1 ocsp_client_packet_t:packet recv;
12660 + dontaudit $1 oa_system_client_packet_t:packet recv;
12661 ')
12662
12663 ########################################
12664 ## <summary>
12665 -## Send and receive ocsp_client packets.
12666 +## Send and receive oa_system_client packets.
12667 ## </summary>
12668 ## <param name="domain">
12669 ## <summary>
12670 @@ -59251,14 +60137,14 @@ interface(`corenet_dontaudit_receive_ocsp_client_packets',`
12671 ## </param>
12672 ## <infoflow type="both" weight="10"/>
12673 #
12674 -interface(`corenet_sendrecv_ocsp_client_packets',`
12675 - corenet_send_ocsp_client_packets($1)
12676 - corenet_receive_ocsp_client_packets($1)
12677 +interface(`corenet_sendrecv_oa_system_client_packets',`
12678 + corenet_send_oa_system_client_packets($1)
12679 + corenet_receive_oa_system_client_packets($1)
12680 ')
12681
12682 ########################################
12683 ## <summary>
12684 -## Do not audit attempts to send and receive ocsp_client packets.
12685 +## Do not audit attempts to send and receive oa_system_client packets.
12686 ## </summary>
12687 ## <param name="domain">
12688 ## <summary>
12689 @@ -59267,14 +60153,14 @@ interface(`corenet_sendrecv_ocsp_client_packets',`
12690 ## </param>
12691 ## <infoflow type="none"/>
12692 #
12693 -interface(`corenet_dontaudit_sendrecv_ocsp_client_packets',`
12694 - corenet_dontaudit_send_ocsp_client_packets($1)
12695 - corenet_dontaudit_receive_ocsp_client_packets($1)
12696 +interface(`corenet_dontaudit_sendrecv_oa_system_client_packets',`
12697 + corenet_dontaudit_send_oa_system_client_packets($1)
12698 + corenet_dontaudit_receive_oa_system_client_packets($1)
12699 ')
12700
12701 ########################################
12702 ## <summary>
12703 -## Relabel packets to ocsp_client the packet type.
12704 +## Relabel packets to oa_system_client the packet type.
12705 ## </summary>
12706 ## <param name="domain">
12707 ## <summary>
12708 @@ -59282,18 +60168,18 @@ interface(`corenet_dontaudit_sendrecv_ocsp_client_packets',`
12709 ## </summary>
12710 ## </param>
12711 #
12712 -interface(`corenet_relabelto_ocsp_client_packets',`
12713 +interface(`corenet_relabelto_oa_system_client_packets',`
12714 gen_require(`
12715 - type ocsp_client_packet_t;
12716 + type oa_system_client_packet_t;
12717 ')
12718
12719 - allow $1 ocsp_client_packet_t:packet relabelto;
12720 + allow $1 oa_system_client_packet_t:packet relabelto;
12721 ')
12722
12723
12724 ########################################
12725 ## <summary>
12726 -## Send ocsp_server packets.
12727 +## Send oa_system_server packets.
12728 ## </summary>
12729 ## <param name="domain">
12730 ## <summary>
12731 @@ -59302,17 +60188,17 @@ interface(`corenet_relabelto_ocsp_client_packets',`
12732 ## </param>
12733 ## <infoflow type="write" weight="10"/>
12734 #
12735 -interface(`corenet_send_ocsp_server_packets',`
12736 +interface(`corenet_send_oa_system_server_packets',`
12737 gen_require(`
12738 - type ocsp_server_packet_t;
12739 + type oa_system_server_packet_t;
12740 ')
12741
12742 - allow $1 ocsp_server_packet_t:packet send;
12743 + allow $1 oa_system_server_packet_t:packet send;
12744 ')
12745
12746 ########################################
12747 ## <summary>
12748 -## Do not audit attempts to send ocsp_server packets.
12749 +## Do not audit attempts to send oa_system_server packets.
12750 ## </summary>
12751 ## <param name="domain">
12752 ## <summary>
12753 @@ -59321,17 +60207,17 @@ interface(`corenet_send_ocsp_server_packets',`
12754 ## </param>
12755 ## <infoflow type="none"/>
12756 #
12757 -interface(`corenet_dontaudit_send_ocsp_server_packets',`
12758 +interface(`corenet_dontaudit_send_oa_system_server_packets',`
12759 gen_require(`
12760 - type ocsp_server_packet_t;
12761 + type oa_system_server_packet_t;
12762 ')
12763
12764 - dontaudit $1 ocsp_server_packet_t:packet send;
12765 + dontaudit $1 oa_system_server_packet_t:packet send;
12766 ')
12767
12768 ########################################
12769 ## <summary>
12770 -## Receive ocsp_server packets.
12771 +## Receive oa_system_server packets.
12772 ## </summary>
12773 ## <param name="domain">
12774 ## <summary>
12775 @@ -59340,17 +60226,17 @@ interface(`corenet_dontaudit_send_ocsp_server_packets',`
12776 ## </param>
12777 ## <infoflow type="read" weight="10"/>
12778 #
12779 -interface(`corenet_receive_ocsp_server_packets',`
12780 +interface(`corenet_receive_oa_system_server_packets',`
12781 gen_require(`
12782 - type ocsp_server_packet_t;
12783 + type oa_system_server_packet_t;
12784 ')
12785
12786 - allow $1 ocsp_server_packet_t:packet recv;
12787 + allow $1 oa_system_server_packet_t:packet recv;
12788 ')
12789
12790 ########################################
12791 ## <summary>
12792 -## Do not audit attempts to receive ocsp_server packets.
12793 +## Do not audit attempts to receive oa_system_server packets.
12794 ## </summary>
12795 ## <param name="domain">
12796 ## <summary>
12797 @@ -59359,17 +60245,17 @@ interface(`corenet_receive_ocsp_server_packets',`
12798 ## </param>
12799 ## <infoflow type="none"/>
12800 #
12801 -interface(`corenet_dontaudit_receive_ocsp_server_packets',`
12802 +interface(`corenet_dontaudit_receive_oa_system_server_packets',`
12803 gen_require(`
12804 - type ocsp_server_packet_t;
12805 + type oa_system_server_packet_t;
12806 ')
12807
12808 - dontaudit $1 ocsp_server_packet_t:packet recv;
12809 + dontaudit $1 oa_system_server_packet_t:packet recv;
12810 ')
12811
12812 ########################################
12813 ## <summary>
12814 -## Send and receive ocsp_server packets.
12815 +## Send and receive oa_system_server packets.
12816 ## </summary>
12817 ## <param name="domain">
12818 ## <summary>
12819 @@ -59378,14 +60264,14 @@ interface(`corenet_dontaudit_receive_ocsp_server_packets',`
12820 ## </param>
12821 ## <infoflow type="both" weight="10"/>
12822 #
12823 -interface(`corenet_sendrecv_ocsp_server_packets',`
12824 - corenet_send_ocsp_server_packets($1)
12825 - corenet_receive_ocsp_server_packets($1)
12826 +interface(`corenet_sendrecv_oa_system_server_packets',`
12827 + corenet_send_oa_system_server_packets($1)
12828 + corenet_receive_oa_system_server_packets($1)
12829 ')
12830
12831 ########################################
12832 ## <summary>
12833 -## Do not audit attempts to send and receive ocsp_server packets.
12834 +## Do not audit attempts to send and receive oa_system_server packets.
12835 ## </summary>
12836 ## <param name="domain">
12837 ## <summary>
12838 @@ -59394,14 +60280,14 @@ interface(`corenet_sendrecv_ocsp_server_packets',`
12839 ## </param>
12840 ## <infoflow type="none"/>
12841 #
12842 -interface(`corenet_dontaudit_sendrecv_ocsp_server_packets',`
12843 - corenet_dontaudit_send_ocsp_server_packets($1)
12844 - corenet_dontaudit_receive_ocsp_server_packets($1)
12845 +interface(`corenet_dontaudit_sendrecv_oa_system_server_packets',`
12846 + corenet_dontaudit_send_oa_system_server_packets($1)
12847 + corenet_dontaudit_receive_oa_system_server_packets($1)
12848 ')
12849
12850 ########################################
12851 ## <summary>
12852 -## Relabel packets to ocsp_server the packet type.
12853 +## Relabel packets to oa_system_server the packet type.
12854 ## </summary>
12855 ## <param name="domain">
12856 ## <summary>
12857 @@ -59409,12 +60295,12 @@ interface(`corenet_dontaudit_sendrecv_ocsp_server_packets',`
12858 ## </summary>
12859 ## </param>
12860 #
12861 -interface(`corenet_relabelto_ocsp_server_packets',`
12862 +interface(`corenet_relabelto_oa_system_server_packets',`
12863 gen_require(`
12864 - type ocsp_server_packet_t;
12865 + type oa_system_server_packet_t;
12866 ')
12867
12868 - allow $1 ocsp_server_packet_t:packet relabelto;
12869 + allow $1 oa_system_server_packet_t:packet relabelto;
12870 ')
12871
12872
12873 @@ -59422,7 +60308,7 @@ interface(`corenet_relabelto_ocsp_server_packets',`
12874
12875 ########################################
12876 ## <summary>
12877 -## Send and receive TCP traffic on the openhpid port.
12878 +## Send and receive TCP traffic on the oracledb port.
12879 ## </summary>
12880 ## <param name="domain">
12881 ## <summary>
12882 @@ -59431,17 +60317,17 @@ interface(`corenet_relabelto_ocsp_server_packets',`
12883 ## </param>
12884 ## <infoflow type="both" weight="10"/>
12885 #
12886 -interface(`corenet_tcp_sendrecv_openhpid_port',`
12887 +interface(`corenet_tcp_sendrecv_oracledb_port',`
12888 gen_require(`
12889 - type openhpid_port_t;
12890 + type oracledb_port_t;
12891 ')
12892
12893 - allow $1 openhpid_port_t:tcp_socket { send_msg recv_msg };
12894 + allow $1 oracledb_port_t:tcp_socket { send_msg recv_msg };
12895 ')
12896
12897 ########################################
12898 ## <summary>
12899 -## Send UDP traffic on the openhpid port.
12900 +## Send UDP traffic on the oracledb port.
12901 ## </summary>
12902 ## <param name="domain">
12903 ## <summary>
12904 @@ -59450,17 +60336,17 @@ interface(`corenet_tcp_sendrecv_openhpid_port',`
12905 ## </param>
12906 ## <infoflow type="write" weight="10"/>
12907 #
12908 -interface(`corenet_udp_send_openhpid_port',`
12909 +interface(`corenet_udp_send_oracledb_port',`
12910 gen_require(`
12911 - type openhpid_port_t;
12912 + type oracledb_port_t;
12913 ')
12914
12915 - allow $1 openhpid_port_t:udp_socket send_msg;
12916 + allow $1 oracledb_port_t:udp_socket send_msg;
12917 ')
12918
12919 ########################################
12920 ## <summary>
12921 -## Do not audit attempts to send UDP traffic on the openhpid port.
12922 +## Do not audit attempts to send UDP traffic on the oracledb port.
12923 ## </summary>
12924 ## <param name="domain">
12925 ## <summary>
12926 @@ -59469,17 +60355,17 @@ interface(`corenet_udp_send_openhpid_port',`
12927 ## </param>
12928 ## <infoflow type="none"/>
12929 #
12930 -interface(`corenet_dontaudit_udp_send_openhpid_port',`
12931 +interface(`corenet_dontaudit_udp_send_oracledb_port',`
12932 gen_require(`
12933 - type openhpid_port_t;
12934 + type oracledb_port_t;
12935 ')
12936
12937 - dontaudit $1 openhpid_port_t:udp_socket send_msg;
12938 + dontaudit $1 oracledb_port_t:udp_socket send_msg;
12939 ')
12940
12941 ########################################
12942 ## <summary>
12943 -## Receive UDP traffic on the openhpid port.
12944 +## Receive UDP traffic on the oracledb port.
12945 ## </summary>
12946 ## <param name="domain">
12947 ## <summary>
12948 @@ -59488,17 +60374,17 @@ interface(`corenet_dontaudit_udp_send_openhpid_port',`
12949 ## </param>
12950 ## <infoflow type="read" weight="10"/>
12951 #
12952 -interface(`corenet_udp_receive_openhpid_port',`
12953 +interface(`corenet_udp_receive_oracledb_port',`
12954 gen_require(`
12955 - type openhpid_port_t;
12956 + type oracledb_port_t;
12957 ')
12958
12959 - allow $1 openhpid_port_t:udp_socket recv_msg;
12960 + allow $1 oracledb_port_t:udp_socket recv_msg;
12961 ')
12962
12963 ########################################
12964 ## <summary>
12965 -## Do not audit attempts to receive UDP traffic on the openhpid port.
12966 +## Do not audit attempts to receive UDP traffic on the oracledb port.
12967 ## </summary>
12968 ## <param name="domain">
12969 ## <summary>
12970 @@ -59507,17 +60393,17 @@ interface(`corenet_udp_receive_openhpid_port',`
12971 ## </param>
12972 ## <infoflow type="none"/>
12973 #
12974 -interface(`corenet_dontaudit_udp_receive_openhpid_port',`
12975 +interface(`corenet_dontaudit_udp_receive_oracledb_port',`
12976 gen_require(`
12977 - type openhpid_port_t;
12978 + type oracledb_port_t;
12979 ')
12980
12981 - dontaudit $1 openhpid_port_t:udp_socket recv_msg;
12982 + dontaudit $1 oracledb_port_t:udp_socket recv_msg;
12983 ')
12984
12985 ########################################
12986 ## <summary>
12987 -## Send and receive UDP traffic on the openhpid port.
12988 +## Send and receive UDP traffic on the oracledb port.
12989 ## </summary>
12990 ## <param name="domain">
12991 ## <summary>
12992 @@ -59526,15 +60412,15 @@ interface(`corenet_dontaudit_udp_receive_openhpid_port',`
12993 ## </param>
12994 ## <infoflow type="both" weight="10"/>
12995 #
12996 -interface(`corenet_udp_sendrecv_openhpid_port',`
12997 - corenet_udp_send_openhpid_port($1)
12998 - corenet_udp_receive_openhpid_port($1)
12999 +interface(`corenet_udp_sendrecv_oracledb_port',`
13000 + corenet_udp_send_oracledb_port($1)
13001 + corenet_udp_receive_oracledb_port($1)
13002 ')
13003
13004 ########################################
13005 ## <summary>
13006 ## Do not audit attempts to send and receive
13007 -## UDP traffic on the openhpid port.
13008 +## UDP traffic on the oracledb port.
13009 ## </summary>
13010 ## <param name="domain">
13011 ## <summary>
13012 @@ -59543,14 +60429,14 @@ interface(`corenet_udp_sendrecv_openhpid_port',`
13013 ## </param>
13014 ## <infoflow type="none"/>
13015 #
13016 -interface(`corenet_dontaudit_udp_sendrecv_openhpid_port',`
13017 - corenet_dontaudit_udp_send_openhpid_port($1)
13018 - corenet_dontaudit_udp_receive_openhpid_port($1)
13019 +interface(`corenet_dontaudit_udp_sendrecv_oracledb_port',`
13020 + corenet_dontaudit_udp_send_oracledb_port($1)
13021 + corenet_dontaudit_udp_receive_oracledb_port($1)
13022 ')
13023
13024 ########################################
13025 ## <summary>
13026 -## Bind TCP sockets to the openhpid port.
13027 +## Bind TCP sockets to the oracledb port.
13028 ## </summary>
13029 ## <param name="domain">
13030 ## <summary>
13031 @@ -59559,18 +60445,18 @@ interface(`corenet_dontaudit_udp_sendrecv_openhpid_port',`
13032 ## </param>
13033 ## <infoflow type="none"/>
13034 #
13035 -interface(`corenet_tcp_bind_openhpid_port',`
13036 +interface(`corenet_tcp_bind_oracledb_port',`
13037 gen_require(`
13038 - type openhpid_port_t;
13039 + type oracledb_port_t;
13040 ')
13041
13042 - allow $1 openhpid_port_t:tcp_socket name_bind;
13043 + allow $1 oracledb_port_t:tcp_socket name_bind;
13044
13045 ')
13046
13047 ########################################
13048 ## <summary>
13049 -## Bind UDP sockets to the openhpid port.
13050 +## Bind UDP sockets to the oracledb port.
13051 ## </summary>
13052 ## <param name="domain">
13053 ## <summary>
13054 @@ -59579,18 +60465,18 @@ interface(`corenet_tcp_bind_openhpid_port',`
13055 ## </param>
13056 ## <infoflow type="none"/>
13057 #
13058 -interface(`corenet_udp_bind_openhpid_port',`
13059 +interface(`corenet_udp_bind_oracledb_port',`
13060 gen_require(`
13061 - type openhpid_port_t;
13062 + type oracledb_port_t;
13063 ')
13064
13065 - allow $1 openhpid_port_t:udp_socket name_bind;
13066 + allow $1 oracledb_port_t:udp_socket name_bind;
13067
13068 ')
13069
13070 ########################################
13071 ## <summary>
13072 -## Make a TCP connection to the openhpid port.
13073 +## Make a TCP connection to the oracledb port.
13074 ## </summary>
13075 ## <param name="domain">
13076 ## <summary>
13077 @@ -59598,18 +60484,18 @@ interface(`corenet_udp_bind_openhpid_port',`
13078 ## </summary>
13079 ## </param>
13080 #
13081 -interface(`corenet_tcp_connect_openhpid_port',`
13082 +interface(`corenet_tcp_connect_oracledb_port',`
13083 gen_require(`
13084 - type openhpid_port_t;
13085 + type oracledb_port_t;
13086 ')
13087
13088 - allow $1 openhpid_port_t:tcp_socket name_connect;
13089 + allow $1 oracledb_port_t:tcp_socket name_connect;
13090 ')
13091
13092
13093 ########################################
13094 ## <summary>
13095 -## Send openhpid_client packets.
13096 +## Send oracledb_client packets.
13097 ## </summary>
13098 ## <param name="domain">
13099 ## <summary>
13100 @@ -59618,17 +60504,17 @@ interface(`corenet_tcp_connect_openhpid_port',`
13101 ## </param>
13102 ## <infoflow type="write" weight="10"/>
13103 #
13104 -interface(`corenet_send_openhpid_client_packets',`
13105 +interface(`corenet_send_oracledb_client_packets',`
13106 gen_require(`
13107 - type openhpid_client_packet_t;
13108 + type oracledb_client_packet_t;
13109 ')
13110
13111 - allow $1 openhpid_client_packet_t:packet send;
13112 + allow $1 oracledb_client_packet_t:packet send;
13113 ')
13114
13115 ########################################
13116 ## <summary>
13117 -## Do not audit attempts to send openhpid_client packets.
13118 +## Do not audit attempts to send oracledb_client packets.
13119 ## </summary>
13120 ## <param name="domain">
13121 ## <summary>
13122 @@ -59637,17 +60523,17 @@ interface(`corenet_send_openhpid_client_packets',`
13123 ## </param>
13124 ## <infoflow type="none"/>
13125 #
13126 -interface(`corenet_dontaudit_send_openhpid_client_packets',`
13127 +interface(`corenet_dontaudit_send_oracledb_client_packets',`
13128 gen_require(`
13129 - type openhpid_client_packet_t;
13130 + type oracledb_client_packet_t;
13131 ')
13132
13133 - dontaudit $1 openhpid_client_packet_t:packet send;
13134 + dontaudit $1 oracledb_client_packet_t:packet send;
13135 ')
13136
13137 ########################################
13138 ## <summary>
13139 -## Receive openhpid_client packets.
13140 +## Receive oracledb_client packets.
13141 ## </summary>
13142 ## <param name="domain">
13143 ## <summary>
13144 @@ -59656,17 +60542,17 @@ interface(`corenet_dontaudit_send_openhpid_client_packets',`
13145 ## </param>
13146 ## <infoflow type="read" weight="10"/>
13147 #
13148 -interface(`corenet_receive_openhpid_client_packets',`
13149 +interface(`corenet_receive_oracledb_client_packets',`
13150 gen_require(`
13151 - type openhpid_client_packet_t;
13152 + type oracledb_client_packet_t;
13153 ')
13154
13155 - allow $1 openhpid_client_packet_t:packet recv;
13156 + allow $1 oracledb_client_packet_t:packet recv;
13157 ')
13158
13159 ########################################
13160 ## <summary>
13161 -## Do not audit attempts to receive openhpid_client packets.
13162 +## Do not audit attempts to receive oracledb_client packets.
13163 ## </summary>
13164 ## <param name="domain">
13165 ## <summary>
13166 @@ -59675,17 +60561,17 @@ interface(`corenet_receive_openhpid_client_packets',`
13167 ## </param>
13168 ## <infoflow type="none"/>
13169 #
13170 -interface(`corenet_dontaudit_receive_openhpid_client_packets',`
13171 +interface(`corenet_dontaudit_receive_oracledb_client_packets',`
13172 gen_require(`
13173 - type openhpid_client_packet_t;
13174 + type oracledb_client_packet_t;
13175 ')
13176
13177 - dontaudit $1 openhpid_client_packet_t:packet recv;
13178 + dontaudit $1 oracledb_client_packet_t:packet recv;
13179 ')
13180
13181 ########################################
13182 ## <summary>
13183 -## Send and receive openhpid_client packets.
13184 +## Send and receive oracledb_client packets.
13185 ## </summary>
13186 ## <param name="domain">
13187 ## <summary>
13188 @@ -59694,14 +60580,14 @@ interface(`corenet_dontaudit_receive_openhpid_client_packets',`
13189 ## </param>
13190 ## <infoflow type="both" weight="10"/>
13191 #
13192 -interface(`corenet_sendrecv_openhpid_client_packets',`
13193 - corenet_send_openhpid_client_packets($1)
13194 - corenet_receive_openhpid_client_packets($1)
13195 +interface(`corenet_sendrecv_oracledb_client_packets',`
13196 + corenet_send_oracledb_client_packets($1)
13197 + corenet_receive_oracledb_client_packets($1)
13198 ')
13199
13200 ########################################
13201 ## <summary>
13202 -## Do not audit attempts to send and receive openhpid_client packets.
13203 +## Do not audit attempts to send and receive oracledb_client packets.
13204 ## </summary>
13205 ## <param name="domain">
13206 ## <summary>
13207 @@ -59710,14 +60596,14 @@ interface(`corenet_sendrecv_openhpid_client_packets',`
13208 ## </param>
13209 ## <infoflow type="none"/>
13210 #
13211 -interface(`corenet_dontaudit_sendrecv_openhpid_client_packets',`
13212 - corenet_dontaudit_send_openhpid_client_packets($1)
13213 - corenet_dontaudit_receive_openhpid_client_packets($1)
13214 +interface(`corenet_dontaudit_sendrecv_oracledb_client_packets',`
13215 + corenet_dontaudit_send_oracledb_client_packets($1)
13216 + corenet_dontaudit_receive_oracledb_client_packets($1)
13217 ')
13218
13219 ########################################
13220 ## <summary>
13221 -## Relabel packets to openhpid_client the packet type.
13222 +## Relabel packets to oracledb_client the packet type.
13223 ## </summary>
13224 ## <param name="domain">
13225 ## <summary>
13226 @@ -59725,18 +60611,18 @@ interface(`corenet_dontaudit_sendrecv_openhpid_client_packets',`
13227 ## </summary>
13228 ## </param>
13229 #
13230 -interface(`corenet_relabelto_openhpid_client_packets',`
13231 +interface(`corenet_relabelto_oracledb_client_packets',`
13232 gen_require(`
13233 - type openhpid_client_packet_t;
13234 + type oracledb_client_packet_t;
13235 ')
13236
13237 - allow $1 openhpid_client_packet_t:packet relabelto;
13238 + allow $1 oracledb_client_packet_t:packet relabelto;
13239 ')
13240
13241
13242 ########################################
13243 ## <summary>
13244 -## Send openhpid_server packets.
13245 +## Send oracledb_server packets.
13246 ## </summary>
13247 ## <param name="domain">
13248 ## <summary>
13249 @@ -59745,17 +60631,17 @@ interface(`corenet_relabelto_openhpid_client_packets',`
13250 ## </param>
13251 ## <infoflow type="write" weight="10"/>
13252 #
13253 -interface(`corenet_send_openhpid_server_packets',`
13254 +interface(`corenet_send_oracledb_server_packets',`
13255 gen_require(`
13256 - type openhpid_server_packet_t;
13257 + type oracledb_server_packet_t;
13258 ')
13259
13260 - allow $1 openhpid_server_packet_t:packet send;
13261 + allow $1 oracledb_server_packet_t:packet send;
13262 ')
13263
13264 ########################################
13265 ## <summary>
13266 -## Do not audit attempts to send openhpid_server packets.
13267 +## Do not audit attempts to send oracledb_server packets.
13268 ## </summary>
13269 ## <param name="domain">
13270 ## <summary>
13271 @@ -59764,17 +60650,17 @@ interface(`corenet_send_openhpid_server_packets',`
13272 ## </param>
13273 ## <infoflow type="none"/>
13274 #
13275 -interface(`corenet_dontaudit_send_openhpid_server_packets',`
13276 +interface(`corenet_dontaudit_send_oracledb_server_packets',`
13277 gen_require(`
13278 - type openhpid_server_packet_t;
13279 + type oracledb_server_packet_t;
13280 ')
13281
13282 - dontaudit $1 openhpid_server_packet_t:packet send;
13283 + dontaudit $1 oracledb_server_packet_t:packet send;
13284 ')
13285
13286 ########################################
13287 ## <summary>
13288 -## Receive openhpid_server packets.
13289 +## Receive oracledb_server packets.
13290 ## </summary>
13291 ## <param name="domain">
13292 ## <summary>
13293 @@ -59783,17 +60669,17 @@ interface(`corenet_dontaudit_send_openhpid_server_packets',`
13294 ## </param>
13295 ## <infoflow type="read" weight="10"/>
13296 #
13297 -interface(`corenet_receive_openhpid_server_packets',`
13298 +interface(`corenet_receive_oracledb_server_packets',`
13299 gen_require(`
13300 - type openhpid_server_packet_t;
13301 + type oracledb_server_packet_t;
13302 ')
13303
13304 - allow $1 openhpid_server_packet_t:packet recv;
13305 + allow $1 oracledb_server_packet_t:packet recv;
13306 ')
13307
13308 ########################################
13309 ## <summary>
13310 -## Do not audit attempts to receive openhpid_server packets.
13311 +## Do not audit attempts to receive oracledb_server packets.
13312 ## </summary>
13313 ## <param name="domain">
13314 ## <summary>
13315 @@ -59802,17 +60688,17 @@ interface(`corenet_receive_openhpid_server_packets',`
13316 ## </param>
13317 ## <infoflow type="none"/>
13318 #
13319 -interface(`corenet_dontaudit_receive_openhpid_server_packets',`
13320 +interface(`corenet_dontaudit_receive_oracledb_server_packets',`
13321 gen_require(`
13322 - type openhpid_server_packet_t;
13323 + type oracledb_server_packet_t;
13324 ')
13325
13326 - dontaudit $1 openhpid_server_packet_t:packet recv;
13327 + dontaudit $1 oracledb_server_packet_t:packet recv;
13328 ')
13329
13330 ########################################
13331 ## <summary>
13332 -## Send and receive openhpid_server packets.
13333 +## Send and receive oracledb_server packets.
13334 ## </summary>
13335 ## <param name="domain">
13336 ## <summary>
13337 @@ -59821,14 +60707,14 @@ interface(`corenet_dontaudit_receive_openhpid_server_packets',`
13338 ## </param>
13339 ## <infoflow type="both" weight="10"/>
13340 #
13341 -interface(`corenet_sendrecv_openhpid_server_packets',`
13342 - corenet_send_openhpid_server_packets($1)
13343 - corenet_receive_openhpid_server_packets($1)
13344 +interface(`corenet_sendrecv_oracledb_server_packets',`
13345 + corenet_send_oracledb_server_packets($1)
13346 + corenet_receive_oracledb_server_packets($1)
13347 ')
13348
13349 ########################################
13350 ## <summary>
13351 -## Do not audit attempts to send and receive openhpid_server packets.
13352 +## Do not audit attempts to send and receive oracledb_server packets.
13353 ## </summary>
13354 ## <param name="domain">
13355 ## <summary>
13356 @@ -59837,14 +60723,14 @@ interface(`corenet_sendrecv_openhpid_server_packets',`
13357 ## </param>
13358 ## <infoflow type="none"/>
13359 #
13360 -interface(`corenet_dontaudit_sendrecv_openhpid_server_packets',`
13361 - corenet_dontaudit_send_openhpid_server_packets($1)
13362 - corenet_dontaudit_receive_openhpid_server_packets($1)
13363 +interface(`corenet_dontaudit_sendrecv_oracledb_server_packets',`
13364 + corenet_dontaudit_send_oracledb_server_packets($1)
13365 + corenet_dontaudit_receive_oracledb_server_packets($1)
13366 ')
13367
13368 ########################################
13369 ## <summary>
13370 -## Relabel packets to openhpid_server the packet type.
13371 +## Relabel packets to oracledb_server the packet type.
13372 ## </summary>
13373 ## <param name="domain">
13374 ## <summary>
13375 @@ -59852,12 +60738,12 @@ interface(`corenet_dontaudit_sendrecv_openhpid_server_packets',`
13376 ## </summary>
13377 ## </param>
13378 #
13379 -interface(`corenet_relabelto_openhpid_server_packets',`
13380 +interface(`corenet_relabelto_oracledb_server_packets',`
13381 gen_require(`
13382 - type openhpid_server_packet_t;
13383 + type oracledb_server_packet_t;
13384 ')
13385
13386 - allow $1 openhpid_server_packet_t:packet relabelto;
13387 + allow $1 oracledb_server_packet_t:packet relabelto;
13388 ')
13389
13390
13391 @@ -59865,7 +60751,7 @@ interface(`corenet_relabelto_openhpid_server_packets',`
13392
13393 ########################################
13394 ## <summary>
13395 -## Send and receive TCP traffic on the openvpn port.
13396 +## Send and receive TCP traffic on the ocsp port.
13397 ## </summary>
13398 ## <param name="domain">
13399 ## <summary>
13400 @@ -59874,17 +60760,17 @@ interface(`corenet_relabelto_openhpid_server_packets',`
13401 ## </param>
13402 ## <infoflow type="both" weight="10"/>
13403 #
13404 -interface(`corenet_tcp_sendrecv_openvpn_port',`
13405 +interface(`corenet_tcp_sendrecv_ocsp_port',`
13406 gen_require(`
13407 - type openvpn_port_t;
13408 + type ocsp_port_t;
13409 ')
13410
13411 - allow $1 openvpn_port_t:tcp_socket { send_msg recv_msg };
13412 + allow $1 ocsp_port_t:tcp_socket { send_msg recv_msg };
13413 ')
13414
13415 ########################################
13416 ## <summary>
13417 -## Send UDP traffic on the openvpn port.
13418 +## Send UDP traffic on the ocsp port.
13419 ## </summary>
13420 ## <param name="domain">
13421 ## <summary>
13422 @@ -59893,17 +60779,17 @@ interface(`corenet_tcp_sendrecv_openvpn_port',`
13423 ## </param>
13424 ## <infoflow type="write" weight="10"/>
13425 #
13426 -interface(`corenet_udp_send_openvpn_port',`
13427 +interface(`corenet_udp_send_ocsp_port',`
13428 gen_require(`
13429 - type openvpn_port_t;
13430 + type ocsp_port_t;
13431 ')
13432
13433 - allow $1 openvpn_port_t:udp_socket send_msg;
13434 + allow $1 ocsp_port_t:udp_socket send_msg;
13435 ')
13436
13437 ########################################
13438 ## <summary>
13439 -## Do not audit attempts to send UDP traffic on the openvpn port.
13440 +## Do not audit attempts to send UDP traffic on the ocsp port.
13441 ## </summary>
13442 ## <param name="domain">
13443 ## <summary>
13444 @@ -59912,17 +60798,17 @@ interface(`corenet_udp_send_openvpn_port',`
13445 ## </param>
13446 ## <infoflow type="none"/>
13447 #
13448 -interface(`corenet_dontaudit_udp_send_openvpn_port',`
13449 +interface(`corenet_dontaudit_udp_send_ocsp_port',`
13450 gen_require(`
13451 - type openvpn_port_t;
13452 + type ocsp_port_t;
13453 ')
13454
13455 - dontaudit $1 openvpn_port_t:udp_socket send_msg;
13456 + dontaudit $1 ocsp_port_t:udp_socket send_msg;
13457 ')
13458
13459 ########################################
13460 ## <summary>
13461 -## Receive UDP traffic on the openvpn port.
13462 +## Receive UDP traffic on the ocsp port.
13463 ## </summary>
13464 ## <param name="domain">
13465 ## <summary>
13466 @@ -59931,17 +60817,17 @@ interface(`corenet_dontaudit_udp_send_openvpn_port',`
13467 ## </param>
13468 ## <infoflow type="read" weight="10"/>
13469 #
13470 -interface(`corenet_udp_receive_openvpn_port',`
13471 +interface(`corenet_udp_receive_ocsp_port',`
13472 gen_require(`
13473 - type openvpn_port_t;
13474 + type ocsp_port_t;
13475 ')
13476
13477 - allow $1 openvpn_port_t:udp_socket recv_msg;
13478 + allow $1 ocsp_port_t:udp_socket recv_msg;
13479 ')
13480
13481 ########################################
13482 ## <summary>
13483 -## Do not audit attempts to receive UDP traffic on the openvpn port.
13484 +## Do not audit attempts to receive UDP traffic on the ocsp port.
13485 ## </summary>
13486 ## <param name="domain">
13487 ## <summary>
13488 @@ -59950,17 +60836,17 @@ interface(`corenet_udp_receive_openvpn_port',`
13489 ## </param>
13490 ## <infoflow type="none"/>
13491 #
13492 -interface(`corenet_dontaudit_udp_receive_openvpn_port',`
13493 +interface(`corenet_dontaudit_udp_receive_ocsp_port',`
13494 gen_require(`
13495 - type openvpn_port_t;
13496 + type ocsp_port_t;
13497 ')
13498
13499 - dontaudit $1 openvpn_port_t:udp_socket recv_msg;
13500 + dontaudit $1 ocsp_port_t:udp_socket recv_msg;
13501 ')
13502
13503 ########################################
13504 ## <summary>
13505 -## Send and receive UDP traffic on the openvpn port.
13506 +## Send and receive UDP traffic on the ocsp port.
13507 ## </summary>
13508 ## <param name="domain">
13509 ## <summary>
13510 @@ -59969,15 +60855,15 @@ interface(`corenet_dontaudit_udp_receive_openvpn_port',`
13511 ## </param>
13512 ## <infoflow type="both" weight="10"/>
13513 #
13514 -interface(`corenet_udp_sendrecv_openvpn_port',`
13515 - corenet_udp_send_openvpn_port($1)
13516 - corenet_udp_receive_openvpn_port($1)
13517 +interface(`corenet_udp_sendrecv_ocsp_port',`
13518 + corenet_udp_send_ocsp_port($1)
13519 + corenet_udp_receive_ocsp_port($1)
13520 ')
13521
13522 ########################################
13523 ## <summary>
13524 ## Do not audit attempts to send and receive
13525 -## UDP traffic on the openvpn port.
13526 +## UDP traffic on the ocsp port.
13527 ## </summary>
13528 ## <param name="domain">
13529 ## <summary>
13530 @@ -59986,14 +60872,14 @@ interface(`corenet_udp_sendrecv_openvpn_port',`
13531 ## </param>
13532 ## <infoflow type="none"/>
13533 #
13534 -interface(`corenet_dontaudit_udp_sendrecv_openvpn_port',`
13535 - corenet_dontaudit_udp_send_openvpn_port($1)
13536 - corenet_dontaudit_udp_receive_openvpn_port($1)
13537 +interface(`corenet_dontaudit_udp_sendrecv_ocsp_port',`
13538 + corenet_dontaudit_udp_send_ocsp_port($1)
13539 + corenet_dontaudit_udp_receive_ocsp_port($1)
13540 ')
13541
13542 ########################################
13543 ## <summary>
13544 -## Bind TCP sockets to the openvpn port.
13545 +## Bind TCP sockets to the ocsp port.
13546 ## </summary>
13547 ## <param name="domain">
13548 ## <summary>
13549 @@ -60002,18 +60888,18 @@ interface(`corenet_dontaudit_udp_sendrecv_openvpn_port',`
13550 ## </param>
13551 ## <infoflow type="none"/>
13552 #
13553 -interface(`corenet_tcp_bind_openvpn_port',`
13554 +interface(`corenet_tcp_bind_ocsp_port',`
13555 gen_require(`
13556 - type openvpn_port_t;
13557 + type ocsp_port_t;
13558 ')
13559
13560 - allow $1 openvpn_port_t:tcp_socket name_bind;
13561 + allow $1 ocsp_port_t:tcp_socket name_bind;
13562
13563 ')
13564
13565 ########################################
13566 ## <summary>
13567 -## Bind UDP sockets to the openvpn port.
13568 +## Bind UDP sockets to the ocsp port.
13569 ## </summary>
13570 ## <param name="domain">
13571 ## <summary>
13572 @@ -60022,18 +60908,18 @@ interface(`corenet_tcp_bind_openvpn_port',`
13573 ## </param>
13574 ## <infoflow type="none"/>
13575 #
13576 -interface(`corenet_udp_bind_openvpn_port',`
13577 +interface(`corenet_udp_bind_ocsp_port',`
13578 gen_require(`
13579 - type openvpn_port_t;
13580 + type ocsp_port_t;
13581 ')
13582
13583 - allow $1 openvpn_port_t:udp_socket name_bind;
13584 + allow $1 ocsp_port_t:udp_socket name_bind;
13585
13586 ')
13587
13588 ########################################
13589 ## <summary>
13590 -## Make a TCP connection to the openvpn port.
13591 +## Make a TCP connection to the ocsp port.
13592 ## </summary>
13593 ## <param name="domain">
13594 ## <summary>
13595 @@ -60041,18 +60927,18 @@ interface(`corenet_udp_bind_openvpn_port',`
13596 ## </summary>
13597 ## </param>
13598 #
13599 -interface(`corenet_tcp_connect_openvpn_port',`
13600 +interface(`corenet_tcp_connect_ocsp_port',`
13601 gen_require(`
13602 - type openvpn_port_t;
13603 + type ocsp_port_t;
13604 ')
13605
13606 - allow $1 openvpn_port_t:tcp_socket name_connect;
13607 + allow $1 ocsp_port_t:tcp_socket name_connect;
13608 ')
13609
13610
13611 ########################################
13612 ## <summary>
13613 -## Send openvpn_client packets.
13614 +## Send ocsp_client packets.
13615 ## </summary>
13616 ## <param name="domain">
13617 ## <summary>
13618 @@ -60061,17 +60947,17 @@ interface(`corenet_tcp_connect_openvpn_port',`
13619 ## </param>
13620 ## <infoflow type="write" weight="10"/>
13621 #
13622 -interface(`corenet_send_openvpn_client_packets',`
13623 +interface(`corenet_send_ocsp_client_packets',`
13624 gen_require(`
13625 - type openvpn_client_packet_t;
13626 + type ocsp_client_packet_t;
13627 ')
13628
13629 - allow $1 openvpn_client_packet_t:packet send;
13630 + allow $1 ocsp_client_packet_t:packet send;
13631 ')
13632
13633 ########################################
13634 ## <summary>
13635 -## Do not audit attempts to send openvpn_client packets.
13636 +## Do not audit attempts to send ocsp_client packets.
13637 ## </summary>
13638 ## <param name="domain">
13639 ## <summary>
13640 @@ -60080,17 +60966,17 @@ interface(`corenet_send_openvpn_client_packets',`
13641 ## </param>
13642 ## <infoflow type="none"/>
13643 #
13644 -interface(`corenet_dontaudit_send_openvpn_client_packets',`
13645 +interface(`corenet_dontaudit_send_ocsp_client_packets',`
13646 gen_require(`
13647 - type openvpn_client_packet_t;
13648 + type ocsp_client_packet_t;
13649 ')
13650
13651 - dontaudit $1 openvpn_client_packet_t:packet send;
13652 + dontaudit $1 ocsp_client_packet_t:packet send;
13653 ')
13654
13655 ########################################
13656 ## <summary>
13657 -## Receive openvpn_client packets.
13658 +## Receive ocsp_client packets.
13659 ## </summary>
13660 ## <param name="domain">
13661 ## <summary>
13662 @@ -60099,17 +60985,17 @@ interface(`corenet_dontaudit_send_openvpn_client_packets',`
13663 ## </param>
13664 ## <infoflow type="read" weight="10"/>
13665 #
13666 -interface(`corenet_receive_openvpn_client_packets',`
13667 +interface(`corenet_receive_ocsp_client_packets',`
13668 gen_require(`
13669 - type openvpn_client_packet_t;
13670 + type ocsp_client_packet_t;
13671 ')
13672
13673 - allow $1 openvpn_client_packet_t:packet recv;
13674 + allow $1 ocsp_client_packet_t:packet recv;
13675 ')
13676
13677 ########################################
13678 ## <summary>
13679 -## Do not audit attempts to receive openvpn_client packets.
13680 +## Do not audit attempts to receive ocsp_client packets.
13681 ## </summary>
13682 ## <param name="domain">
13683 ## <summary>
13684 @@ -60118,17 +61004,17 @@ interface(`corenet_receive_openvpn_client_packets',`
13685 ## </param>
13686 ## <infoflow type="none"/>
13687 #
13688 -interface(`corenet_dontaudit_receive_openvpn_client_packets',`
13689 +interface(`corenet_dontaudit_receive_ocsp_client_packets',`
13690 gen_require(`
13691 - type openvpn_client_packet_t;
13692 + type ocsp_client_packet_t;
13693 ')
13694
13695 - dontaudit $1 openvpn_client_packet_t:packet recv;
13696 + dontaudit $1 ocsp_client_packet_t:packet recv;
13697 ')
13698
13699 ########################################
13700 ## <summary>
13701 -## Send and receive openvpn_client packets.
13702 +## Send and receive ocsp_client packets.
13703 ## </summary>
13704 ## <param name="domain">
13705 ## <summary>
13706 @@ -60137,14 +61023,14 @@ interface(`corenet_dontaudit_receive_openvpn_client_packets',`
13707 ## </param>
13708 ## <infoflow type="both" weight="10"/>
13709 #
13710 -interface(`corenet_sendrecv_openvpn_client_packets',`
13711 - corenet_send_openvpn_client_packets($1)
13712 - corenet_receive_openvpn_client_packets($1)
13713 +interface(`corenet_sendrecv_ocsp_client_packets',`
13714 + corenet_send_ocsp_client_packets($1)
13715 + corenet_receive_ocsp_client_packets($1)
13716 ')
13717
13718 ########################################
13719 ## <summary>
13720 -## Do not audit attempts to send and receive openvpn_client packets.
13721 +## Do not audit attempts to send and receive ocsp_client packets.
13722 ## </summary>
13723 ## <param name="domain">
13724 ## <summary>
13725 @@ -60153,14 +61039,14 @@ interface(`corenet_sendrecv_openvpn_client_packets',`
13726 ## </param>
13727 ## <infoflow type="none"/>
13728 #
13729 -interface(`corenet_dontaudit_sendrecv_openvpn_client_packets',`
13730 - corenet_dontaudit_send_openvpn_client_packets($1)
13731 - corenet_dontaudit_receive_openvpn_client_packets($1)
13732 +interface(`corenet_dontaudit_sendrecv_ocsp_client_packets',`
13733 + corenet_dontaudit_send_ocsp_client_packets($1)
13734 + corenet_dontaudit_receive_ocsp_client_packets($1)
13735 ')
13736
13737 ########################################
13738 ## <summary>
13739 -## Relabel packets to openvpn_client the packet type.
13740 +## Relabel packets to ocsp_client the packet type.
13741 ## </summary>
13742 ## <param name="domain">
13743 ## <summary>
13744 @@ -60168,18 +61054,18 @@ interface(`corenet_dontaudit_sendrecv_openvpn_client_packets',`
13745 ## </summary>
13746 ## </param>
13747 #
13748 -interface(`corenet_relabelto_openvpn_client_packets',`
13749 +interface(`corenet_relabelto_ocsp_client_packets',`
13750 gen_require(`
13751 - type openvpn_client_packet_t;
13752 + type ocsp_client_packet_t;
13753 ')
13754
13755 - allow $1 openvpn_client_packet_t:packet relabelto;
13756 + allow $1 ocsp_client_packet_t:packet relabelto;
13757 ')
13758
13759
13760 ########################################
13761 ## <summary>
13762 -## Send openvpn_server packets.
13763 +## Send ocsp_server packets.
13764 ## </summary>
13765 ## <param name="domain">
13766 ## <summary>
13767 @@ -60188,17 +61074,17 @@ interface(`corenet_relabelto_openvpn_client_packets',`
13768 ## </param>
13769 ## <infoflow type="write" weight="10"/>
13770 #
13771 -interface(`corenet_send_openvpn_server_packets',`
13772 +interface(`corenet_send_ocsp_server_packets',`
13773 gen_require(`
13774 - type openvpn_server_packet_t;
13775 + type ocsp_server_packet_t;
13776 ')
13777
13778 - allow $1 openvpn_server_packet_t:packet send;
13779 + allow $1 ocsp_server_packet_t:packet send;
13780 ')
13781
13782 ########################################
13783 ## <summary>
13784 -## Do not audit attempts to send openvpn_server packets.
13785 +## Do not audit attempts to send ocsp_server packets.
13786 ## </summary>
13787 ## <param name="domain">
13788 ## <summary>
13789 @@ -60207,17 +61093,17 @@ interface(`corenet_send_openvpn_server_packets',`
13790 ## </param>
13791 ## <infoflow type="none"/>
13792 #
13793 -interface(`corenet_dontaudit_send_openvpn_server_packets',`
13794 +interface(`corenet_dontaudit_send_ocsp_server_packets',`
13795 gen_require(`
13796 - type openvpn_server_packet_t;
13797 + type ocsp_server_packet_t;
13798 ')
13799
13800 - dontaudit $1 openvpn_server_packet_t:packet send;
13801 + dontaudit $1 ocsp_server_packet_t:packet send;
13802 ')
13803
13804 ########################################
13805 ## <summary>
13806 -## Receive openvpn_server packets.
13807 +## Receive ocsp_server packets.
13808 ## </summary>
13809 ## <param name="domain">
13810 ## <summary>
13811 @@ -60226,17 +61112,17 @@ interface(`corenet_dontaudit_send_openvpn_server_packets',`
13812 ## </param>
13813 ## <infoflow type="read" weight="10"/>
13814 #
13815 -interface(`corenet_receive_openvpn_server_packets',`
13816 +interface(`corenet_receive_ocsp_server_packets',`
13817 gen_require(`
13818 - type openvpn_server_packet_t;
13819 + type ocsp_server_packet_t;
13820 ')
13821
13822 - allow $1 openvpn_server_packet_t:packet recv;
13823 + allow $1 ocsp_server_packet_t:packet recv;
13824 ')
13825
13826 ########################################
13827 ## <summary>
13828 -## Do not audit attempts to receive openvpn_server packets.
13829 +## Do not audit attempts to receive ocsp_server packets.
13830 ## </summary>
13831 ## <param name="domain">
13832 ## <summary>
13833 @@ -60245,17 +61131,17 @@ interface(`corenet_receive_openvpn_server_packets',`
13834 ## </param>
13835 ## <infoflow type="none"/>
13836 #
13837 -interface(`corenet_dontaudit_receive_openvpn_server_packets',`
13838 +interface(`corenet_dontaudit_receive_ocsp_server_packets',`
13839 gen_require(`
13840 - type openvpn_server_packet_t;
13841 + type ocsp_server_packet_t;
13842 ')
13843
13844 - dontaudit $1 openvpn_server_packet_t:packet recv;
13845 + dontaudit $1 ocsp_server_packet_t:packet recv;
13846 ')
13847
13848 ########################################
13849 ## <summary>
13850 -## Send and receive openvpn_server packets.
13851 +## Send and receive ocsp_server packets.
13852 ## </summary>
13853 ## <param name="domain">
13854 ## <summary>
13855 @@ -60264,14 +61150,14 @@ interface(`corenet_dontaudit_receive_openvpn_server_packets',`
13856 ## </param>
13857 ## <infoflow type="both" weight="10"/>
13858 #
13859 -interface(`corenet_sendrecv_openvpn_server_packets',`
13860 - corenet_send_openvpn_server_packets($1)
13861 - corenet_receive_openvpn_server_packets($1)
13862 +interface(`corenet_sendrecv_ocsp_server_packets',`
13863 + corenet_send_ocsp_server_packets($1)
13864 + corenet_receive_ocsp_server_packets($1)
13865 ')
13866
13867 ########################################
13868 ## <summary>
13869 -## Do not audit attempts to send and receive openvpn_server packets.
13870 +## Do not audit attempts to send and receive ocsp_server packets.
13871 ## </summary>
13872 ## <param name="domain">
13873 ## <summary>
13874 @@ -60280,14 +61166,14 @@ interface(`corenet_sendrecv_openvpn_server_packets',`
13875 ## </param>
13876 ## <infoflow type="none"/>
13877 #
13878 -interface(`corenet_dontaudit_sendrecv_openvpn_server_packets',`
13879 - corenet_dontaudit_send_openvpn_server_packets($1)
13880 - corenet_dontaudit_receive_openvpn_server_packets($1)
13881 +interface(`corenet_dontaudit_sendrecv_ocsp_server_packets',`
13882 + corenet_dontaudit_send_ocsp_server_packets($1)
13883 + corenet_dontaudit_receive_ocsp_server_packets($1)
13884 ')
13885
13886 ########################################
13887 ## <summary>
13888 -## Relabel packets to openvpn_server the packet type.
13889 +## Relabel packets to ocsp_server the packet type.
13890 ## </summary>
13891 ## <param name="domain">
13892 ## <summary>
13893 @@ -60295,12 +61181,12 @@ interface(`corenet_dontaudit_sendrecv_openvpn_server_packets',`
13894 ## </summary>
13895 ## </param>
13896 #
13897 -interface(`corenet_relabelto_openvpn_server_packets',`
13898 +interface(`corenet_relabelto_ocsp_server_packets',`
13899 gen_require(`
13900 - type openvpn_server_packet_t;
13901 + type ocsp_server_packet_t;
13902 ')
13903
13904 - allow $1 openvpn_server_packet_t:packet relabelto;
13905 + allow $1 ocsp_server_packet_t:packet relabelto;
13906 ')
13907
13908
13909 @@ -60308,7 +61194,7 @@ interface(`corenet_relabelto_openvpn_server_packets',`
13910
13911 ########################################
13912 ## <summary>
13913 -## Send and receive TCP traffic on the pdps port.
13914 +## Send and receive TCP traffic on the openhpid port.
13915 ## </summary>
13916 ## <param name="domain">
13917 ## <summary>
13918 @@ -60317,17 +61203,17 @@ interface(`corenet_relabelto_openvpn_server_packets',`
13919 ## </param>
13920 ## <infoflow type="both" weight="10"/>
13921 #
13922 -interface(`corenet_tcp_sendrecv_pdps_port',`
13923 +interface(`corenet_tcp_sendrecv_openhpid_port',`
13924 gen_require(`
13925 - type pdps_port_t;
13926 + type openhpid_port_t;
13927 ')
13928
13929 - allow $1 pdps_port_t:tcp_socket { send_msg recv_msg };
13930 + allow $1 openhpid_port_t:tcp_socket { send_msg recv_msg };
13931 ')
13932
13933 ########################################
13934 ## <summary>
13935 -## Send UDP traffic on the pdps port.
13936 +## Send UDP traffic on the openhpid port.
13937 ## </summary>
13938 ## <param name="domain">
13939 ## <summary>
13940 @@ -60336,17 +61222,17 @@ interface(`corenet_tcp_sendrecv_pdps_port',`
13941 ## </param>
13942 ## <infoflow type="write" weight="10"/>
13943 #
13944 -interface(`corenet_udp_send_pdps_port',`
13945 +interface(`corenet_udp_send_openhpid_port',`
13946 gen_require(`
13947 - type pdps_port_t;
13948 + type openhpid_port_t;
13949 ')
13950
13951 - allow $1 pdps_port_t:udp_socket send_msg;
13952 + allow $1 openhpid_port_t:udp_socket send_msg;
13953 ')
13954
13955 ########################################
13956 ## <summary>
13957 -## Do not audit attempts to send UDP traffic on the pdps port.
13958 +## Do not audit attempts to send UDP traffic on the openhpid port.
13959 ## </summary>
13960 ## <param name="domain">
13961 ## <summary>
13962 @@ -60355,17 +61241,17 @@ interface(`corenet_udp_send_pdps_port',`
13963 ## </param>
13964 ## <infoflow type="none"/>
13965 #
13966 -interface(`corenet_dontaudit_udp_send_pdps_port',`
13967 +interface(`corenet_dontaudit_udp_send_openhpid_port',`
13968 gen_require(`
13969 - type pdps_port_t;
13970 + type openhpid_port_t;
13971 ')
13972
13973 - dontaudit $1 pdps_port_t:udp_socket send_msg;
13974 + dontaudit $1 openhpid_port_t:udp_socket send_msg;
13975 ')
13976
13977 ########################################
13978 ## <summary>
13979 -## Receive UDP traffic on the pdps port.
13980 +## Receive UDP traffic on the openhpid port.
13981 ## </summary>
13982 ## <param name="domain">
13983 ## <summary>
13984 @@ -60374,17 +61260,17 @@ interface(`corenet_dontaudit_udp_send_pdps_port',`
13985 ## </param>
13986 ## <infoflow type="read" weight="10"/>
13987 #
13988 -interface(`corenet_udp_receive_pdps_port',`
13989 +interface(`corenet_udp_receive_openhpid_port',`
13990 gen_require(`
13991 - type pdps_port_t;
13992 + type openhpid_port_t;
13993 ')
13994
13995 - allow $1 pdps_port_t:udp_socket recv_msg;
13996 + allow $1 openhpid_port_t:udp_socket recv_msg;
13997 ')
13998
13999 ########################################
14000 ## <summary>
14001 -## Do not audit attempts to receive UDP traffic on the pdps port.
14002 +## Do not audit attempts to receive UDP traffic on the openhpid port.
14003 ## </summary>
14004 ## <param name="domain">
14005 ## <summary>
14006 @@ -60393,17 +61279,17 @@ interface(`corenet_udp_receive_pdps_port',`
14007 ## </param>
14008 ## <infoflow type="none"/>
14009 #
14010 -interface(`corenet_dontaudit_udp_receive_pdps_port',`
14011 +interface(`corenet_dontaudit_udp_receive_openhpid_port',`
14012 gen_require(`
14013 - type pdps_port_t;
14014 + type openhpid_port_t;
14015 ')
14016
14017 - dontaudit $1 pdps_port_t:udp_socket recv_msg;
14018 + dontaudit $1 openhpid_port_t:udp_socket recv_msg;
14019 ')
14020
14021 ########################################
14022 ## <summary>
14023 -## Send and receive UDP traffic on the pdps port.
14024 +## Send and receive UDP traffic on the openhpid port.
14025 ## </summary>
14026 ## <param name="domain">
14027 ## <summary>
14028 @@ -60412,15 +61298,15 @@ interface(`corenet_dontaudit_udp_receive_pdps_port',`
14029 ## </param>
14030 ## <infoflow type="both" weight="10"/>
14031 #
14032 -interface(`corenet_udp_sendrecv_pdps_port',`
14033 - corenet_udp_send_pdps_port($1)
14034 - corenet_udp_receive_pdps_port($1)
14035 +interface(`corenet_udp_sendrecv_openhpid_port',`
14036 + corenet_udp_send_openhpid_port($1)
14037 + corenet_udp_receive_openhpid_port($1)
14038 ')
14039
14040 ########################################
14041 ## <summary>
14042 ## Do not audit attempts to send and receive
14043 -## UDP traffic on the pdps port.
14044 +## UDP traffic on the openhpid port.
14045 ## </summary>
14046 ## <param name="domain">
14047 ## <summary>
14048 @@ -60429,14 +61315,14 @@ interface(`corenet_udp_sendrecv_pdps_port',`
14049 ## </param>
14050 ## <infoflow type="none"/>
14051 #
14052 -interface(`corenet_dontaudit_udp_sendrecv_pdps_port',`
14053 - corenet_dontaudit_udp_send_pdps_port($1)
14054 - corenet_dontaudit_udp_receive_pdps_port($1)
14055 +interface(`corenet_dontaudit_udp_sendrecv_openhpid_port',`
14056 + corenet_dontaudit_udp_send_openhpid_port($1)
14057 + corenet_dontaudit_udp_receive_openhpid_port($1)
14058 ')
14059
14060 ########################################
14061 ## <summary>
14062 -## Bind TCP sockets to the pdps port.
14063 +## Bind TCP sockets to the openhpid port.
14064 ## </summary>
14065 ## <param name="domain">
14066 ## <summary>
14067 @@ -60445,18 +61331,18 @@ interface(`corenet_dontaudit_udp_sendrecv_pdps_port',`
14068 ## </param>
14069 ## <infoflow type="none"/>
14070 #
14071 -interface(`corenet_tcp_bind_pdps_port',`
14072 +interface(`corenet_tcp_bind_openhpid_port',`
14073 gen_require(`
14074 - type pdps_port_t;
14075 + type openhpid_port_t;
14076 ')
14077
14078 - allow $1 pdps_port_t:tcp_socket name_bind;
14079 + allow $1 openhpid_port_t:tcp_socket name_bind;
14080
14081 ')
14082
14083 ########################################
14084 ## <summary>
14085 -## Bind UDP sockets to the pdps port.
14086 +## Bind UDP sockets to the openhpid port.
14087 ## </summary>
14088 ## <param name="domain">
14089 ## <summary>
14090 @@ -60465,18 +61351,18 @@ interface(`corenet_tcp_bind_pdps_port',`
14091 ## </param>
14092 ## <infoflow type="none"/>
14093 #
14094 -interface(`corenet_udp_bind_pdps_port',`
14095 +interface(`corenet_udp_bind_openhpid_port',`
14096 gen_require(`
14097 - type pdps_port_t;
14098 + type openhpid_port_t;
14099 ')
14100
14101 - allow $1 pdps_port_t:udp_socket name_bind;
14102 + allow $1 openhpid_port_t:udp_socket name_bind;
14103
14104 ')
14105
14106 ########################################
14107 ## <summary>
14108 -## Make a TCP connection to the pdps port.
14109 +## Make a TCP connection to the openhpid port.
14110 ## </summary>
14111 ## <param name="domain">
14112 ## <summary>
14113 @@ -60484,18 +61370,18 @@ interface(`corenet_udp_bind_pdps_port',`
14114 ## </summary>
14115 ## </param>
14116 #
14117 -interface(`corenet_tcp_connect_pdps_port',`
14118 +interface(`corenet_tcp_connect_openhpid_port',`
14119 gen_require(`
14120 - type pdps_port_t;
14121 + type openhpid_port_t;
14122 ')
14123
14124 - allow $1 pdps_port_t:tcp_socket name_connect;
14125 + allow $1 openhpid_port_t:tcp_socket name_connect;
14126 ')
14127
14128
14129 ########################################
14130 ## <summary>
14131 -## Send pdps_client packets.
14132 +## Send openhpid_client packets.
14133 ## </summary>
14134 ## <param name="domain">
14135 ## <summary>
14136 @@ -60504,17 +61390,17 @@ interface(`corenet_tcp_connect_pdps_port',`
14137 ## </param>
14138 ## <infoflow type="write" weight="10"/>
14139 #
14140 -interface(`corenet_send_pdps_client_packets',`
14141 +interface(`corenet_send_openhpid_client_packets',`
14142 gen_require(`
14143 - type pdps_client_packet_t;
14144 + type openhpid_client_packet_t;
14145 ')
14146
14147 - allow $1 pdps_client_packet_t:packet send;
14148 + allow $1 openhpid_client_packet_t:packet send;
14149 ')
14150
14151 ########################################
14152 ## <summary>
14153 -## Do not audit attempts to send pdps_client packets.
14154 +## Do not audit attempts to send openhpid_client packets.
14155 ## </summary>
14156 ## <param name="domain">
14157 ## <summary>
14158 @@ -60523,17 +61409,17 @@ interface(`corenet_send_pdps_client_packets',`
14159 ## </param>
14160 ## <infoflow type="none"/>
14161 #
14162 -interface(`corenet_dontaudit_send_pdps_client_packets',`
14163 +interface(`corenet_dontaudit_send_openhpid_client_packets',`
14164 gen_require(`
14165 - type pdps_client_packet_t;
14166 + type openhpid_client_packet_t;
14167 ')
14168
14169 - dontaudit $1 pdps_client_packet_t:packet send;
14170 + dontaudit $1 openhpid_client_packet_t:packet send;
14171 ')
14172
14173 ########################################
14174 ## <summary>
14175 -## Receive pdps_client packets.
14176 +## Receive openhpid_client packets.
14177 ## </summary>
14178 ## <param name="domain">
14179 ## <summary>
14180 @@ -60542,17 +61428,17 @@ interface(`corenet_dontaudit_send_pdps_client_packets',`
14181 ## </param>
14182 ## <infoflow type="read" weight="10"/>
14183 #
14184 -interface(`corenet_receive_pdps_client_packets',`
14185 +interface(`corenet_receive_openhpid_client_packets',`
14186 gen_require(`
14187 - type pdps_client_packet_t;
14188 + type openhpid_client_packet_t;
14189 ')
14190
14191 - allow $1 pdps_client_packet_t:packet recv;
14192 + allow $1 openhpid_client_packet_t:packet recv;
14193 ')
14194
14195 ########################################
14196 ## <summary>
14197 -## Do not audit attempts to receive pdps_client packets.
14198 +## Do not audit attempts to receive openhpid_client packets.
14199 ## </summary>
14200 ## <param name="domain">
14201 ## <summary>
14202 @@ -60561,17 +61447,17 @@ interface(`corenet_receive_pdps_client_packets',`
14203 ## </param>
14204 ## <infoflow type="none"/>
14205 #
14206 -interface(`corenet_dontaudit_receive_pdps_client_packets',`
14207 +interface(`corenet_dontaudit_receive_openhpid_client_packets',`
14208 gen_require(`
14209 - type pdps_client_packet_t;
14210 + type openhpid_client_packet_t;
14211 ')
14212
14213 - dontaudit $1 pdps_client_packet_t:packet recv;
14214 + dontaudit $1 openhpid_client_packet_t:packet recv;
14215 ')
14216
14217 ########################################
14218 ## <summary>
14219 -## Send and receive pdps_client packets.
14220 +## Send and receive openhpid_client packets.
14221 ## </summary>
14222 ## <param name="domain">
14223 ## <summary>
14224 @@ -60580,14 +61466,14 @@ interface(`corenet_dontaudit_receive_pdps_client_packets',`
14225 ## </param>
14226 ## <infoflow type="both" weight="10"/>
14227 #
14228 -interface(`corenet_sendrecv_pdps_client_packets',`
14229 - corenet_send_pdps_client_packets($1)
14230 - corenet_receive_pdps_client_packets($1)
14231 +interface(`corenet_sendrecv_openhpid_client_packets',`
14232 + corenet_send_openhpid_client_packets($1)
14233 + corenet_receive_openhpid_client_packets($1)
14234 ')
14235
14236 ########################################
14237 ## <summary>
14238 -## Do not audit attempts to send and receive pdps_client packets.
14239 +## Do not audit attempts to send and receive openhpid_client packets.
14240 ## </summary>
14241 ## <param name="domain">
14242 ## <summary>
14243 @@ -60596,14 +61482,14 @@ interface(`corenet_sendrecv_pdps_client_packets',`
14244 ## </param>
14245 ## <infoflow type="none"/>
14246 #
14247 -interface(`corenet_dontaudit_sendrecv_pdps_client_packets',`
14248 - corenet_dontaudit_send_pdps_client_packets($1)
14249 - corenet_dontaudit_receive_pdps_client_packets($1)
14250 +interface(`corenet_dontaudit_sendrecv_openhpid_client_packets',`
14251 + corenet_dontaudit_send_openhpid_client_packets($1)
14252 + corenet_dontaudit_receive_openhpid_client_packets($1)
14253 ')
14254
14255 ########################################
14256 ## <summary>
14257 -## Relabel packets to pdps_client the packet type.
14258 +## Relabel packets to openhpid_client the packet type.
14259 ## </summary>
14260 ## <param name="domain">
14261 ## <summary>
14262 @@ -60611,18 +61497,18 @@ interface(`corenet_dontaudit_sendrecv_pdps_client_packets',`
14263 ## </summary>
14264 ## </param>
14265 #
14266 -interface(`corenet_relabelto_pdps_client_packets',`
14267 +interface(`corenet_relabelto_openhpid_client_packets',`
14268 gen_require(`
14269 - type pdps_client_packet_t;
14270 + type openhpid_client_packet_t;
14271 ')
14272
14273 - allow $1 pdps_client_packet_t:packet relabelto;
14274 + allow $1 openhpid_client_packet_t:packet relabelto;
14275 ')
14276
14277
14278 ########################################
14279 ## <summary>
14280 -## Send pdps_server packets.
14281 +## Send openhpid_server packets.
14282 ## </summary>
14283 ## <param name="domain">
14284 ## <summary>
14285 @@ -60631,17 +61517,17 @@ interface(`corenet_relabelto_pdps_client_packets',`
14286 ## </param>
14287 ## <infoflow type="write" weight="10"/>
14288 #
14289 -interface(`corenet_send_pdps_server_packets',`
14290 +interface(`corenet_send_openhpid_server_packets',`
14291 gen_require(`
14292 - type pdps_server_packet_t;
14293 + type openhpid_server_packet_t;
14294 ')
14295
14296 - allow $1 pdps_server_packet_t:packet send;
14297 + allow $1 openhpid_server_packet_t:packet send;
14298 ')
14299
14300 ########################################
14301 ## <summary>
14302 -## Do not audit attempts to send pdps_server packets.
14303 +## Do not audit attempts to send openhpid_server packets.
14304 ## </summary>
14305 ## <param name="domain">
14306 ## <summary>
14307 @@ -60650,17 +61536,17 @@ interface(`corenet_send_pdps_server_packets',`
14308 ## </param>
14309 ## <infoflow type="none"/>
14310 #
14311 -interface(`corenet_dontaudit_send_pdps_server_packets',`
14312 +interface(`corenet_dontaudit_send_openhpid_server_packets',`
14313 gen_require(`
14314 - type pdps_server_packet_t;
14315 + type openhpid_server_packet_t;
14316 ')
14317
14318 - dontaudit $1 pdps_server_packet_t:packet send;
14319 + dontaudit $1 openhpid_server_packet_t:packet send;
14320 ')
14321
14322 ########################################
14323 ## <summary>
14324 -## Receive pdps_server packets.
14325 +## Receive openhpid_server packets.
14326 ## </summary>
14327 ## <param name="domain">
14328 ## <summary>
14329 @@ -60669,17 +61555,17 @@ interface(`corenet_dontaudit_send_pdps_server_packets',`
14330 ## </param>
14331 ## <infoflow type="read" weight="10"/>
14332 #
14333 -interface(`corenet_receive_pdps_server_packets',`
14334 +interface(`corenet_receive_openhpid_server_packets',`
14335 gen_require(`
14336 - type pdps_server_packet_t;
14337 + type openhpid_server_packet_t;
14338 ')
14339
14340 - allow $1 pdps_server_packet_t:packet recv;
14341 + allow $1 openhpid_server_packet_t:packet recv;
14342 ')
14343
14344 ########################################
14345 ## <summary>
14346 -## Do not audit attempts to receive pdps_server packets.
14347 +## Do not audit attempts to receive openhpid_server packets.
14348 ## </summary>
14349 ## <param name="domain">
14350 ## <summary>
14351 @@ -60688,17 +61574,17 @@ interface(`corenet_receive_pdps_server_packets',`
14352 ## </param>
14353 ## <infoflow type="none"/>
14354 #
14355 -interface(`corenet_dontaudit_receive_pdps_server_packets',`
14356 +interface(`corenet_dontaudit_receive_openhpid_server_packets',`
14357 gen_require(`
14358 - type pdps_server_packet_t;
14359 + type openhpid_server_packet_t;
14360 ')
14361
14362 - dontaudit $1 pdps_server_packet_t:packet recv;
14363 + dontaudit $1 openhpid_server_packet_t:packet recv;
14364 ')
14365
14366 ########################################
14367 ## <summary>
14368 -## Send and receive pdps_server packets.
14369 +## Send and receive openhpid_server packets.
14370 ## </summary>
14371 ## <param name="domain">
14372 ## <summary>
14373 @@ -60707,14 +61593,14 @@ interface(`corenet_dontaudit_receive_pdps_server_packets',`
14374 ## </param>
14375 ## <infoflow type="both" weight="10"/>
14376 #
14377 -interface(`corenet_sendrecv_pdps_server_packets',`
14378 - corenet_send_pdps_server_packets($1)
14379 - corenet_receive_pdps_server_packets($1)
14380 +interface(`corenet_sendrecv_openhpid_server_packets',`
14381 + corenet_send_openhpid_server_packets($1)
14382 + corenet_receive_openhpid_server_packets($1)
14383 ')
14384
14385 ########################################
14386 ## <summary>
14387 -## Do not audit attempts to send and receive pdps_server packets.
14388 +## Do not audit attempts to send and receive openhpid_server packets.
14389 ## </summary>
14390 ## <param name="domain">
14391 ## <summary>
14392 @@ -60723,14 +61609,14 @@ interface(`corenet_sendrecv_pdps_server_packets',`
14393 ## </param>
14394 ## <infoflow type="none"/>
14395 #
14396 -interface(`corenet_dontaudit_sendrecv_pdps_server_packets',`
14397 - corenet_dontaudit_send_pdps_server_packets($1)
14398 - corenet_dontaudit_receive_pdps_server_packets($1)
14399 +interface(`corenet_dontaudit_sendrecv_openhpid_server_packets',`
14400 + corenet_dontaudit_send_openhpid_server_packets($1)
14401 + corenet_dontaudit_receive_openhpid_server_packets($1)
14402 ')
14403
14404 ########################################
14405 ## <summary>
14406 -## Relabel packets to pdps_server the packet type.
14407 +## Relabel packets to openhpid_server the packet type.
14408 ## </summary>
14409 ## <param name="domain">
14410 ## <summary>
14411 @@ -60738,12 +61624,12 @@ interface(`corenet_dontaudit_sendrecv_pdps_server_packets',`
14412 ## </summary>
14413 ## </param>
14414 #
14415 -interface(`corenet_relabelto_pdps_server_packets',`
14416 +interface(`corenet_relabelto_openhpid_server_packets',`
14417 gen_require(`
14418 - type pdps_server_packet_t;
14419 + type openhpid_server_packet_t;
14420 ')
14421
14422 - allow $1 pdps_server_packet_t:packet relabelto;
14423 + allow $1 openhpid_server_packet_t:packet relabelto;
14424 ')
14425
14426
14427 @@ -60751,7 +61637,7 @@ interface(`corenet_relabelto_pdps_server_packets',`
14428
14429 ########################################
14430 ## <summary>
14431 -## Send and receive TCP traffic on the pegasus_http port.
14432 +## Send and receive TCP traffic on the openvpn port.
14433 ## </summary>
14434 ## <param name="domain">
14435 ## <summary>
14436 @@ -60760,17 +61646,17 @@ interface(`corenet_relabelto_pdps_server_packets',`
14437 ## </param>
14438 ## <infoflow type="both" weight="10"/>
14439 #
14440 -interface(`corenet_tcp_sendrecv_pegasus_http_port',`
14441 +interface(`corenet_tcp_sendrecv_openvpn_port',`
14442 gen_require(`
14443 - type pegasus_http_port_t;
14444 + type openvpn_port_t;
14445 ')
14446
14447 - allow $1 pegasus_http_port_t:tcp_socket { send_msg recv_msg };
14448 + allow $1 openvpn_port_t:tcp_socket { send_msg recv_msg };
14449 ')
14450
14451 ########################################
14452 ## <summary>
14453 -## Send UDP traffic on the pegasus_http port.
14454 +## Send UDP traffic on the openvpn port.
14455 ## </summary>
14456 ## <param name="domain">
14457 ## <summary>
14458 @@ -60779,17 +61665,17 @@ interface(`corenet_tcp_sendrecv_pegasus_http_port',`
14459 ## </param>
14460 ## <infoflow type="write" weight="10"/>
14461 #
14462 -interface(`corenet_udp_send_pegasus_http_port',`
14463 +interface(`corenet_udp_send_openvpn_port',`
14464 gen_require(`
14465 - type pegasus_http_port_t;
14466 + type openvpn_port_t;
14467 ')
14468
14469 - allow $1 pegasus_http_port_t:udp_socket send_msg;
14470 + allow $1 openvpn_port_t:udp_socket send_msg;
14471 ')
14472
14473 ########################################
14474 ## <summary>
14475 -## Do not audit attempts to send UDP traffic on the pegasus_http port.
14476 +## Do not audit attempts to send UDP traffic on the openvpn port.
14477 ## </summary>
14478 ## <param name="domain">
14479 ## <summary>
14480 @@ -60798,17 +61684,17 @@ interface(`corenet_udp_send_pegasus_http_port',`
14481 ## </param>
14482 ## <infoflow type="none"/>
14483 #
14484 -interface(`corenet_dontaudit_udp_send_pegasus_http_port',`
14485 +interface(`corenet_dontaudit_udp_send_openvpn_port',`
14486 gen_require(`
14487 - type pegasus_http_port_t;
14488 + type openvpn_port_t;
14489 ')
14490
14491 - dontaudit $1 pegasus_http_port_t:udp_socket send_msg;
14492 + dontaudit $1 openvpn_port_t:udp_socket send_msg;
14493 ')
14494
14495 ########################################
14496 ## <summary>
14497 -## Receive UDP traffic on the pegasus_http port.
14498 +## Receive UDP traffic on the openvpn port.
14499 ## </summary>
14500 ## <param name="domain">
14501 ## <summary>
14502 @@ -60817,17 +61703,17 @@ interface(`corenet_dontaudit_udp_send_pegasus_http_port',`
14503 ## </param>
14504 ## <infoflow type="read" weight="10"/>
14505 #
14506 -interface(`corenet_udp_receive_pegasus_http_port',`
14507 +interface(`corenet_udp_receive_openvpn_port',`
14508 gen_require(`
14509 - type pegasus_http_port_t;
14510 + type openvpn_port_t;
14511 ')
14512
14513 - allow $1 pegasus_http_port_t:udp_socket recv_msg;
14514 + allow $1 openvpn_port_t:udp_socket recv_msg;
14515 ')
14516
14517 ########################################
14518 ## <summary>
14519 -## Do not audit attempts to receive UDP traffic on the pegasus_http port.
14520 +## Do not audit attempts to receive UDP traffic on the openvpn port.
14521 ## </summary>
14522 ## <param name="domain">
14523 ## <summary>
14524 @@ -60836,17 +61722,17 @@ interface(`corenet_udp_receive_pegasus_http_port',`
14525 ## </param>
14526 ## <infoflow type="none"/>
14527 #
14528 -interface(`corenet_dontaudit_udp_receive_pegasus_http_port',`
14529 +interface(`corenet_dontaudit_udp_receive_openvpn_port',`
14530 gen_require(`
14531 - type pegasus_http_port_t;
14532 + type openvpn_port_t;
14533 ')
14534
14535 - dontaudit $1 pegasus_http_port_t:udp_socket recv_msg;
14536 + dontaudit $1 openvpn_port_t:udp_socket recv_msg;
14537 ')
14538
14539 ########################################
14540 ## <summary>
14541 -## Send and receive UDP traffic on the pegasus_http port.
14542 +## Send and receive UDP traffic on the openvpn port.
14543 ## </summary>
14544 ## <param name="domain">
14545 ## <summary>
14546 @@ -60855,15 +61741,15 @@ interface(`corenet_dontaudit_udp_receive_pegasus_http_port',`
14547 ## </param>
14548 ## <infoflow type="both" weight="10"/>
14549 #
14550 -interface(`corenet_udp_sendrecv_pegasus_http_port',`
14551 - corenet_udp_send_pegasus_http_port($1)
14552 - corenet_udp_receive_pegasus_http_port($1)
14553 +interface(`corenet_udp_sendrecv_openvpn_port',`
14554 + corenet_udp_send_openvpn_port($1)
14555 + corenet_udp_receive_openvpn_port($1)
14556 ')
14557
14558 ########################################
14559 ## <summary>
14560 ## Do not audit attempts to send and receive
14561 -## UDP traffic on the pegasus_http port.
14562 +## UDP traffic on the openvpn port.
14563 ## </summary>
14564 ## <param name="domain">
14565 ## <summary>
14566 @@ -60872,14 +61758,14 @@ interface(`corenet_udp_sendrecv_pegasus_http_port',`
14567 ## </param>
14568 ## <infoflow type="none"/>
14569 #
14570 -interface(`corenet_dontaudit_udp_sendrecv_pegasus_http_port',`
14571 - corenet_dontaudit_udp_send_pegasus_http_port($1)
14572 - corenet_dontaudit_udp_receive_pegasus_http_port($1)
14573 +interface(`corenet_dontaudit_udp_sendrecv_openvpn_port',`
14574 + corenet_dontaudit_udp_send_openvpn_port($1)
14575 + corenet_dontaudit_udp_receive_openvpn_port($1)
14576 ')
14577
14578 ########################################
14579 ## <summary>
14580 -## Bind TCP sockets to the pegasus_http port.
14581 +## Bind TCP sockets to the openvpn port.
14582 ## </summary>
14583 ## <param name="domain">
14584 ## <summary>
14585 @@ -60888,18 +61774,18 @@ interface(`corenet_dontaudit_udp_sendrecv_pegasus_http_port',`
14586 ## </param>
14587 ## <infoflow type="none"/>
14588 #
14589 -interface(`corenet_tcp_bind_pegasus_http_port',`
14590 +interface(`corenet_tcp_bind_openvpn_port',`
14591 gen_require(`
14592 - type pegasus_http_port_t;
14593 + type openvpn_port_t;
14594 ')
14595
14596 - allow $1 pegasus_http_port_t:tcp_socket name_bind;
14597 + allow $1 openvpn_port_t:tcp_socket name_bind;
14598
14599 ')
14600
14601 ########################################
14602 ## <summary>
14603 -## Bind UDP sockets to the pegasus_http port.
14604 +## Bind UDP sockets to the openvpn port.
14605 ## </summary>
14606 ## <param name="domain">
14607 ## <summary>
14608 @@ -60908,18 +61794,18 @@ interface(`corenet_tcp_bind_pegasus_http_port',`
14609 ## </param>
14610 ## <infoflow type="none"/>
14611 #
14612 -interface(`corenet_udp_bind_pegasus_http_port',`
14613 +interface(`corenet_udp_bind_openvpn_port',`
14614 gen_require(`
14615 - type pegasus_http_port_t;
14616 + type openvpn_port_t;
14617 ')
14618
14619 - allow $1 pegasus_http_port_t:udp_socket name_bind;
14620 + allow $1 openvpn_port_t:udp_socket name_bind;
14621
14622 ')
14623
14624 ########################################
14625 ## <summary>
14626 -## Make a TCP connection to the pegasus_http port.
14627 +## Make a TCP connection to the openvpn port.
14628 ## </summary>
14629 ## <param name="domain">
14630 ## <summary>
14631 @@ -60927,18 +61813,18 @@ interface(`corenet_udp_bind_pegasus_http_port',`
14632 ## </summary>
14633 ## </param>
14634 #
14635 -interface(`corenet_tcp_connect_pegasus_http_port',`
14636 +interface(`corenet_tcp_connect_openvpn_port',`
14637 gen_require(`
14638 - type pegasus_http_port_t;
14639 + type openvpn_port_t;
14640 ')
14641
14642 - allow $1 pegasus_http_port_t:tcp_socket name_connect;
14643 + allow $1 openvpn_port_t:tcp_socket name_connect;
14644 ')
14645
14646
14647 ########################################
14648 ## <summary>
14649 -## Send pegasus_http_client packets.
14650 +## Send openvpn_client packets.
14651 ## </summary>
14652 ## <param name="domain">
14653 ## <summary>
14654 @@ -60947,17 +61833,17 @@ interface(`corenet_tcp_connect_pegasus_http_port',`
14655 ## </param>
14656 ## <infoflow type="write" weight="10"/>
14657 #
14658 -interface(`corenet_send_pegasus_http_client_packets',`
14659 +interface(`corenet_send_openvpn_client_packets',`
14660 gen_require(`
14661 - type pegasus_http_client_packet_t;
14662 + type openvpn_client_packet_t;
14663 ')
14664
14665 - allow $1 pegasus_http_client_packet_t:packet send;
14666 + allow $1 openvpn_client_packet_t:packet send;
14667 ')
14668
14669 ########################################
14670 ## <summary>
14671 -## Do not audit attempts to send pegasus_http_client packets.
14672 +## Do not audit attempts to send openvpn_client packets.
14673 ## </summary>
14674 ## <param name="domain">
14675 ## <summary>
14676 @@ -60966,17 +61852,17 @@ interface(`corenet_send_pegasus_http_client_packets',`
14677 ## </param>
14678 ## <infoflow type="none"/>
14679 #
14680 -interface(`corenet_dontaudit_send_pegasus_http_client_packets',`
14681 +interface(`corenet_dontaudit_send_openvpn_client_packets',`
14682 gen_require(`
14683 - type pegasus_http_client_packet_t;
14684 + type openvpn_client_packet_t;
14685 ')
14686
14687 - dontaudit $1 pegasus_http_client_packet_t:packet send;
14688 + dontaudit $1 openvpn_client_packet_t:packet send;
14689 ')
14690
14691 ########################################
14692 ## <summary>
14693 -## Receive pegasus_http_client packets.
14694 +## Receive openvpn_client packets.
14695 ## </summary>
14696 ## <param name="domain">
14697 ## <summary>
14698 @@ -60985,17 +61871,17 @@ interface(`corenet_dontaudit_send_pegasus_http_client_packets',`
14699 ## </param>
14700 ## <infoflow type="read" weight="10"/>
14701 #
14702 -interface(`corenet_receive_pegasus_http_client_packets',`
14703 +interface(`corenet_receive_openvpn_client_packets',`
14704 gen_require(`
14705 - type pegasus_http_client_packet_t;
14706 + type openvpn_client_packet_t;
14707 ')
14708
14709 - allow $1 pegasus_http_client_packet_t:packet recv;
14710 + allow $1 openvpn_client_packet_t:packet recv;
14711 ')
14712
14713 ########################################
14714 ## <summary>
14715 -## Do not audit attempts to receive pegasus_http_client packets.
14716 +## Do not audit attempts to receive openvpn_client packets.
14717 ## </summary>
14718 ## <param name="domain">
14719 ## <summary>
14720 @@ -61004,17 +61890,17 @@ interface(`corenet_receive_pegasus_http_client_packets',`
14721 ## </param>
14722 ## <infoflow type="none"/>
14723 #
14724 -interface(`corenet_dontaudit_receive_pegasus_http_client_packets',`
14725 +interface(`corenet_dontaudit_receive_openvpn_client_packets',`
14726 gen_require(`
14727 - type pegasus_http_client_packet_t;
14728 + type openvpn_client_packet_t;
14729 ')
14730
14731 - dontaudit $1 pegasus_http_client_packet_t:packet recv;
14732 + dontaudit $1 openvpn_client_packet_t:packet recv;
14733 ')
14734
14735 ########################################
14736 ## <summary>
14737 -## Send and receive pegasus_http_client packets.
14738 +## Send and receive openvpn_client packets.
14739 ## </summary>
14740 ## <param name="domain">
14741 ## <summary>
14742 @@ -61023,14 +61909,14 @@ interface(`corenet_dontaudit_receive_pegasus_http_client_packets',`
14743 ## </param>
14744 ## <infoflow type="both" weight="10"/>
14745 #
14746 -interface(`corenet_sendrecv_pegasus_http_client_packets',`
14747 - corenet_send_pegasus_http_client_packets($1)
14748 - corenet_receive_pegasus_http_client_packets($1)
14749 +interface(`corenet_sendrecv_openvpn_client_packets',`
14750 + corenet_send_openvpn_client_packets($1)
14751 + corenet_receive_openvpn_client_packets($1)
14752 ')
14753
14754 ########################################
14755 ## <summary>
14756 -## Do not audit attempts to send and receive pegasus_http_client packets.
14757 +## Do not audit attempts to send and receive openvpn_client packets.
14758 ## </summary>
14759 ## <param name="domain">
14760 ## <summary>
14761 @@ -61039,14 +61925,14 @@ interface(`corenet_sendrecv_pegasus_http_client_packets',`
14762 ## </param>
14763 ## <infoflow type="none"/>
14764 #
14765 -interface(`corenet_dontaudit_sendrecv_pegasus_http_client_packets',`
14766 - corenet_dontaudit_send_pegasus_http_client_packets($1)
14767 - corenet_dontaudit_receive_pegasus_http_client_packets($1)
14768 +interface(`corenet_dontaudit_sendrecv_openvpn_client_packets',`
14769 + corenet_dontaudit_send_openvpn_client_packets($1)
14770 + corenet_dontaudit_receive_openvpn_client_packets($1)
14771 ')
14772
14773 ########################################
14774 ## <summary>
14775 -## Relabel packets to pegasus_http_client the packet type.
14776 +## Relabel packets to openvpn_client the packet type.
14777 ## </summary>
14778 ## <param name="domain">
14779 ## <summary>
14780 @@ -61054,18 +61940,18 @@ interface(`corenet_dontaudit_sendrecv_pegasus_http_client_packets',`
14781 ## </summary>
14782 ## </param>
14783 #
14784 -interface(`corenet_relabelto_pegasus_http_client_packets',`
14785 +interface(`corenet_relabelto_openvpn_client_packets',`
14786 gen_require(`
14787 - type pegasus_http_client_packet_t;
14788 + type openvpn_client_packet_t;
14789 ')
14790
14791 - allow $1 pegasus_http_client_packet_t:packet relabelto;
14792 + allow $1 openvpn_client_packet_t:packet relabelto;
14793 ')
14794
14795
14796 ########################################
14797 ## <summary>
14798 -## Send pegasus_http_server packets.
14799 +## Send openvpn_server packets.
14800 ## </summary>
14801 ## <param name="domain">
14802 ## <summary>
14803 @@ -61074,17 +61960,17 @@ interface(`corenet_relabelto_pegasus_http_client_packets',`
14804 ## </param>
14805 ## <infoflow type="write" weight="10"/>
14806 #
14807 -interface(`corenet_send_pegasus_http_server_packets',`
14808 +interface(`corenet_send_openvpn_server_packets',`
14809 gen_require(`
14810 - type pegasus_http_server_packet_t;
14811 + type openvpn_server_packet_t;
14812 ')
14813
14814 - allow $1 pegasus_http_server_packet_t:packet send;
14815 + allow $1 openvpn_server_packet_t:packet send;
14816 ')
14817
14818 ########################################
14819 ## <summary>
14820 -## Do not audit attempts to send pegasus_http_server packets.
14821 +## Do not audit attempts to send openvpn_server packets.
14822 ## </summary>
14823 ## <param name="domain">
14824 ## <summary>
14825 @@ -61093,17 +61979,17 @@ interface(`corenet_send_pegasus_http_server_packets',`
14826 ## </param>
14827 ## <infoflow type="none"/>
14828 #
14829 -interface(`corenet_dontaudit_send_pegasus_http_server_packets',`
14830 +interface(`corenet_dontaudit_send_openvpn_server_packets',`
14831 gen_require(`
14832 - type pegasus_http_server_packet_t;
14833 + type openvpn_server_packet_t;
14834 ')
14835
14836 - dontaudit $1 pegasus_http_server_packet_t:packet send;
14837 + dontaudit $1 openvpn_server_packet_t:packet send;
14838 ')
14839
14840 ########################################
14841 ## <summary>
14842 -## Receive pegasus_http_server packets.
14843 +## Receive openvpn_server packets.
14844 ## </summary>
14845 ## <param name="domain">
14846 ## <summary>
14847 @@ -61112,17 +61998,17 @@ interface(`corenet_dontaudit_send_pegasus_http_server_packets',`
14848 ## </param>
14849 ## <infoflow type="read" weight="10"/>
14850 #
14851 -interface(`corenet_receive_pegasus_http_server_packets',`
14852 +interface(`corenet_receive_openvpn_server_packets',`
14853 gen_require(`
14854 - type pegasus_http_server_packet_t;
14855 + type openvpn_server_packet_t;
14856 ')
14857
14858 - allow $1 pegasus_http_server_packet_t:packet recv;
14859 + allow $1 openvpn_server_packet_t:packet recv;
14860 ')
14861
14862 ########################################
14863 ## <summary>
14864 -## Do not audit attempts to receive pegasus_http_server packets.
14865 +## Do not audit attempts to receive openvpn_server packets.
14866 ## </summary>
14867 ## <param name="domain">
14868 ## <summary>
14869 @@ -61131,17 +62017,17 @@ interface(`corenet_receive_pegasus_http_server_packets',`
14870 ## </param>
14871 ## <infoflow type="none"/>
14872 #
14873 -interface(`corenet_dontaudit_receive_pegasus_http_server_packets',`
14874 +interface(`corenet_dontaudit_receive_openvpn_server_packets',`
14875 gen_require(`
14876 - type pegasus_http_server_packet_t;
14877 + type openvpn_server_packet_t;
14878 ')
14879
14880 - dontaudit $1 pegasus_http_server_packet_t:packet recv;
14881 + dontaudit $1 openvpn_server_packet_t:packet recv;
14882 ')
14883
14884 ########################################
14885 ## <summary>
14886 -## Send and receive pegasus_http_server packets.
14887 +## Send and receive openvpn_server packets.
14888 ## </summary>
14889 ## <param name="domain">
14890 ## <summary>
14891 @@ -61150,14 +62036,14 @@ interface(`corenet_dontaudit_receive_pegasus_http_server_packets',`
14892 ## </param>
14893 ## <infoflow type="both" weight="10"/>
14894 #
14895 -interface(`corenet_sendrecv_pegasus_http_server_packets',`
14896 - corenet_send_pegasus_http_server_packets($1)
14897 - corenet_receive_pegasus_http_server_packets($1)
14898 +interface(`corenet_sendrecv_openvpn_server_packets',`
14899 + corenet_send_openvpn_server_packets($1)
14900 + corenet_receive_openvpn_server_packets($1)
14901 ')
14902
14903 ########################################
14904 ## <summary>
14905 -## Do not audit attempts to send and receive pegasus_http_server packets.
14906 +## Do not audit attempts to send and receive openvpn_server packets.
14907 ## </summary>
14908 ## <param name="domain">
14909 ## <summary>
14910 @@ -61166,14 +62052,14 @@ interface(`corenet_sendrecv_pegasus_http_server_packets',`
14911 ## </param>
14912 ## <infoflow type="none"/>
14913 #
14914 -interface(`corenet_dontaudit_sendrecv_pegasus_http_server_packets',`
14915 - corenet_dontaudit_send_pegasus_http_server_packets($1)
14916 - corenet_dontaudit_receive_pegasus_http_server_packets($1)
14917 +interface(`corenet_dontaudit_sendrecv_openvpn_server_packets',`
14918 + corenet_dontaudit_send_openvpn_server_packets($1)
14919 + corenet_dontaudit_receive_openvpn_server_packets($1)
14920 ')
14921
14922 ########################################
14923 ## <summary>
14924 -## Relabel packets to pegasus_http_server the packet type.
14925 +## Relabel packets to openvpn_server the packet type.
14926 ## </summary>
14927 ## <param name="domain">
14928 ## <summary>
14929 @@ -61181,12 +62067,12 @@ interface(`corenet_dontaudit_sendrecv_pegasus_http_server_packets',`
14930 ## </summary>
14931 ## </param>
14932 #
14933 -interface(`corenet_relabelto_pegasus_http_server_packets',`
14934 +interface(`corenet_relabelto_openvpn_server_packets',`
14935 gen_require(`
14936 - type pegasus_http_server_packet_t;
14937 + type openvpn_server_packet_t;
14938 ')
14939
14940 - allow $1 pegasus_http_server_packet_t:packet relabelto;
14941 + allow $1 openvpn_server_packet_t:packet relabelto;
14942 ')
14943
14944
14945 @@ -61194,7 +62080,7 @@ interface(`corenet_relabelto_pegasus_http_server_packets',`
14946
14947 ########################################
14948 ## <summary>
14949 -## Send and receive TCP traffic on the pegasus_https port.
14950 +## Send and receive TCP traffic on the pdps port.
14951 ## </summary>
14952 ## <param name="domain">
14953 ## <summary>
14954 @@ -61203,17 +62089,17 @@ interface(`corenet_relabelto_pegasus_http_server_packets',`
14955 ## </param>
14956 ## <infoflow type="both" weight="10"/>
14957 #
14958 -interface(`corenet_tcp_sendrecv_pegasus_https_port',`
14959 +interface(`corenet_tcp_sendrecv_pdps_port',`
14960 gen_require(`
14961 - type pegasus_https_port_t;
14962 + type pdps_port_t;
14963 ')
14964
14965 - allow $1 pegasus_https_port_t:tcp_socket { send_msg recv_msg };
14966 + allow $1 pdps_port_t:tcp_socket { send_msg recv_msg };
14967 ')
14968
14969 ########################################
14970 ## <summary>
14971 -## Send UDP traffic on the pegasus_https port.
14972 +## Send UDP traffic on the pdps port.
14973 ## </summary>
14974 ## <param name="domain">
14975 ## <summary>
14976 @@ -61222,17 +62108,17 @@ interface(`corenet_tcp_sendrecv_pegasus_https_port',`
14977 ## </param>
14978 ## <infoflow type="write" weight="10"/>
14979 #
14980 -interface(`corenet_udp_send_pegasus_https_port',`
14981 +interface(`corenet_udp_send_pdps_port',`
14982 gen_require(`
14983 - type pegasus_https_port_t;
14984 + type pdps_port_t;
14985 ')
14986
14987 - allow $1 pegasus_https_port_t:udp_socket send_msg;
14988 + allow $1 pdps_port_t:udp_socket send_msg;
14989 ')
14990
14991 ########################################
14992 ## <summary>
14993 -## Do not audit attempts to send UDP traffic on the pegasus_https port.
14994 +## Do not audit attempts to send UDP traffic on the pdps port.
14995 ## </summary>
14996 ## <param name="domain">
14997 ## <summary>
14998 @@ -61241,17 +62127,17 @@ interface(`corenet_udp_send_pegasus_https_port',`
14999 ## </param>
15000 ## <infoflow type="none"/>
15001 #
15002 -interface(`corenet_dontaudit_udp_send_pegasus_https_port',`
15003 +interface(`corenet_dontaudit_udp_send_pdps_port',`
15004 gen_require(`
15005 - type pegasus_https_port_t;
15006 + type pdps_port_t;
15007 ')
15008
15009 - dontaudit $1 pegasus_https_port_t:udp_socket send_msg;
15010 + dontaudit $1 pdps_port_t:udp_socket send_msg;
15011 ')
15012
15013 ########################################
15014 ## <summary>
15015 -## Receive UDP traffic on the pegasus_https port.
15016 +## Receive UDP traffic on the pdps port.
15017 ## </summary>
15018 ## <param name="domain">
15019 ## <summary>
15020 @@ -61260,17 +62146,17 @@ interface(`corenet_dontaudit_udp_send_pegasus_https_port',`
15021 ## </param>
15022 ## <infoflow type="read" weight="10"/>
15023 #
15024 -interface(`corenet_udp_receive_pegasus_https_port',`
15025 +interface(`corenet_udp_receive_pdps_port',`
15026 gen_require(`
15027 - type pegasus_https_port_t;
15028 + type pdps_port_t;
15029 ')
15030
15031 - allow $1 pegasus_https_port_t:udp_socket recv_msg;
15032 + allow $1 pdps_port_t:udp_socket recv_msg;
15033 ')
15034
15035 ########################################
15036 ## <summary>
15037 -## Do not audit attempts to receive UDP traffic on the pegasus_https port.
15038 +## Do not audit attempts to receive UDP traffic on the pdps port.
15039 ## </summary>
15040 ## <param name="domain">
15041 ## <summary>
15042 @@ -61279,17 +62165,17 @@ interface(`corenet_udp_receive_pegasus_https_port',`
15043 ## </param>
15044 ## <infoflow type="none"/>
15045 #
15046 -interface(`corenet_dontaudit_udp_receive_pegasus_https_port',`
15047 +interface(`corenet_dontaudit_udp_receive_pdps_port',`
15048 gen_require(`
15049 - type pegasus_https_port_t;
15050 + type pdps_port_t;
15051 ')
15052
15053 - dontaudit $1 pegasus_https_port_t:udp_socket recv_msg;
15054 + dontaudit $1 pdps_port_t:udp_socket recv_msg;
15055 ')
15056
15057 ########################################
15058 ## <summary>
15059 -## Send and receive UDP traffic on the pegasus_https port.
15060 +## Send and receive UDP traffic on the pdps port.
15061 ## </summary>
15062 ## <param name="domain">
15063 ## <summary>
15064 @@ -61298,15 +62184,15 @@ interface(`corenet_dontaudit_udp_receive_pegasus_https_port',`
15065 ## </param>
15066 ## <infoflow type="both" weight="10"/>
15067 #
15068 -interface(`corenet_udp_sendrecv_pegasus_https_port',`
15069 - corenet_udp_send_pegasus_https_port($1)
15070 - corenet_udp_receive_pegasus_https_port($1)
15071 +interface(`corenet_udp_sendrecv_pdps_port',`
15072 + corenet_udp_send_pdps_port($1)
15073 + corenet_udp_receive_pdps_port($1)
15074 ')
15075
15076 ########################################
15077 ## <summary>
15078 ## Do not audit attempts to send and receive
15079 -## UDP traffic on the pegasus_https port.
15080 +## UDP traffic on the pdps port.
15081 ## </summary>
15082 ## <param name="domain">
15083 ## <summary>
15084 @@ -61315,14 +62201,14 @@ interface(`corenet_udp_sendrecv_pegasus_https_port',`
15085 ## </param>
15086 ## <infoflow type="none"/>
15087 #
15088 -interface(`corenet_dontaudit_udp_sendrecv_pegasus_https_port',`
15089 - corenet_dontaudit_udp_send_pegasus_https_port($1)
15090 - corenet_dontaudit_udp_receive_pegasus_https_port($1)
15091 +interface(`corenet_dontaudit_udp_sendrecv_pdps_port',`
15092 + corenet_dontaudit_udp_send_pdps_port($1)
15093 + corenet_dontaudit_udp_receive_pdps_port($1)
15094 ')
15095
15096 ########################################
15097 ## <summary>
15098 -## Bind TCP sockets to the pegasus_https port.
15099 +## Bind TCP sockets to the pdps port.
15100 ## </summary>
15101 ## <param name="domain">
15102 ## <summary>
15103 @@ -61331,18 +62217,18 @@ interface(`corenet_dontaudit_udp_sendrecv_pegasus_https_port',`
15104 ## </param>
15105 ## <infoflow type="none"/>
15106 #
15107 -interface(`corenet_tcp_bind_pegasus_https_port',`
15108 +interface(`corenet_tcp_bind_pdps_port',`
15109 gen_require(`
15110 - type pegasus_https_port_t;
15111 + type pdps_port_t;
15112 ')
15113
15114 - allow $1 pegasus_https_port_t:tcp_socket name_bind;
15115 + allow $1 pdps_port_t:tcp_socket name_bind;
15116
15117 ')
15118
15119 ########################################
15120 ## <summary>
15121 -## Bind UDP sockets to the pegasus_https port.
15122 +## Bind UDP sockets to the pdps port.
15123 ## </summary>
15124 ## <param name="domain">
15125 ## <summary>
15126 @@ -61351,18 +62237,18 @@ interface(`corenet_tcp_bind_pegasus_https_port',`
15127 ## </param>
15128 ## <infoflow type="none"/>
15129 #
15130 -interface(`corenet_udp_bind_pegasus_https_port',`
15131 +interface(`corenet_udp_bind_pdps_port',`
15132 gen_require(`
15133 - type pegasus_https_port_t;
15134 + type pdps_port_t;
15135 ')
15136
15137 - allow $1 pegasus_https_port_t:udp_socket name_bind;
15138 + allow $1 pdps_port_t:udp_socket name_bind;
15139
15140 ')
15141
15142 ########################################
15143 ## <summary>
15144 -## Make a TCP connection to the pegasus_https port.
15145 +## Make a TCP connection to the pdps port.
15146 ## </summary>
15147 ## <param name="domain">
15148 ## <summary>
15149 @@ -61370,18 +62256,18 @@ interface(`corenet_udp_bind_pegasus_https_port',`
15150 ## </summary>
15151 ## </param>
15152 #
15153 -interface(`corenet_tcp_connect_pegasus_https_port',`
15154 +interface(`corenet_tcp_connect_pdps_port',`
15155 gen_require(`
15156 - type pegasus_https_port_t;
15157 + type pdps_port_t;
15158 ')
15159
15160 - allow $1 pegasus_https_port_t:tcp_socket name_connect;
15161 + allow $1 pdps_port_t:tcp_socket name_connect;
15162 ')
15163
15164
15165 ########################################
15166 ## <summary>
15167 -## Send pegasus_https_client packets.
15168 +## Send pdps_client packets.
15169 ## </summary>
15170 ## <param name="domain">
15171 ## <summary>
15172 @@ -61390,17 +62276,17 @@ interface(`corenet_tcp_connect_pegasus_https_port',`
15173 ## </param>
15174 ## <infoflow type="write" weight="10"/>
15175 #
15176 -interface(`corenet_send_pegasus_https_client_packets',`
15177 +interface(`corenet_send_pdps_client_packets',`
15178 gen_require(`
15179 - type pegasus_https_client_packet_t;
15180 + type pdps_client_packet_t;
15181 ')
15182
15183 - allow $1 pegasus_https_client_packet_t:packet send;
15184 + allow $1 pdps_client_packet_t:packet send;
15185 ')
15186
15187 ########################################
15188 ## <summary>
15189 -## Do not audit attempts to send pegasus_https_client packets.
15190 +## Do not audit attempts to send pdps_client packets.
15191 ## </summary>
15192 ## <param name="domain">
15193 ## <summary>
15194 @@ -61409,17 +62295,17 @@ interface(`corenet_send_pegasus_https_client_packets',`
15195 ## </param>
15196 ## <infoflow type="none"/>
15197 #
15198 -interface(`corenet_dontaudit_send_pegasus_https_client_packets',`
15199 +interface(`corenet_dontaudit_send_pdps_client_packets',`
15200 gen_require(`
15201 - type pegasus_https_client_packet_t;
15202 + type pdps_client_packet_t;
15203 ')
15204
15205 - dontaudit $1 pegasus_https_client_packet_t:packet send;
15206 + dontaudit $1 pdps_client_packet_t:packet send;
15207 ')
15208
15209 ########################################
15210 ## <summary>
15211 -## Receive pegasus_https_client packets.
15212 +## Receive pdps_client packets.
15213 ## </summary>
15214 ## <param name="domain">
15215 ## <summary>
15216 @@ -61428,17 +62314,17 @@ interface(`corenet_dontaudit_send_pegasus_https_client_packets',`
15217 ## </param>
15218 ## <infoflow type="read" weight="10"/>
15219 #
15220 -interface(`corenet_receive_pegasus_https_client_packets',`
15221 +interface(`corenet_receive_pdps_client_packets',`
15222 gen_require(`
15223 - type pegasus_https_client_packet_t;
15224 + type pdps_client_packet_t;
15225 ')
15226
15227 - allow $1 pegasus_https_client_packet_t:packet recv;
15228 + allow $1 pdps_client_packet_t:packet recv;
15229 ')
15230
15231 ########################################
15232 ## <summary>
15233 -## Do not audit attempts to receive pegasus_https_client packets.
15234 +## Do not audit attempts to receive pdps_client packets.
15235 ## </summary>
15236 ## <param name="domain">
15237 ## <summary>
15238 @@ -61447,17 +62333,17 @@ interface(`corenet_receive_pegasus_https_client_packets',`
15239 ## </param>
15240 ## <infoflow type="none"/>
15241 #
15242 -interface(`corenet_dontaudit_receive_pegasus_https_client_packets',`
15243 +interface(`corenet_dontaudit_receive_pdps_client_packets',`
15244 gen_require(`
15245 - type pegasus_https_client_packet_t;
15246 + type pdps_client_packet_t;
15247 ')
15248
15249 - dontaudit $1 pegasus_https_client_packet_t:packet recv;
15250 + dontaudit $1 pdps_client_packet_t:packet recv;
15251 ')
15252
15253 ########################################
15254 ## <summary>
15255 -## Send and receive pegasus_https_client packets.
15256 +## Send and receive pdps_client packets.
15257 ## </summary>
15258 ## <param name="domain">
15259 ## <summary>
15260 @@ -61466,14 +62352,14 @@ interface(`corenet_dontaudit_receive_pegasus_https_client_packets',`
15261 ## </param>
15262 ## <infoflow type="both" weight="10"/>
15263 #
15264 -interface(`corenet_sendrecv_pegasus_https_client_packets',`
15265 - corenet_send_pegasus_https_client_packets($1)
15266 - corenet_receive_pegasus_https_client_packets($1)
15267 +interface(`corenet_sendrecv_pdps_client_packets',`
15268 + corenet_send_pdps_client_packets($1)
15269 + corenet_receive_pdps_client_packets($1)
15270 ')
15271
15272 ########################################
15273 ## <summary>
15274 -## Do not audit attempts to send and receive pegasus_https_client packets.
15275 +## Do not audit attempts to send and receive pdps_client packets.
15276 ## </summary>
15277 ## <param name="domain">
15278 ## <summary>
15279 @@ -61482,14 +62368,14 @@ interface(`corenet_sendrecv_pegasus_https_client_packets',`
15280 ## </param>
15281 ## <infoflow type="none"/>
15282 #
15283 -interface(`corenet_dontaudit_sendrecv_pegasus_https_client_packets',`
15284 - corenet_dontaudit_send_pegasus_https_client_packets($1)
15285 - corenet_dontaudit_receive_pegasus_https_client_packets($1)
15286 +interface(`corenet_dontaudit_sendrecv_pdps_client_packets',`
15287 + corenet_dontaudit_send_pdps_client_packets($1)
15288 + corenet_dontaudit_receive_pdps_client_packets($1)
15289 ')
15290
15291 ########################################
15292 ## <summary>
15293 -## Relabel packets to pegasus_https_client the packet type.
15294 +## Relabel packets to pdps_client the packet type.
15295 ## </summary>
15296 ## <param name="domain">
15297 ## <summary>
15298 @@ -61497,18 +62383,18 @@ interface(`corenet_dontaudit_sendrecv_pegasus_https_client_packets',`
15299 ## </summary>
15300 ## </param>
15301 #
15302 -interface(`corenet_relabelto_pegasus_https_client_packets',`
15303 +interface(`corenet_relabelto_pdps_client_packets',`
15304 gen_require(`
15305 - type pegasus_https_client_packet_t;
15306 + type pdps_client_packet_t;
15307 ')
15308
15309 - allow $1 pegasus_https_client_packet_t:packet relabelto;
15310 + allow $1 pdps_client_packet_t:packet relabelto;
15311 ')
15312
15313
15314 ########################################
15315 ## <summary>
15316 -## Send pegasus_https_server packets.
15317 +## Send pdps_server packets.
15318 ## </summary>
15319 ## <param name="domain">
15320 ## <summary>
15321 @@ -61517,17 +62403,17 @@ interface(`corenet_relabelto_pegasus_https_client_packets',`
15322 ## </param>
15323 ## <infoflow type="write" weight="10"/>
15324 #
15325 -interface(`corenet_send_pegasus_https_server_packets',`
15326 +interface(`corenet_send_pdps_server_packets',`
15327 gen_require(`
15328 - type pegasus_https_server_packet_t;
15329 + type pdps_server_packet_t;
15330 ')
15331
15332 - allow $1 pegasus_https_server_packet_t:packet send;
15333 + allow $1 pdps_server_packet_t:packet send;
15334 ')
15335
15336 ########################################
15337 ## <summary>
15338 -## Do not audit attempts to send pegasus_https_server packets.
15339 +## Do not audit attempts to send pdps_server packets.
15340 ## </summary>
15341 ## <param name="domain">
15342 ## <summary>
15343 @@ -61536,17 +62422,17 @@ interface(`corenet_send_pegasus_https_server_packets',`
15344 ## </param>
15345 ## <infoflow type="none"/>
15346 #
15347 -interface(`corenet_dontaudit_send_pegasus_https_server_packets',`
15348 +interface(`corenet_dontaudit_send_pdps_server_packets',`
15349 gen_require(`
15350 - type pegasus_https_server_packet_t;
15351 + type pdps_server_packet_t;
15352 ')
15353
15354 - dontaudit $1 pegasus_https_server_packet_t:packet send;
15355 + dontaudit $1 pdps_server_packet_t:packet send;
15356 ')
15357
15358 ########################################
15359 ## <summary>
15360 -## Receive pegasus_https_server packets.
15361 +## Receive pdps_server packets.
15362 ## </summary>
15363 ## <param name="domain">
15364 ## <summary>
15365 @@ -61555,17 +62441,17 @@ interface(`corenet_dontaudit_send_pegasus_https_server_packets',`
15366 ## </param>
15367 ## <infoflow type="read" weight="10"/>
15368 #
15369 -interface(`corenet_receive_pegasus_https_server_packets',`
15370 +interface(`corenet_receive_pdps_server_packets',`
15371 gen_require(`
15372 - type pegasus_https_server_packet_t;
15373 + type pdps_server_packet_t;
15374 ')
15375
15376 - allow $1 pegasus_https_server_packet_t:packet recv;
15377 + allow $1 pdps_server_packet_t:packet recv;
15378 ')
15379
15380 ########################################
15381 ## <summary>
15382 -## Do not audit attempts to receive pegasus_https_server packets.
15383 +## Do not audit attempts to receive pdps_server packets.
15384 ## </summary>
15385 ## <param name="domain">
15386 ## <summary>
15387 @@ -61574,17 +62460,17 @@ interface(`corenet_receive_pegasus_https_server_packets',`
15388 ## </param>
15389 ## <infoflow type="none"/>
15390 #
15391 -interface(`corenet_dontaudit_receive_pegasus_https_server_packets',`
15392 +interface(`corenet_dontaudit_receive_pdps_server_packets',`
15393 gen_require(`
15394 - type pegasus_https_server_packet_t;
15395 + type pdps_server_packet_t;
15396 ')
15397
15398 - dontaudit $1 pegasus_https_server_packet_t:packet recv;
15399 + dontaudit $1 pdps_server_packet_t:packet recv;
15400 ')
15401
15402 ########################################
15403 ## <summary>
15404 -## Send and receive pegasus_https_server packets.
15405 +## Send and receive pdps_server packets.
15406 ## </summary>
15407 ## <param name="domain">
15408 ## <summary>
15409 @@ -61593,14 +62479,14 @@ interface(`corenet_dontaudit_receive_pegasus_https_server_packets',`
15410 ## </param>
15411 ## <infoflow type="both" weight="10"/>
15412 #
15413 -interface(`corenet_sendrecv_pegasus_https_server_packets',`
15414 - corenet_send_pegasus_https_server_packets($1)
15415 - corenet_receive_pegasus_https_server_packets($1)
15416 +interface(`corenet_sendrecv_pdps_server_packets',`
15417 + corenet_send_pdps_server_packets($1)
15418 + corenet_receive_pdps_server_packets($1)
15419 ')
15420
15421 ########################################
15422 ## <summary>
15423 -## Do not audit attempts to send and receive pegasus_https_server packets.
15424 +## Do not audit attempts to send and receive pdps_server packets.
15425 ## </summary>
15426 ## <param name="domain">
15427 ## <summary>
15428 @@ -61609,14 +62495,14 @@ interface(`corenet_sendrecv_pegasus_https_server_packets',`
15429 ## </param>
15430 ## <infoflow type="none"/>
15431 #
15432 -interface(`corenet_dontaudit_sendrecv_pegasus_https_server_packets',`
15433 - corenet_dontaudit_send_pegasus_https_server_packets($1)
15434 - corenet_dontaudit_receive_pegasus_https_server_packets($1)
15435 +interface(`corenet_dontaudit_sendrecv_pdps_server_packets',`
15436 + corenet_dontaudit_send_pdps_server_packets($1)
15437 + corenet_dontaudit_receive_pdps_server_packets($1)
15438 ')
15439
15440 ########################################
15441 ## <summary>
15442 -## Relabel packets to pegasus_https_server the packet type.
15443 +## Relabel packets to pdps_server the packet type.
15444 ## </summary>
15445 ## <param name="domain">
15446 ## <summary>
15447 @@ -61624,12 +62510,12 @@ interface(`corenet_dontaudit_sendrecv_pegasus_https_server_packets',`
15448 ## </summary>
15449 ## </param>
15450 #
15451 -interface(`corenet_relabelto_pegasus_https_server_packets',`
15452 +interface(`corenet_relabelto_pdps_server_packets',`
15453 gen_require(`
15454 - type pegasus_https_server_packet_t;
15455 + type pdps_server_packet_t;
15456 ')
15457
15458 - allow $1 pegasus_https_server_packet_t:packet relabelto;
15459 + allow $1 pdps_server_packet_t:packet relabelto;
15460 ')
15461
15462
15463 @@ -61637,7 +62523,7 @@ interface(`corenet_relabelto_pegasus_https_server_packets',`
15464
15465 ########################################
15466 ## <summary>
15467 -## Send and receive TCP traffic on the pgpkeyserver port.
15468 +## Send and receive TCP traffic on the pegasus_http port.
15469 ## </summary>
15470 ## <param name="domain">
15471 ## <summary>
15472 @@ -61646,17 +62532,17 @@ interface(`corenet_relabelto_pegasus_https_server_packets',`
15473 ## </param>
15474 ## <infoflow type="both" weight="10"/>
15475 #
15476 -interface(`corenet_tcp_sendrecv_pgpkeyserver_port',`
15477 +interface(`corenet_tcp_sendrecv_pegasus_http_port',`
15478 gen_require(`
15479 - type pgpkeyserver_port_t;
15480 + type pegasus_http_port_t;
15481 ')
15482
15483 - allow $1 pgpkeyserver_port_t:tcp_socket { send_msg recv_msg };
15484 + allow $1 pegasus_http_port_t:tcp_socket { send_msg recv_msg };
15485 ')
15486
15487 ########################################
15488 ## <summary>
15489 -## Send UDP traffic on the pgpkeyserver port.
15490 +## Send UDP traffic on the pegasus_http port.
15491 ## </summary>
15492 ## <param name="domain">
15493 ## <summary>
15494 @@ -61665,17 +62551,17 @@ interface(`corenet_tcp_sendrecv_pgpkeyserver_port',`
15495 ## </param>
15496 ## <infoflow type="write" weight="10"/>
15497 #
15498 -interface(`corenet_udp_send_pgpkeyserver_port',`
15499 +interface(`corenet_udp_send_pegasus_http_port',`
15500 gen_require(`
15501 - type pgpkeyserver_port_t;
15502 + type pegasus_http_port_t;
15503 ')
15504
15505 - allow $1 pgpkeyserver_port_t:udp_socket send_msg;
15506 + allow $1 pegasus_http_port_t:udp_socket send_msg;
15507 ')
15508
15509 ########################################
15510 ## <summary>
15511 -## Do not audit attempts to send UDP traffic on the pgpkeyserver port.
15512 +## Do not audit attempts to send UDP traffic on the pegasus_http port.
15513 ## </summary>
15514 ## <param name="domain">
15515 ## <summary>
15516 @@ -61684,17 +62570,17 @@ interface(`corenet_udp_send_pgpkeyserver_port',`
15517 ## </param>
15518 ## <infoflow type="none"/>
15519 #
15520 -interface(`corenet_dontaudit_udp_send_pgpkeyserver_port',`
15521 +interface(`corenet_dontaudit_udp_send_pegasus_http_port',`
15522 gen_require(`
15523 - type pgpkeyserver_port_t;
15524 + type pegasus_http_port_t;
15525 ')
15526
15527 - dontaudit $1 pgpkeyserver_port_t:udp_socket send_msg;
15528 + dontaudit $1 pegasus_http_port_t:udp_socket send_msg;
15529 ')
15530
15531 ########################################
15532 ## <summary>
15533 -## Receive UDP traffic on the pgpkeyserver port.
15534 +## Receive UDP traffic on the pegasus_http port.
15535 ## </summary>
15536 ## <param name="domain">
15537 ## <summary>
15538 @@ -61703,17 +62589,17 @@ interface(`corenet_dontaudit_udp_send_pgpkeyserver_port',`
15539 ## </param>
15540 ## <infoflow type="read" weight="10"/>
15541 #
15542 -interface(`corenet_udp_receive_pgpkeyserver_port',`
15543 +interface(`corenet_udp_receive_pegasus_http_port',`
15544 gen_require(`
15545 - type pgpkeyserver_port_t;
15546 + type pegasus_http_port_t;
15547 ')
15548
15549 - allow $1 pgpkeyserver_port_t:udp_socket recv_msg;
15550 + allow $1 pegasus_http_port_t:udp_socket recv_msg;
15551 ')
15552
15553 ########################################
15554 ## <summary>
15555 -## Do not audit attempts to receive UDP traffic on the pgpkeyserver port.
15556 +## Do not audit attempts to receive UDP traffic on the pegasus_http port.
15557 ## </summary>
15558 ## <param name="domain">
15559 ## <summary>
15560 @@ -61722,17 +62608,17 @@ interface(`corenet_udp_receive_pgpkeyserver_port',`
15561 ## </param>
15562 ## <infoflow type="none"/>
15563 #
15564 -interface(`corenet_dontaudit_udp_receive_pgpkeyserver_port',`
15565 +interface(`corenet_dontaudit_udp_receive_pegasus_http_port',`
15566 gen_require(`
15567 - type pgpkeyserver_port_t;
15568 + type pegasus_http_port_t;
15569 ')
15570
15571 - dontaudit $1 pgpkeyserver_port_t:udp_socket recv_msg;
15572 + dontaudit $1 pegasus_http_port_t:udp_socket recv_msg;
15573 ')
15574
15575 ########################################
15576 ## <summary>
15577 -## Send and receive UDP traffic on the pgpkeyserver port.
15578 +## Send and receive UDP traffic on the pegasus_http port.
15579 ## </summary>
15580 ## <param name="domain">
15581 ## <summary>
15582 @@ -61741,15 +62627,15 @@ interface(`corenet_dontaudit_udp_receive_pgpkeyserver_port',`
15583 ## </param>
15584 ## <infoflow type="both" weight="10"/>
15585 #
15586 -interface(`corenet_udp_sendrecv_pgpkeyserver_port',`
15587 - corenet_udp_send_pgpkeyserver_port($1)
15588 - corenet_udp_receive_pgpkeyserver_port($1)
15589 +interface(`corenet_udp_sendrecv_pegasus_http_port',`
15590 + corenet_udp_send_pegasus_http_port($1)
15591 + corenet_udp_receive_pegasus_http_port($1)
15592 ')
15593
15594 ########################################
15595 ## <summary>
15596 ## Do not audit attempts to send and receive
15597 -## UDP traffic on the pgpkeyserver port.
15598 +## UDP traffic on the pegasus_http port.
15599 ## </summary>
15600 ## <param name="domain">
15601 ## <summary>
15602 @@ -61758,14 +62644,14 @@ interface(`corenet_udp_sendrecv_pgpkeyserver_port',`
15603 ## </param>
15604 ## <infoflow type="none"/>
15605 #
15606 -interface(`corenet_dontaudit_udp_sendrecv_pgpkeyserver_port',`
15607 - corenet_dontaudit_udp_send_pgpkeyserver_port($1)
15608 - corenet_dontaudit_udp_receive_pgpkeyserver_port($1)
15609 +interface(`corenet_dontaudit_udp_sendrecv_pegasus_http_port',`
15610 + corenet_dontaudit_udp_send_pegasus_http_port($1)
15611 + corenet_dontaudit_udp_receive_pegasus_http_port($1)
15612 ')
15613
15614 ########################################
15615 ## <summary>
15616 -## Bind TCP sockets to the pgpkeyserver port.
15617 +## Bind TCP sockets to the pegasus_http port.
15618 ## </summary>
15619 ## <param name="domain">
15620 ## <summary>
15621 @@ -61774,18 +62660,18 @@ interface(`corenet_dontaudit_udp_sendrecv_pgpkeyserver_port',`
15622 ## </param>
15623 ## <infoflow type="none"/>
15624 #
15625 -interface(`corenet_tcp_bind_pgpkeyserver_port',`
15626 +interface(`corenet_tcp_bind_pegasus_http_port',`
15627 gen_require(`
15628 - type pgpkeyserver_port_t;
15629 + type pegasus_http_port_t;
15630 ')
15631
15632 - allow $1 pgpkeyserver_port_t:tcp_socket name_bind;
15633 + allow $1 pegasus_http_port_t:tcp_socket name_bind;
15634
15635 ')
15636
15637 ########################################
15638 ## <summary>
15639 -## Bind UDP sockets to the pgpkeyserver port.
15640 +## Bind UDP sockets to the pegasus_http port.
15641 ## </summary>
15642 ## <param name="domain">
15643 ## <summary>
15644 @@ -61794,18 +62680,18 @@ interface(`corenet_tcp_bind_pgpkeyserver_port',`
15645 ## </param>
15646 ## <infoflow type="none"/>
15647 #
15648 -interface(`corenet_udp_bind_pgpkeyserver_port',`
15649 +interface(`corenet_udp_bind_pegasus_http_port',`
15650 gen_require(`
15651 - type pgpkeyserver_port_t;
15652 + type pegasus_http_port_t;
15653 ')
15654
15655 - allow $1 pgpkeyserver_port_t:udp_socket name_bind;
15656 + allow $1 pegasus_http_port_t:udp_socket name_bind;
15657
15658 ')
15659
15660 ########################################
15661 ## <summary>
15662 -## Make a TCP connection to the pgpkeyserver port.
15663 +## Make a TCP connection to the pegasus_http port.
15664 ## </summary>
15665 ## <param name="domain">
15666 ## <summary>
15667 @@ -61813,18 +62699,18 @@ interface(`corenet_udp_bind_pgpkeyserver_port',`
15668 ## </summary>
15669 ## </param>
15670 #
15671 -interface(`corenet_tcp_connect_pgpkeyserver_port',`
15672 +interface(`corenet_tcp_connect_pegasus_http_port',`
15673 gen_require(`
15674 - type pgpkeyserver_port_t;
15675 + type pegasus_http_port_t;
15676 ')
15677
15678 - allow $1 pgpkeyserver_port_t:tcp_socket name_connect;
15679 + allow $1 pegasus_http_port_t:tcp_socket name_connect;
15680 ')
15681
15682
15683 ########################################
15684 ## <summary>
15685 -## Send pgpkeyserver_client packets.
15686 +## Send pegasus_http_client packets.
15687 ## </summary>
15688 ## <param name="domain">
15689 ## <summary>
15690 @@ -61833,17 +62719,17 @@ interface(`corenet_tcp_connect_pgpkeyserver_port',`
15691 ## </param>
15692 ## <infoflow type="write" weight="10"/>
15693 #
15694 -interface(`corenet_send_pgpkeyserver_client_packets',`
15695 +interface(`corenet_send_pegasus_http_client_packets',`
15696 gen_require(`
15697 - type pgpkeyserver_client_packet_t;
15698 + type pegasus_http_client_packet_t;
15699 ')
15700
15701 - allow $1 pgpkeyserver_client_packet_t:packet send;
15702 + allow $1 pegasus_http_client_packet_t:packet send;
15703 ')
15704
15705 ########################################
15706 ## <summary>
15707 -## Do not audit attempts to send pgpkeyserver_client packets.
15708 +## Do not audit attempts to send pegasus_http_client packets.
15709 ## </summary>
15710 ## <param name="domain">
15711 ## <summary>
15712 @@ -61852,17 +62738,17 @@ interface(`corenet_send_pgpkeyserver_client_packets',`
15713 ## </param>
15714 ## <infoflow type="none"/>
15715 #
15716 -interface(`corenet_dontaudit_send_pgpkeyserver_client_packets',`
15717 +interface(`corenet_dontaudit_send_pegasus_http_client_packets',`
15718 gen_require(`
15719 - type pgpkeyserver_client_packet_t;
15720 + type pegasus_http_client_packet_t;
15721 ')
15722
15723 - dontaudit $1 pgpkeyserver_client_packet_t:packet send;
15724 + dontaudit $1 pegasus_http_client_packet_t:packet send;
15725 ')
15726
15727 ########################################
15728 ## <summary>
15729 -## Receive pgpkeyserver_client packets.
15730 +## Receive pegasus_http_client packets.
15731 ## </summary>
15732 ## <param name="domain">
15733 ## <summary>
15734 @@ -61871,17 +62757,17 @@ interface(`corenet_dontaudit_send_pgpkeyserver_client_packets',`
15735 ## </param>
15736 ## <infoflow type="read" weight="10"/>
15737 #
15738 -interface(`corenet_receive_pgpkeyserver_client_packets',`
15739 +interface(`corenet_receive_pegasus_http_client_packets',`
15740 gen_require(`
15741 - type pgpkeyserver_client_packet_t;
15742 + type pegasus_http_client_packet_t;
15743 ')
15744
15745 - allow $1 pgpkeyserver_client_packet_t:packet recv;
15746 + allow $1 pegasus_http_client_packet_t:packet recv;
15747 ')
15748
15749 ########################################
15750 ## <summary>
15751 -## Do not audit attempts to receive pgpkeyserver_client packets.
15752 +## Do not audit attempts to receive pegasus_http_client packets.
15753 ## </summary>
15754 ## <param name="domain">
15755 ## <summary>
15756 @@ -61890,17 +62776,17 @@ interface(`corenet_receive_pgpkeyserver_client_packets',`
15757 ## </param>
15758 ## <infoflow type="none"/>
15759 #
15760 -interface(`corenet_dontaudit_receive_pgpkeyserver_client_packets',`
15761 +interface(`corenet_dontaudit_receive_pegasus_http_client_packets',`
15762 gen_require(`
15763 - type pgpkeyserver_client_packet_t;
15764 + type pegasus_http_client_packet_t;
15765 ')
15766
15767 - dontaudit $1 pgpkeyserver_client_packet_t:packet recv;
15768 + dontaudit $1 pegasus_http_client_packet_t:packet recv;
15769 ')
15770
15771 ########################################
15772 ## <summary>
15773 -## Send and receive pgpkeyserver_client packets.
15774 +## Send and receive pegasus_http_client packets.
15775 ## </summary>
15776 ## <param name="domain">
15777 ## <summary>
15778 @@ -61909,14 +62795,14 @@ interface(`corenet_dontaudit_receive_pgpkeyserver_client_packets',`
15779 ## </param>
15780 ## <infoflow type="both" weight="10"/>
15781 #
15782 -interface(`corenet_sendrecv_pgpkeyserver_client_packets',`
15783 - corenet_send_pgpkeyserver_client_packets($1)
15784 - corenet_receive_pgpkeyserver_client_packets($1)
15785 +interface(`corenet_sendrecv_pegasus_http_client_packets',`
15786 + corenet_send_pegasus_http_client_packets($1)
15787 + corenet_receive_pegasus_http_client_packets($1)
15788 ')
15789
15790 ########################################
15791 ## <summary>
15792 -## Do not audit attempts to send and receive pgpkeyserver_client packets.
15793 +## Do not audit attempts to send and receive pegasus_http_client packets.
15794 ## </summary>
15795 ## <param name="domain">
15796 ## <summary>
15797 @@ -61925,14 +62811,14 @@ interface(`corenet_sendrecv_pgpkeyserver_client_packets',`
15798 ## </param>
15799 ## <infoflow type="none"/>
15800 #
15801 -interface(`corenet_dontaudit_sendrecv_pgpkeyserver_client_packets',`
15802 - corenet_dontaudit_send_pgpkeyserver_client_packets($1)
15803 - corenet_dontaudit_receive_pgpkeyserver_client_packets($1)
15804 +interface(`corenet_dontaudit_sendrecv_pegasus_http_client_packets',`
15805 + corenet_dontaudit_send_pegasus_http_client_packets($1)
15806 + corenet_dontaudit_receive_pegasus_http_client_packets($1)
15807 ')
15808
15809 ########################################
15810 ## <summary>
15811 -## Relabel packets to pgpkeyserver_client the packet type.
15812 +## Relabel packets to pegasus_http_client the packet type.
15813 ## </summary>
15814 ## <param name="domain">
15815 ## <summary>
15816 @@ -61940,18 +62826,18 @@ interface(`corenet_dontaudit_sendrecv_pgpkeyserver_client_packets',`
15817 ## </summary>
15818 ## </param>
15819 #
15820 -interface(`corenet_relabelto_pgpkeyserver_client_packets',`
15821 +interface(`corenet_relabelto_pegasus_http_client_packets',`
15822 gen_require(`
15823 - type pgpkeyserver_client_packet_t;
15824 + type pegasus_http_client_packet_t;
15825 ')
15826
15827 - allow $1 pgpkeyserver_client_packet_t:packet relabelto;
15828 + allow $1 pegasus_http_client_packet_t:packet relabelto;
15829 ')
15830
15831
15832 ########################################
15833 ## <summary>
15834 -## Send pgpkeyserver_server packets.
15835 +## Send pegasus_http_server packets.
15836 ## </summary>
15837 ## <param name="domain">
15838 ## <summary>
15839 @@ -61960,17 +62846,17 @@ interface(`corenet_relabelto_pgpkeyserver_client_packets',`
15840 ## </param>
15841 ## <infoflow type="write" weight="10"/>
15842 #
15843 -interface(`corenet_send_pgpkeyserver_server_packets',`
15844 +interface(`corenet_send_pegasus_http_server_packets',`
15845 gen_require(`
15846 - type pgpkeyserver_server_packet_t;
15847 + type pegasus_http_server_packet_t;
15848 ')
15849
15850 - allow $1 pgpkeyserver_server_packet_t:packet send;
15851 + allow $1 pegasus_http_server_packet_t:packet send;
15852 ')
15853
15854 ########################################
15855 ## <summary>
15856 -## Do not audit attempts to send pgpkeyserver_server packets.
15857 +## Do not audit attempts to send pegasus_http_server packets.
15858 ## </summary>
15859 ## <param name="domain">
15860 ## <summary>
15861 @@ -61979,17 +62865,17 @@ interface(`corenet_send_pgpkeyserver_server_packets',`
15862 ## </param>
15863 ## <infoflow type="none"/>
15864 #
15865 -interface(`corenet_dontaudit_send_pgpkeyserver_server_packets',`
15866 +interface(`corenet_dontaudit_send_pegasus_http_server_packets',`
15867 gen_require(`
15868 - type pgpkeyserver_server_packet_t;
15869 + type pegasus_http_server_packet_t;
15870 ')
15871
15872 - dontaudit $1 pgpkeyserver_server_packet_t:packet send;
15873 + dontaudit $1 pegasus_http_server_packet_t:packet send;
15874 ')
15875
15876 ########################################
15877 ## <summary>
15878 -## Receive pgpkeyserver_server packets.
15879 +## Receive pegasus_http_server packets.
15880 ## </summary>
15881 ## <param name="domain">
15882 ## <summary>
15883 @@ -61998,17 +62884,17 @@ interface(`corenet_dontaudit_send_pgpkeyserver_server_packets',`
15884 ## </param>
15885 ## <infoflow type="read" weight="10"/>
15886 #
15887 -interface(`corenet_receive_pgpkeyserver_server_packets',`
15888 +interface(`corenet_receive_pegasus_http_server_packets',`
15889 gen_require(`
15890 - type pgpkeyserver_server_packet_t;
15891 + type pegasus_http_server_packet_t;
15892 ')
15893
15894 - allow $1 pgpkeyserver_server_packet_t:packet recv;
15895 + allow $1 pegasus_http_server_packet_t:packet recv;
15896 ')
15897
15898 ########################################
15899 ## <summary>
15900 -## Do not audit attempts to receive pgpkeyserver_server packets.
15901 +## Do not audit attempts to receive pegasus_http_server packets.
15902 ## </summary>
15903 ## <param name="domain">
15904 ## <summary>
15905 @@ -62017,17 +62903,17 @@ interface(`corenet_receive_pgpkeyserver_server_packets',`
15906 ## </param>
15907 ## <infoflow type="none"/>
15908 #
15909 -interface(`corenet_dontaudit_receive_pgpkeyserver_server_packets',`
15910 +interface(`corenet_dontaudit_receive_pegasus_http_server_packets',`
15911 gen_require(`
15912 - type pgpkeyserver_server_packet_t;
15913 + type pegasus_http_server_packet_t;
15914 ')
15915
15916 - dontaudit $1 pgpkeyserver_server_packet_t:packet recv;
15917 + dontaudit $1 pegasus_http_server_packet_t:packet recv;
15918 ')
15919
15920 ########################################
15921 ## <summary>
15922 -## Send and receive pgpkeyserver_server packets.
15923 +## Send and receive pegasus_http_server packets.
15924 ## </summary>
15925 ## <param name="domain">
15926 ## <summary>
15927 @@ -62036,14 +62922,14 @@ interface(`corenet_dontaudit_receive_pgpkeyserver_server_packets',`
15928 ## </param>
15929 ## <infoflow type="both" weight="10"/>
15930 #
15931 -interface(`corenet_sendrecv_pgpkeyserver_server_packets',`
15932 - corenet_send_pgpkeyserver_server_packets($1)
15933 - corenet_receive_pgpkeyserver_server_packets($1)
15934 +interface(`corenet_sendrecv_pegasus_http_server_packets',`
15935 + corenet_send_pegasus_http_server_packets($1)
15936 + corenet_receive_pegasus_http_server_packets($1)
15937 ')
15938
15939 ########################################
15940 ## <summary>
15941 -## Do not audit attempts to send and receive pgpkeyserver_server packets.
15942 +## Do not audit attempts to send and receive pegasus_http_server packets.
15943 ## </summary>
15944 ## <param name="domain">
15945 ## <summary>
15946 @@ -62052,14 +62938,14 @@ interface(`corenet_sendrecv_pgpkeyserver_server_packets',`
15947 ## </param>
15948 ## <infoflow type="none"/>
15949 #
15950 -interface(`corenet_dontaudit_sendrecv_pgpkeyserver_server_packets',`
15951 - corenet_dontaudit_send_pgpkeyserver_server_packets($1)
15952 - corenet_dontaudit_receive_pgpkeyserver_server_packets($1)
15953 +interface(`corenet_dontaudit_sendrecv_pegasus_http_server_packets',`
15954 + corenet_dontaudit_send_pegasus_http_server_packets($1)
15955 + corenet_dontaudit_receive_pegasus_http_server_packets($1)
15956 ')
15957
15958 ########################################
15959 ## <summary>
15960 -## Relabel packets to pgpkeyserver_server the packet type.
15961 +## Relabel packets to pegasus_http_server the packet type.
15962 ## </summary>
15963 ## <param name="domain">
15964 ## <summary>
15965 @@ -62067,12 +62953,12 @@ interface(`corenet_dontaudit_sendrecv_pgpkeyserver_server_packets',`
15966 ## </summary>
15967 ## </param>
15968 #
15969 -interface(`corenet_relabelto_pgpkeyserver_server_packets',`
15970 +interface(`corenet_relabelto_pegasus_http_server_packets',`
15971 gen_require(`
15972 - type pgpkeyserver_server_packet_t;
15973 + type pegasus_http_server_packet_t;
15974 ')
15975
15976 - allow $1 pgpkeyserver_server_packet_t:packet relabelto;
15977 + allow $1 pegasus_http_server_packet_t:packet relabelto;
15978 ')
15979
15980
15981 @@ -62080,7 +62966,7 @@ interface(`corenet_relabelto_pgpkeyserver_server_packets',`
15982
15983 ########################################
15984 ## <summary>
15985 -## Send and receive TCP traffic on the pingd port.
15986 +## Send and receive TCP traffic on the pegasus_https port.
15987 ## </summary>
15988 ## <param name="domain">
15989 ## <summary>
15990 @@ -62089,17 +62975,17 @@ interface(`corenet_relabelto_pgpkeyserver_server_packets',`
15991 ## </param>
15992 ## <infoflow type="both" weight="10"/>
15993 #
15994 -interface(`corenet_tcp_sendrecv_pingd_port',`
15995 +interface(`corenet_tcp_sendrecv_pegasus_https_port',`
15996 gen_require(`
15997 - type pingd_port_t;
15998 + type pegasus_https_port_t;
15999 ')
16000
16001 - allow $1 pingd_port_t:tcp_socket { send_msg recv_msg };
16002 + allow $1 pegasus_https_port_t:tcp_socket { send_msg recv_msg };
16003 ')
16004
16005 ########################################
16006 ## <summary>
16007 -## Send UDP traffic on the pingd port.
16008 +## Send UDP traffic on the pegasus_https port.
16009 ## </summary>
16010 ## <param name="domain">
16011 ## <summary>
16012 @@ -62108,17 +62994,17 @@ interface(`corenet_tcp_sendrecv_pingd_port',`
16013 ## </param>
16014 ## <infoflow type="write" weight="10"/>
16015 #
16016 -interface(`corenet_udp_send_pingd_port',`
16017 +interface(`corenet_udp_send_pegasus_https_port',`
16018 gen_require(`
16019 - type pingd_port_t;
16020 + type pegasus_https_port_t;
16021 ')
16022
16023 - allow $1 pingd_port_t:udp_socket send_msg;
16024 + allow $1 pegasus_https_port_t:udp_socket send_msg;
16025 ')
16026
16027 ########################################
16028 ## <summary>
16029 -## Do not audit attempts to send UDP traffic on the pingd port.
16030 +## Do not audit attempts to send UDP traffic on the pegasus_https port.
16031 ## </summary>
16032 ## <param name="domain">
16033 ## <summary>
16034 @@ -62127,17 +63013,17 @@ interface(`corenet_udp_send_pingd_port',`
16035 ## </param>
16036 ## <infoflow type="none"/>
16037 #
16038 -interface(`corenet_dontaudit_udp_send_pingd_port',`
16039 +interface(`corenet_dontaudit_udp_send_pegasus_https_port',`
16040 gen_require(`
16041 - type pingd_port_t;
16042 + type pegasus_https_port_t;
16043 ')
16044
16045 - dontaudit $1 pingd_port_t:udp_socket send_msg;
16046 + dontaudit $1 pegasus_https_port_t:udp_socket send_msg;
16047 ')
16048
16049 ########################################
16050 ## <summary>
16051 -## Receive UDP traffic on the pingd port.
16052 +## Receive UDP traffic on the pegasus_https port.
16053 ## </summary>
16054 ## <param name="domain">
16055 ## <summary>
16056 @@ -62146,17 +63032,17 @@ interface(`corenet_dontaudit_udp_send_pingd_port',`
16057 ## </param>
16058 ## <infoflow type="read" weight="10"/>
16059 #
16060 -interface(`corenet_udp_receive_pingd_port',`
16061 +interface(`corenet_udp_receive_pegasus_https_port',`
16062 gen_require(`
16063 - type pingd_port_t;
16064 + type pegasus_https_port_t;
16065 ')
16066
16067 - allow $1 pingd_port_t:udp_socket recv_msg;
16068 + allow $1 pegasus_https_port_t:udp_socket recv_msg;
16069 ')
16070
16071 ########################################
16072 ## <summary>
16073 -## Do not audit attempts to receive UDP traffic on the pingd port.
16074 +## Do not audit attempts to receive UDP traffic on the pegasus_https port.
16075 ## </summary>
16076 ## <param name="domain">
16077 ## <summary>
16078 @@ -62165,17 +63051,17 @@ interface(`corenet_udp_receive_pingd_port',`
16079 ## </param>
16080 ## <infoflow type="none"/>
16081 #
16082 -interface(`corenet_dontaudit_udp_receive_pingd_port',`
16083 +interface(`corenet_dontaudit_udp_receive_pegasus_https_port',`
16084 gen_require(`
16085 - type pingd_port_t;
16086 + type pegasus_https_port_t;
16087 ')
16088
16089 - dontaudit $1 pingd_port_t:udp_socket recv_msg;
16090 + dontaudit $1 pegasus_https_port_t:udp_socket recv_msg;
16091 ')
16092
16093 ########################################
16094 ## <summary>
16095 -## Send and receive UDP traffic on the pingd port.
16096 +## Send and receive UDP traffic on the pegasus_https port.
16097 ## </summary>
16098 ## <param name="domain">
16099 ## <summary>
16100 @@ -62184,15 +63070,15 @@ interface(`corenet_dontaudit_udp_receive_pingd_port',`
16101 ## </param>
16102 ## <infoflow type="both" weight="10"/>
16103 #
16104 -interface(`corenet_udp_sendrecv_pingd_port',`
16105 - corenet_udp_send_pingd_port($1)
16106 - corenet_udp_receive_pingd_port($1)
16107 +interface(`corenet_udp_sendrecv_pegasus_https_port',`
16108 + corenet_udp_send_pegasus_https_port($1)
16109 + corenet_udp_receive_pegasus_https_port($1)
16110 ')
16111
16112 ########################################
16113 ## <summary>
16114 ## Do not audit attempts to send and receive
16115 -## UDP traffic on the pingd port.
16116 +## UDP traffic on the pegasus_https port.
16117 ## </summary>
16118 ## <param name="domain">
16119 ## <summary>
16120 @@ -62201,14 +63087,14 @@ interface(`corenet_udp_sendrecv_pingd_port',`
16121 ## </param>
16122 ## <infoflow type="none"/>
16123 #
16124 -interface(`corenet_dontaudit_udp_sendrecv_pingd_port',`
16125 - corenet_dontaudit_udp_send_pingd_port($1)
16126 - corenet_dontaudit_udp_receive_pingd_port($1)
16127 +interface(`corenet_dontaudit_udp_sendrecv_pegasus_https_port',`
16128 + corenet_dontaudit_udp_send_pegasus_https_port($1)
16129 + corenet_dontaudit_udp_receive_pegasus_https_port($1)
16130 ')
16131
16132 ########################################
16133 ## <summary>
16134 -## Bind TCP sockets to the pingd port.
16135 +## Bind TCP sockets to the pegasus_https port.
16136 ## </summary>
16137 ## <param name="domain">
16138 ## <summary>
16139 @@ -62217,18 +63103,18 @@ interface(`corenet_dontaudit_udp_sendrecv_pingd_port',`
16140 ## </param>
16141 ## <infoflow type="none"/>
16142 #
16143 -interface(`corenet_tcp_bind_pingd_port',`
16144 +interface(`corenet_tcp_bind_pegasus_https_port',`
16145 gen_require(`
16146 - type pingd_port_t;
16147 + type pegasus_https_port_t;
16148 ')
16149
16150 - allow $1 pingd_port_t:tcp_socket name_bind;
16151 + allow $1 pegasus_https_port_t:tcp_socket name_bind;
16152
16153 ')
16154
16155 ########################################
16156 ## <summary>
16157 -## Bind UDP sockets to the pingd port.
16158 +## Bind UDP sockets to the pegasus_https port.
16159 ## </summary>
16160 ## <param name="domain">
16161 ## <summary>
16162 @@ -62237,18 +63123,18 @@ interface(`corenet_tcp_bind_pingd_port',`
16163 ## </param>
16164 ## <infoflow type="none"/>
16165 #
16166 -interface(`corenet_udp_bind_pingd_port',`
16167 +interface(`corenet_udp_bind_pegasus_https_port',`
16168 gen_require(`
16169 - type pingd_port_t;
16170 + type pegasus_https_port_t;
16171 ')
16172
16173 - allow $1 pingd_port_t:udp_socket name_bind;
16174 + allow $1 pegasus_https_port_t:udp_socket name_bind;
16175
16176 ')
16177
16178 ########################################
16179 ## <summary>
16180 -## Make a TCP connection to the pingd port.
16181 +## Make a TCP connection to the pegasus_https port.
16182 ## </summary>
16183 ## <param name="domain">
16184 ## <summary>
16185 @@ -62256,18 +63142,18 @@ interface(`corenet_udp_bind_pingd_port',`
16186 ## </summary>
16187 ## </param>
16188 #
16189 -interface(`corenet_tcp_connect_pingd_port',`
16190 +interface(`corenet_tcp_connect_pegasus_https_port',`
16191 gen_require(`
16192 - type pingd_port_t;
16193 + type pegasus_https_port_t;
16194 ')
16195
16196 - allow $1 pingd_port_t:tcp_socket name_connect;
16197 + allow $1 pegasus_https_port_t:tcp_socket name_connect;
16198 ')
16199
16200
16201 ########################################
16202 ## <summary>
16203 -## Send pingd_client packets.
16204 +## Send pegasus_https_client packets.
16205 ## </summary>
16206 ## <param name="domain">
16207 ## <summary>
16208 @@ -62276,17 +63162,17 @@ interface(`corenet_tcp_connect_pingd_port',`
16209 ## </param>
16210 ## <infoflow type="write" weight="10"/>
16211 #
16212 -interface(`corenet_send_pingd_client_packets',`
16213 +interface(`corenet_send_pegasus_https_client_packets',`
16214 gen_require(`
16215 - type pingd_client_packet_t;
16216 + type pegasus_https_client_packet_t;
16217 ')
16218
16219 - allow $1 pingd_client_packet_t:packet send;
16220 + allow $1 pegasus_https_client_packet_t:packet send;
16221 ')
16222
16223 ########################################
16224 ## <summary>
16225 -## Do not audit attempts to send pingd_client packets.
16226 +## Do not audit attempts to send pegasus_https_client packets.
16227 ## </summary>
16228 ## <param name="domain">
16229 ## <summary>
16230 @@ -62295,17 +63181,17 @@ interface(`corenet_send_pingd_client_packets',`
16231 ## </param>
16232 ## <infoflow type="none"/>
16233 #
16234 -interface(`corenet_dontaudit_send_pingd_client_packets',`
16235 +interface(`corenet_dontaudit_send_pegasus_https_client_packets',`
16236 gen_require(`
16237 - type pingd_client_packet_t;
16238 + type pegasus_https_client_packet_t;
16239 ')
16240
16241 - dontaudit $1 pingd_client_packet_t:packet send;
16242 + dontaudit $1 pegasus_https_client_packet_t:packet send;
16243 ')
16244
16245 ########################################
16246 ## <summary>
16247 -## Receive pingd_client packets.
16248 +## Receive pegasus_https_client packets.
16249 ## </summary>
16250 ## <param name="domain">
16251 ## <summary>
16252 @@ -62314,17 +63200,17 @@ interface(`corenet_dontaudit_send_pingd_client_packets',`
16253 ## </param>
16254 ## <infoflow type="read" weight="10"/>
16255 #
16256 -interface(`corenet_receive_pingd_client_packets',`
16257 +interface(`corenet_receive_pegasus_https_client_packets',`
16258 gen_require(`
16259 - type pingd_client_packet_t;
16260 + type pegasus_https_client_packet_t;
16261 ')
16262
16263 - allow $1 pingd_client_packet_t:packet recv;
16264 + allow $1 pegasus_https_client_packet_t:packet recv;
16265 ')
16266
16267 ########################################
16268 ## <summary>
16269 -## Do not audit attempts to receive pingd_client packets.
16270 +## Do not audit attempts to receive pegasus_https_client packets.
16271 ## </summary>
16272 ## <param name="domain">
16273 ## <summary>
16274 @@ -62333,17 +63219,17 @@ interface(`corenet_receive_pingd_client_packets',`
16275 ## </param>
16276 ## <infoflow type="none"/>
16277 #
16278 -interface(`corenet_dontaudit_receive_pingd_client_packets',`
16279 +interface(`corenet_dontaudit_receive_pegasus_https_client_packets',`
16280 gen_require(`
16281 - type pingd_client_packet_t;
16282 + type pegasus_https_client_packet_t;
16283 ')
16284
16285 - dontaudit $1 pingd_client_packet_t:packet recv;
16286 + dontaudit $1 pegasus_https_client_packet_t:packet recv;
16287 ')
16288
16289 ########################################
16290 ## <summary>
16291 -## Send and receive pingd_client packets.
16292 +## Send and receive pegasus_https_client packets.
16293 ## </summary>
16294 ## <param name="domain">
16295 ## <summary>
16296 @@ -62352,14 +63238,14 @@ interface(`corenet_dontaudit_receive_pingd_client_packets',`
16297 ## </param>
16298 ## <infoflow type="both" weight="10"/>
16299 #
16300 -interface(`corenet_sendrecv_pingd_client_packets',`
16301 - corenet_send_pingd_client_packets($1)
16302 - corenet_receive_pingd_client_packets($1)
16303 +interface(`corenet_sendrecv_pegasus_https_client_packets',`
16304 + corenet_send_pegasus_https_client_packets($1)
16305 + corenet_receive_pegasus_https_client_packets($1)
16306 ')
16307
16308 ########################################
16309 ## <summary>
16310 -## Do not audit attempts to send and receive pingd_client packets.
16311 +## Do not audit attempts to send and receive pegasus_https_client packets.
16312 ## </summary>
16313 ## <param name="domain">
16314 ## <summary>
16315 @@ -62368,14 +63254,14 @@ interface(`corenet_sendrecv_pingd_client_packets',`
16316 ## </param>
16317 ## <infoflow type="none"/>
16318 #
16319 -interface(`corenet_dontaudit_sendrecv_pingd_client_packets',`
16320 - corenet_dontaudit_send_pingd_client_packets($1)
16321 - corenet_dontaudit_receive_pingd_client_packets($1)
16322 +interface(`corenet_dontaudit_sendrecv_pegasus_https_client_packets',`
16323 + corenet_dontaudit_send_pegasus_https_client_packets($1)
16324 + corenet_dontaudit_receive_pegasus_https_client_packets($1)
16325 ')
16326
16327 ########################################
16328 ## <summary>
16329 -## Relabel packets to pingd_client the packet type.
16330 +## Relabel packets to pegasus_https_client the packet type.
16331 ## </summary>
16332 ## <param name="domain">
16333 ## <summary>
16334 @@ -62383,18 +63269,18 @@ interface(`corenet_dontaudit_sendrecv_pingd_client_packets',`
16335 ## </summary>
16336 ## </param>
16337 #
16338 -interface(`corenet_relabelto_pingd_client_packets',`
16339 +interface(`corenet_relabelto_pegasus_https_client_packets',`
16340 gen_require(`
16341 - type pingd_client_packet_t;
16342 + type pegasus_https_client_packet_t;
16343 ')
16344
16345 - allow $1 pingd_client_packet_t:packet relabelto;
16346 + allow $1 pegasus_https_client_packet_t:packet relabelto;
16347 ')
16348
16349
16350 ########################################
16351 ## <summary>
16352 -## Send pingd_server packets.
16353 +## Send pegasus_https_server packets.
16354 ## </summary>
16355 ## <param name="domain">
16356 ## <summary>
16357 @@ -62403,17 +63289,17 @@ interface(`corenet_relabelto_pingd_client_packets',`
16358 ## </param>
16359 ## <infoflow type="write" weight="10"/>
16360 #
16361 -interface(`corenet_send_pingd_server_packets',`
16362 +interface(`corenet_send_pegasus_https_server_packets',`
16363 gen_require(`
16364 - type pingd_server_packet_t;
16365 + type pegasus_https_server_packet_t;
16366 ')
16367
16368 - allow $1 pingd_server_packet_t:packet send;
16369 + allow $1 pegasus_https_server_packet_t:packet send;
16370 ')
16371
16372 ########################################
16373 ## <summary>
16374 -## Do not audit attempts to send pingd_server packets.
16375 +## Do not audit attempts to send pegasus_https_server packets.
16376 ## </summary>
16377 ## <param name="domain">
16378 ## <summary>
16379 @@ -62422,17 +63308,17 @@ interface(`corenet_send_pingd_server_packets',`
16380 ## </param>
16381 ## <infoflow type="none"/>
16382 #
16383 -interface(`corenet_dontaudit_send_pingd_server_packets',`
16384 +interface(`corenet_dontaudit_send_pegasus_https_server_packets',`
16385 gen_require(`
16386 - type pingd_server_packet_t;
16387 + type pegasus_https_server_packet_t;
16388 ')
16389
16390 - dontaudit $1 pingd_server_packet_t:packet send;
16391 + dontaudit $1 pegasus_https_server_packet_t:packet send;
16392 ')
16393
16394 ########################################
16395 ## <summary>
16396 -## Receive pingd_server packets.
16397 +## Receive pegasus_https_server packets.
16398 ## </summary>
16399 ## <param name="domain">
16400 ## <summary>
16401 @@ -62441,17 +63327,17 @@ interface(`corenet_dontaudit_send_pingd_server_packets',`
16402 ## </param>
16403 ## <infoflow type="read" weight="10"/>
16404 #
16405 -interface(`corenet_receive_pingd_server_packets',`
16406 +interface(`corenet_receive_pegasus_https_server_packets',`
16407 gen_require(`
16408 - type pingd_server_packet_t;
16409 + type pegasus_https_server_packet_t;
16410 ')
16411
16412 - allow $1 pingd_server_packet_t:packet recv;
16413 + allow $1 pegasus_https_server_packet_t:packet recv;
16414 ')
16415
16416 ########################################
16417 ## <summary>
16418 -## Do not audit attempts to receive pingd_server packets.
16419 +## Do not audit attempts to receive pegasus_https_server packets.
16420 ## </summary>
16421 ## <param name="domain">
16422 ## <summary>
16423 @@ -62460,17 +63346,17 @@ interface(`corenet_receive_pingd_server_packets',`
16424 ## </param>
16425 ## <infoflow type="none"/>
16426 #
16427 -interface(`corenet_dontaudit_receive_pingd_server_packets',`
16428 +interface(`corenet_dontaudit_receive_pegasus_https_server_packets',`
16429 gen_require(`
16430 - type pingd_server_packet_t;
16431 + type pegasus_https_server_packet_t;
16432 ')
16433
16434 - dontaudit $1 pingd_server_packet_t:packet recv;
16435 + dontaudit $1 pegasus_https_server_packet_t:packet recv;
16436 ')
16437
16438 ########################################
16439 ## <summary>
16440 -## Send and receive pingd_server packets.
16441 +## Send and receive pegasus_https_server packets.
16442 ## </summary>
16443 ## <param name="domain">
16444 ## <summary>
16445 @@ -62479,14 +63365,14 @@ interface(`corenet_dontaudit_receive_pingd_server_packets',`
16446 ## </param>
16447 ## <infoflow type="both" weight="10"/>
16448 #
16449 -interface(`corenet_sendrecv_pingd_server_packets',`
16450 - corenet_send_pingd_server_packets($1)
16451 - corenet_receive_pingd_server_packets($1)
16452 +interface(`corenet_sendrecv_pegasus_https_server_packets',`
16453 + corenet_send_pegasus_https_server_packets($1)
16454 + corenet_receive_pegasus_https_server_packets($1)
16455 ')
16456
16457 ########################################
16458 ## <summary>
16459 -## Do not audit attempts to send and receive pingd_server packets.
16460 +## Do not audit attempts to send and receive pegasus_https_server packets.
16461 ## </summary>
16462 ## <param name="domain">
16463 ## <summary>
16464 @@ -62495,14 +63381,14 @@ interface(`corenet_sendrecv_pingd_server_packets',`
16465 ## </param>
16466 ## <infoflow type="none"/>
16467 #
16468 -interface(`corenet_dontaudit_sendrecv_pingd_server_packets',`
16469 - corenet_dontaudit_send_pingd_server_packets($1)
16470 - corenet_dontaudit_receive_pingd_server_packets($1)
16471 +interface(`corenet_dontaudit_sendrecv_pegasus_https_server_packets',`
16472 + corenet_dontaudit_send_pegasus_https_server_packets($1)
16473 + corenet_dontaudit_receive_pegasus_https_server_packets($1)
16474 ')
16475
16476 ########################################
16477 ## <summary>
16478 -## Relabel packets to pingd_server the packet type.
16479 +## Relabel packets to pegasus_https_server the packet type.
16480 ## </summary>
16481 ## <param name="domain">
16482 ## <summary>
16483 @@ -62510,12 +63396,12 @@ interface(`corenet_dontaudit_sendrecv_pingd_server_packets',`
16484 ## </summary>
16485 ## </param>
16486 #
16487 -interface(`corenet_relabelto_pingd_server_packets',`
16488 +interface(`corenet_relabelto_pegasus_https_server_packets',`
16489 gen_require(`
16490 - type pingd_server_packet_t;
16491 + type pegasus_https_server_packet_t;
16492 ')
16493
16494 - allow $1 pingd_server_packet_t:packet relabelto;
16495 + allow $1 pegasus_https_server_packet_t:packet relabelto;
16496 ')
16497
16498
16499 @@ -62523,7 +63409,7 @@ interface(`corenet_relabelto_pingd_server_packets',`
16500
16501 ########################################
16502 ## <summary>
16503 -## Send and receive TCP traffic on the pktcable_cops port.
16504 +## Send and receive TCP traffic on the pgpkeyserver port.
16505 ## </summary>
16506 ## <param name="domain">
16507 ## <summary>
16508 @@ -62532,17 +63418,17 @@ interface(`corenet_relabelto_pingd_server_packets',`
16509 ## </param>
16510 ## <infoflow type="both" weight="10"/>
16511 #
16512 -interface(`corenet_tcp_sendrecv_pktcable_cops_port',`
16513 +interface(`corenet_tcp_sendrecv_pgpkeyserver_port',`
16514 gen_require(`
16515 - type pktcable_cops_port_t;
16516 + type pgpkeyserver_port_t;
16517 ')
16518
16519 - allow $1 pktcable_cops_port_t:tcp_socket { send_msg recv_msg };
16520 + allow $1 pgpkeyserver_port_t:tcp_socket { send_msg recv_msg };
16521 ')
16522
16523 ########################################
16524 ## <summary>
16525 -## Send UDP traffic on the pktcable_cops port.
16526 +## Send UDP traffic on the pgpkeyserver port.
16527 ## </summary>
16528 ## <param name="domain">
16529 ## <summary>
16530 @@ -62551,17 +63437,17 @@ interface(`corenet_tcp_sendrecv_pktcable_cops_port',`
16531 ## </param>
16532 ## <infoflow type="write" weight="10"/>
16533 #
16534 -interface(`corenet_udp_send_pktcable_cops_port',`
16535 +interface(`corenet_udp_send_pgpkeyserver_port',`
16536 gen_require(`
16537 - type pktcable_cops_port_t;
16538 + type pgpkeyserver_port_t;
16539 ')
16540
16541 - allow $1 pktcable_cops_port_t:udp_socket send_msg;
16542 + allow $1 pgpkeyserver_port_t:udp_socket send_msg;
16543 ')
16544
16545 ########################################
16546 ## <summary>
16547 -## Do not audit attempts to send UDP traffic on the pktcable_cops port.
16548 +## Do not audit attempts to send UDP traffic on the pgpkeyserver port.
16549 ## </summary>
16550 ## <param name="domain">
16551 ## <summary>
16552 @@ -62570,17 +63456,17 @@ interface(`corenet_udp_send_pktcable_cops_port',`
16553 ## </param>
16554 ## <infoflow type="none"/>
16555 #
16556 -interface(`corenet_dontaudit_udp_send_pktcable_cops_port',`
16557 +interface(`corenet_dontaudit_udp_send_pgpkeyserver_port',`
16558 gen_require(`
16559 - type pktcable_cops_port_t;
16560 + type pgpkeyserver_port_t;
16561 ')
16562
16563 - dontaudit $1 pktcable_cops_port_t:udp_socket send_msg;
16564 + dontaudit $1 pgpkeyserver_port_t:udp_socket send_msg;
16565 ')
16566
16567 ########################################
16568 ## <summary>
16569 -## Receive UDP traffic on the pktcable_cops port.
16570 +## Receive UDP traffic on the pgpkeyserver port.
16571 ## </summary>
16572 ## <param name="domain">
16573 ## <summary>
16574 @@ -62589,17 +63475,17 @@ interface(`corenet_dontaudit_udp_send_pktcable_cops_port',`
16575 ## </param>
16576 ## <infoflow type="read" weight="10"/>
16577 #
16578 -interface(`corenet_udp_receive_pktcable_cops_port',`
16579 +interface(`corenet_udp_receive_pgpkeyserver_port',`
16580 gen_require(`
16581 - type pktcable_cops_port_t;
16582 + type pgpkeyserver_port_t;
16583 ')
16584
16585 - allow $1 pktcable_cops_port_t:udp_socket recv_msg;
16586 + allow $1 pgpkeyserver_port_t:udp_socket recv_msg;
16587 ')
16588
16589 ########################################
16590 ## <summary>
16591 -## Do not audit attempts to receive UDP traffic on the pktcable_cops port.
16592 +## Do not audit attempts to receive UDP traffic on the pgpkeyserver port.
16593 ## </summary>
16594 ## <param name="domain">
16595 ## <summary>
16596 @@ -62608,17 +63494,17 @@ interface(`corenet_udp_receive_pktcable_cops_port',`
16597 ## </param>
16598 ## <infoflow type="none"/>
16599 #
16600 -interface(`corenet_dontaudit_udp_receive_pktcable_cops_port',`
16601 +interface(`corenet_dontaudit_udp_receive_pgpkeyserver_port',`
16602 gen_require(`
16603 - type pktcable_cops_port_t;
16604 + type pgpkeyserver_port_t;
16605 ')
16606
16607 - dontaudit $1 pktcable_cops_port_t:udp_socket recv_msg;
16608 + dontaudit $1 pgpkeyserver_port_t:udp_socket recv_msg;
16609 ')
16610
16611 ########################################
16612 ## <summary>
16613 -## Send and receive UDP traffic on the pktcable_cops port.
16614 +## Send and receive UDP traffic on the pgpkeyserver port.
16615 ## </summary>
16616 ## <param name="domain">
16617 ## <summary>
16618 @@ -62627,15 +63513,15 @@ interface(`corenet_dontaudit_udp_receive_pktcable_cops_port',`
16619 ## </param>
16620 ## <infoflow type="both" weight="10"/>
16621 #
16622 -interface(`corenet_udp_sendrecv_pktcable_cops_port',`
16623 - corenet_udp_send_pktcable_cops_port($1)
16624 - corenet_udp_receive_pktcable_cops_port($1)
16625 +interface(`corenet_udp_sendrecv_pgpkeyserver_port',`
16626 + corenet_udp_send_pgpkeyserver_port($1)
16627 + corenet_udp_receive_pgpkeyserver_port($1)
16628 ')
16629
16630 ########################################
16631 ## <summary>
16632 ## Do not audit attempts to send and receive
16633 -## UDP traffic on the pktcable_cops port.
16634 +## UDP traffic on the pgpkeyserver port.
16635 ## </summary>
16636 ## <param name="domain">
16637 ## <summary>
16638 @@ -62644,14 +63530,14 @@ interface(`corenet_udp_sendrecv_pktcable_cops_port',`
16639 ## </param>
16640 ## <infoflow type="none"/>
16641 #
16642 -interface(`corenet_dontaudit_udp_sendrecv_pktcable_cops_port',`
16643 - corenet_dontaudit_udp_send_pktcable_cops_port($1)
16644 - corenet_dontaudit_udp_receive_pktcable_cops_port($1)
16645 +interface(`corenet_dontaudit_udp_sendrecv_pgpkeyserver_port',`
16646 + corenet_dontaudit_udp_send_pgpkeyserver_port($1)
16647 + corenet_dontaudit_udp_receive_pgpkeyserver_port($1)
16648 ')
16649
16650 ########################################
16651 ## <summary>
16652 -## Bind TCP sockets to the pktcable_cops port.
16653 +## Bind TCP sockets to the pgpkeyserver port.
16654 ## </summary>
16655 ## <param name="domain">
16656 ## <summary>
16657 @@ -62660,18 +63546,18 @@ interface(`corenet_dontaudit_udp_sendrecv_pktcable_cops_port',`
16658 ## </param>
16659 ## <infoflow type="none"/>
16660 #
16661 -interface(`corenet_tcp_bind_pktcable_cops_port',`
16662 +interface(`corenet_tcp_bind_pgpkeyserver_port',`
16663 gen_require(`
16664 - type pktcable_cops_port_t;
16665 + type pgpkeyserver_port_t;
16666 ')
16667
16668 - allow $1 pktcable_cops_port_t:tcp_socket name_bind;
16669 + allow $1 pgpkeyserver_port_t:tcp_socket name_bind;
16670
16671 ')
16672
16673 ########################################
16674 ## <summary>
16675 -## Bind UDP sockets to the pktcable_cops port.
16676 +## Bind UDP sockets to the pgpkeyserver port.
16677 ## </summary>
16678 ## <param name="domain">
16679 ## <summary>
16680 @@ -62680,18 +63566,18 @@ interface(`corenet_tcp_bind_pktcable_cops_port',`
16681 ## </param>
16682 ## <infoflow type="none"/>
16683 #
16684 -interface(`corenet_udp_bind_pktcable_cops_port',`
16685 +interface(`corenet_udp_bind_pgpkeyserver_port',`
16686 gen_require(`
16687 - type pktcable_cops_port_t;
16688 + type pgpkeyserver_port_t;
16689 ')
16690
16691 - allow $1 pktcable_cops_port_t:udp_socket name_bind;
16692 + allow $1 pgpkeyserver_port_t:udp_socket name_bind;
16693
16694 ')
16695
16696 ########################################
16697 ## <summary>
16698 -## Make a TCP connection to the pktcable_cops port.
16699 +## Make a TCP connection to the pgpkeyserver port.
16700 ## </summary>
16701 ## <param name="domain">
16702 ## <summary>
16703 @@ -62699,18 +63585,18 @@ interface(`corenet_udp_bind_pktcable_cops_port',`
16704 ## </summary>
16705 ## </param>
16706 #
16707 -interface(`corenet_tcp_connect_pktcable_cops_port',`
16708 +interface(`corenet_tcp_connect_pgpkeyserver_port',`
16709 gen_require(`
16710 - type pktcable_cops_port_t;
16711 + type pgpkeyserver_port_t;
16712 ')
16713
16714 - allow $1 pktcable_cops_port_t:tcp_socket name_connect;
16715 + allow $1 pgpkeyserver_port_t:tcp_socket name_connect;
16716 ')
16717
16718
16719 ########################################
16720 ## <summary>
16721 -## Send pktcable_cops_client packets.
16722 +## Send pgpkeyserver_client packets.
16723 ## </summary>
16724 ## <param name="domain">
16725 ## <summary>
16726 @@ -62719,17 +63605,17 @@ interface(`corenet_tcp_connect_pktcable_cops_port',`
16727 ## </param>
16728 ## <infoflow type="write" weight="10"/>
16729 #
16730 -interface(`corenet_send_pktcable_cops_client_packets',`
16731 +interface(`corenet_send_pgpkeyserver_client_packets',`
16732 gen_require(`
16733 - type pktcable_cops_client_packet_t;
16734 + type pgpkeyserver_client_packet_t;
16735 ')
16736
16737 - allow $1 pktcable_cops_client_packet_t:packet send;
16738 + allow $1 pgpkeyserver_client_packet_t:packet send;
16739 ')
16740
16741 ########################################
16742 ## <summary>
16743 -## Do not audit attempts to send pktcable_cops_client packets.
16744 +## Do not audit attempts to send pgpkeyserver_client packets.
16745 ## </summary>
16746 ## <param name="domain">
16747 ## <summary>
16748 @@ -62738,17 +63624,17 @@ interface(`corenet_send_pktcable_cops_client_packets',`
16749 ## </param>
16750 ## <infoflow type="none"/>
16751 #
16752 -interface(`corenet_dontaudit_send_pktcable_cops_client_packets',`
16753 +interface(`corenet_dontaudit_send_pgpkeyserver_client_packets',`
16754 gen_require(`
16755 - type pktcable_cops_client_packet_t;
16756 + type pgpkeyserver_client_packet_t;
16757 ')
16758
16759 - dontaudit $1 pktcable_cops_client_packet_t:packet send;
16760 + dontaudit $1 pgpkeyserver_client_packet_t:packet send;
16761 ')
16762
16763 ########################################
16764 ## <summary>
16765 -## Receive pktcable_cops_client packets.
16766 +## Receive pgpkeyserver_client packets.
16767 ## </summary>
16768 ## <param name="domain">
16769 ## <summary>
16770 @@ -62757,17 +63643,17 @@ interface(`corenet_dontaudit_send_pktcable_cops_client_packets',`
16771 ## </param>
16772 ## <infoflow type="read" weight="10"/>
16773 #
16774 -interface(`corenet_receive_pktcable_cops_client_packets',`
16775 +interface(`corenet_receive_pgpkeyserver_client_packets',`
16776 gen_require(`
16777 - type pktcable_cops_client_packet_t;
16778 + type pgpkeyserver_client_packet_t;
16779 ')
16780
16781 - allow $1 pktcable_cops_client_packet_t:packet recv;
16782 + allow $1 pgpkeyserver_client_packet_t:packet recv;
16783 ')
16784
16785 ########################################
16786 ## <summary>
16787 -## Do not audit attempts to receive pktcable_cops_client packets.
16788 +## Do not audit attempts to receive pgpkeyserver_client packets.
16789 ## </summary>
16790 ## <param name="domain">
16791 ## <summary>
16792 @@ -62776,17 +63662,17 @@ interface(`corenet_receive_pktcable_cops_client_packets',`
16793 ## </param>
16794 ## <infoflow type="none"/>
16795 #
16796 -interface(`corenet_dontaudit_receive_pktcable_cops_client_packets',`
16797 +interface(`corenet_dontaudit_receive_pgpkeyserver_client_packets',`
16798 gen_require(`
16799 - type pktcable_cops_client_packet_t;
16800 + type pgpkeyserver_client_packet_t;
16801 ')
16802
16803 - dontaudit $1 pktcable_cops_client_packet_t:packet recv;
16804 + dontaudit $1 pgpkeyserver_client_packet_t:packet recv;
16805 ')
16806
16807 ########################################
16808 ## <summary>
16809 -## Send and receive pktcable_cops_client packets.
16810 +## Send and receive pgpkeyserver_client packets.
16811 ## </summary>
16812 ## <param name="domain">
16813 ## <summary>
16814 @@ -62795,14 +63681,14 @@ interface(`corenet_dontaudit_receive_pktcable_cops_client_packets',`
16815 ## </param>
16816 ## <infoflow type="both" weight="10"/>
16817 #
16818 -interface(`corenet_sendrecv_pktcable_cops_client_packets',`
16819 - corenet_send_pktcable_cops_client_packets($1)
16820 - corenet_receive_pktcable_cops_client_packets($1)
16821 +interface(`corenet_sendrecv_pgpkeyserver_client_packets',`
16822 + corenet_send_pgpkeyserver_client_packets($1)
16823 + corenet_receive_pgpkeyserver_client_packets($1)
16824 ')
16825
16826 ########################################
16827 ## <summary>
16828 -## Do not audit attempts to send and receive pktcable_cops_client packets.
16829 +## Do not audit attempts to send and receive pgpkeyserver_client packets.
16830 ## </summary>
16831 ## <param name="domain">
16832 ## <summary>
16833 @@ -62811,14 +63697,14 @@ interface(`corenet_sendrecv_pktcable_cops_client_packets',`
16834 ## </param>
16835 ## <infoflow type="none"/>
16836 #
16837 -interface(`corenet_dontaudit_sendrecv_pktcable_cops_client_packets',`
16838 - corenet_dontaudit_send_pktcable_cops_client_packets($1)
16839 - corenet_dontaudit_receive_pktcable_cops_client_packets($1)
16840 +interface(`corenet_dontaudit_sendrecv_pgpkeyserver_client_packets',`
16841 + corenet_dontaudit_send_pgpkeyserver_client_packets($1)
16842 + corenet_dontaudit_receive_pgpkeyserver_client_packets($1)
16843 ')
16844
16845 ########################################
16846 ## <summary>
16847 -## Relabel packets to pktcable_cops_client the packet type.
16848 +## Relabel packets to pgpkeyserver_client the packet type.
16849 ## </summary>
16850 ## <param name="domain">
16851 ## <summary>
16852 @@ -62826,18 +63712,18 @@ interface(`corenet_dontaudit_sendrecv_pktcable_cops_client_packets',`
16853 ## </summary>
16854 ## </param>
16855 #
16856 -interface(`corenet_relabelto_pktcable_cops_client_packets',`
16857 +interface(`corenet_relabelto_pgpkeyserver_client_packets',`
16858 gen_require(`
16859 - type pktcable_cops_client_packet_t;
16860 + type pgpkeyserver_client_packet_t;
16861 ')
16862
16863 - allow $1 pktcable_cops_client_packet_t:packet relabelto;
16864 + allow $1 pgpkeyserver_client_packet_t:packet relabelto;
16865 ')
16866
16867
16868 ########################################
16869 ## <summary>
16870 -## Send pktcable_cops_server packets.
16871 +## Send pgpkeyserver_server packets.
16872 ## </summary>
16873 ## <param name="domain">
16874 ## <summary>
16875 @@ -62846,17 +63732,17 @@ interface(`corenet_relabelto_pktcable_cops_client_packets',`
16876 ## </param>
16877 ## <infoflow type="write" weight="10"/>
16878 #
16879 -interface(`corenet_send_pktcable_cops_server_packets',`
16880 +interface(`corenet_send_pgpkeyserver_server_packets',`
16881 gen_require(`
16882 - type pktcable_cops_server_packet_t;
16883 + type pgpkeyserver_server_packet_t;
16884 ')
16885
16886 - allow $1 pktcable_cops_server_packet_t:packet send;
16887 + allow $1 pgpkeyserver_server_packet_t:packet send;
16888 ')
16889
16890 ########################################
16891 ## <summary>
16892 -## Do not audit attempts to send pktcable_cops_server packets.
16893 +## Do not audit attempts to send pgpkeyserver_server packets.
16894 ## </summary>
16895 ## <param name="domain">
16896 ## <summary>
16897 @@ -62865,17 +63751,17 @@ interface(`corenet_send_pktcable_cops_server_packets',`
16898 ## </param>
16899 ## <infoflow type="none"/>
16900 #
16901 -interface(`corenet_dontaudit_send_pktcable_cops_server_packets',`
16902 +interface(`corenet_dontaudit_send_pgpkeyserver_server_packets',`
16903 gen_require(`
16904 - type pktcable_cops_server_packet_t;
16905 + type pgpkeyserver_server_packet_t;
16906 ')
16907
16908 - dontaudit $1 pktcable_cops_server_packet_t:packet send;
16909 + dontaudit $1 pgpkeyserver_server_packet_t:packet send;
16910 ')
16911
16912 ########################################
16913 ## <summary>
16914 -## Receive pktcable_cops_server packets.
16915 +## Receive pgpkeyserver_server packets.
16916 ## </summary>
16917 ## <param name="domain">
16918 ## <summary>
16919 @@ -62884,17 +63770,17 @@ interface(`corenet_dontaudit_send_pktcable_cops_server_packets',`
16920 ## </param>
16921 ## <infoflow type="read" weight="10"/>
16922 #
16923 -interface(`corenet_receive_pktcable_cops_server_packets',`
16924 +interface(`corenet_receive_pgpkeyserver_server_packets',`
16925 gen_require(`
16926 - type pktcable_cops_server_packet_t;
16927 + type pgpkeyserver_server_packet_t;
16928 ')
16929
16930 - allow $1 pktcable_cops_server_packet_t:packet recv;
16931 + allow $1 pgpkeyserver_server_packet_t:packet recv;
16932 ')
16933
16934 ########################################
16935 ## <summary>
16936 -## Do not audit attempts to receive pktcable_cops_server packets.
16937 +## Do not audit attempts to receive pgpkeyserver_server packets.
16938 ## </summary>
16939 ## <param name="domain">
16940 ## <summary>
16941 @@ -62903,17 +63789,17 @@ interface(`corenet_receive_pktcable_cops_server_packets',`
16942 ## </param>
16943 ## <infoflow type="none"/>
16944 #
16945 -interface(`corenet_dontaudit_receive_pktcable_cops_server_packets',`
16946 +interface(`corenet_dontaudit_receive_pgpkeyserver_server_packets',`
16947 gen_require(`
16948 - type pktcable_cops_server_packet_t;
16949 + type pgpkeyserver_server_packet_t;
16950 ')
16951
16952 - dontaudit $1 pktcable_cops_server_packet_t:packet recv;
16953 + dontaudit $1 pgpkeyserver_server_packet_t:packet recv;
16954 ')
16955
16956 ########################################
16957 ## <summary>
16958 -## Send and receive pktcable_cops_server packets.
16959 +## Send and receive pgpkeyserver_server packets.
16960 ## </summary>
16961 ## <param name="domain">
16962 ## <summary>
16963 @@ -62922,14 +63808,14 @@ interface(`corenet_dontaudit_receive_pktcable_cops_server_packets',`
16964 ## </param>
16965 ## <infoflow type="both" weight="10"/>
16966 #
16967 -interface(`corenet_sendrecv_pktcable_cops_server_packets',`
16968 - corenet_send_pktcable_cops_server_packets($1)
16969 - corenet_receive_pktcable_cops_server_packets($1)
16970 +interface(`corenet_sendrecv_pgpkeyserver_server_packets',`
16971 + corenet_send_pgpkeyserver_server_packets($1)
16972 + corenet_receive_pgpkeyserver_server_packets($1)
16973 ')
16974
16975 ########################################
16976 ## <summary>
16977 -## Do not audit attempts to send and receive pktcable_cops_server packets.
16978 +## Do not audit attempts to send and receive pgpkeyserver_server packets.
16979 ## </summary>
16980 ## <param name="domain">
16981 ## <summary>
16982 @@ -62938,14 +63824,14 @@ interface(`corenet_sendrecv_pktcable_cops_server_packets',`
16983 ## </param>
16984 ## <infoflow type="none"/>
16985 #
16986 -interface(`corenet_dontaudit_sendrecv_pktcable_cops_server_packets',`
16987 - corenet_dontaudit_send_pktcable_cops_server_packets($1)
16988 - corenet_dontaudit_receive_pktcable_cops_server_packets($1)
16989 +interface(`corenet_dontaudit_sendrecv_pgpkeyserver_server_packets',`
16990 + corenet_dontaudit_send_pgpkeyserver_server_packets($1)
16991 + corenet_dontaudit_receive_pgpkeyserver_server_packets($1)
16992 ')
16993
16994 ########################################
16995 ## <summary>
16996 -## Relabel packets to pktcable_cops_server the packet type.
16997 +## Relabel packets to pgpkeyserver_server the packet type.
16998 ## </summary>
16999 ## <param name="domain">
17000 ## <summary>
17001 @@ -62953,12 +63839,12 @@ interface(`corenet_dontaudit_sendrecv_pktcable_cops_server_packets',`
17002 ## </summary>
17003 ## </param>
17004 #
17005 -interface(`corenet_relabelto_pktcable_cops_server_packets',`
17006 +interface(`corenet_relabelto_pgpkeyserver_server_packets',`
17007 gen_require(`
17008 - type pktcable_cops_server_packet_t;
17009 + type pgpkeyserver_server_packet_t;
17010 ')
17011
17012 - allow $1 pktcable_cops_server_packet_t:packet relabelto;
17013 + allow $1 pgpkeyserver_server_packet_t:packet relabelto;
17014 ')
17015
17016
17017 @@ -62966,7 +63852,7 @@ interface(`corenet_relabelto_pktcable_cops_server_packets',`
17018
17019 ########################################
17020 ## <summary>
17021 -## Send and receive TCP traffic on the pop port.
17022 +## Send and receive TCP traffic on the pingd port.
17023 ## </summary>
17024 ## <param name="domain">
17025 ## <summary>
17026 @@ -62975,17 +63861,17 @@ interface(`corenet_relabelto_pktcable_cops_server_packets',`
17027 ## </param>
17028 ## <infoflow type="both" weight="10"/>
17029 #
17030 -interface(`corenet_tcp_sendrecv_pop_port',`
17031 +interface(`corenet_tcp_sendrecv_pingd_port',`
17032 gen_require(`
17033 - type pop_port_t;
17034 + type pingd_port_t;
17035 ')
17036
17037 - allow $1 pop_port_t:tcp_socket { send_msg recv_msg };
17038 + allow $1 pingd_port_t:tcp_socket { send_msg recv_msg };
17039 ')
17040
17041 ########################################
17042 ## <summary>
17043 -## Send UDP traffic on the pop port.
17044 +## Send UDP traffic on the pingd port.
17045 ## </summary>
17046 ## <param name="domain">
17047 ## <summary>
17048 @@ -62994,17 +63880,17 @@ interface(`corenet_tcp_sendrecv_pop_port',`
17049 ## </param>
17050 ## <infoflow type="write" weight="10"/>
17051 #
17052 -interface(`corenet_udp_send_pop_port',`
17053 +interface(`corenet_udp_send_pingd_port',`
17054 gen_require(`
17055 - type pop_port_t;
17056 + type pingd_port_t;
17057 ')
17058
17059 - allow $1 pop_port_t:udp_socket send_msg;
17060 + allow $1 pingd_port_t:udp_socket send_msg;
17061 ')
17062
17063 ########################################
17064 ## <summary>
17065 -## Do not audit attempts to send UDP traffic on the pop port.
17066 +## Do not audit attempts to send UDP traffic on the pingd port.
17067 ## </summary>
17068 ## <param name="domain">
17069 ## <summary>
17070 @@ -63013,17 +63899,17 @@ interface(`corenet_udp_send_pop_port',`
17071 ## </param>
17072 ## <infoflow type="none"/>
17073 #
17074 -interface(`corenet_dontaudit_udp_send_pop_port',`
17075 +interface(`corenet_dontaudit_udp_send_pingd_port',`
17076 gen_require(`
17077 - type pop_port_t;
17078 + type pingd_port_t;
17079 ')
17080
17081 - dontaudit $1 pop_port_t:udp_socket send_msg;
17082 + dontaudit $1 pingd_port_t:udp_socket send_msg;
17083 ')
17084
17085 ########################################
17086 ## <summary>
17087 -## Receive UDP traffic on the pop port.
17088 +## Receive UDP traffic on the pingd port.
17089 ## </summary>
17090 ## <param name="domain">
17091 ## <summary>
17092 @@ -63032,17 +63918,17 @@ interface(`corenet_dontaudit_udp_send_pop_port',`
17093 ## </param>
17094 ## <infoflow type="read" weight="10"/>
17095 #
17096 -interface(`corenet_udp_receive_pop_port',`
17097 +interface(`corenet_udp_receive_pingd_port',`
17098 gen_require(`
17099 - type pop_port_t;
17100 + type pingd_port_t;
17101 ')
17102
17103 - allow $1 pop_port_t:udp_socket recv_msg;
17104 + allow $1 pingd_port_t:udp_socket recv_msg;
17105 ')
17106
17107 ########################################
17108 ## <summary>
17109 -## Do not audit attempts to receive UDP traffic on the pop port.
17110 +## Do not audit attempts to receive UDP traffic on the pingd port.
17111 ## </summary>
17112 ## <param name="domain">
17113 ## <summary>
17114 @@ -63051,17 +63937,17 @@ interface(`corenet_udp_receive_pop_port',`
17115 ## </param>
17116 ## <infoflow type="none"/>
17117 #
17118 -interface(`corenet_dontaudit_udp_receive_pop_port',`
17119 +interface(`corenet_dontaudit_udp_receive_pingd_port',`
17120 gen_require(`
17121 - type pop_port_t;
17122 + type pingd_port_t;
17123 ')
17124
17125 - dontaudit $1 pop_port_t:udp_socket recv_msg;
17126 + dontaudit $1 pingd_port_t:udp_socket recv_msg;
17127 ')
17128
17129 ########################################
17130 ## <summary>
17131 -## Send and receive UDP traffic on the pop port.
17132 +## Send and receive UDP traffic on the pingd port.
17133 ## </summary>
17134 ## <param name="domain">
17135 ## <summary>
17136 @@ -63070,15 +63956,15 @@ interface(`corenet_dontaudit_udp_receive_pop_port',`
17137 ## </param>
17138 ## <infoflow type="both" weight="10"/>
17139 #
17140 -interface(`corenet_udp_sendrecv_pop_port',`
17141 - corenet_udp_send_pop_port($1)
17142 - corenet_udp_receive_pop_port($1)
17143 +interface(`corenet_udp_sendrecv_pingd_port',`
17144 + corenet_udp_send_pingd_port($1)
17145 + corenet_udp_receive_pingd_port($1)
17146 ')
17147
17148 ########################################
17149 ## <summary>
17150 ## Do not audit attempts to send and receive
17151 -## UDP traffic on the pop port.
17152 +## UDP traffic on the pingd port.
17153 ## </summary>
17154 ## <param name="domain">
17155 ## <summary>
17156 @@ -63087,14 +63973,14 @@ interface(`corenet_udp_sendrecv_pop_port',`
17157 ## </param>
17158 ## <infoflow type="none"/>
17159 #
17160 -interface(`corenet_dontaudit_udp_sendrecv_pop_port',`
17161 - corenet_dontaudit_udp_send_pop_port($1)
17162 - corenet_dontaudit_udp_receive_pop_port($1)
17163 +interface(`corenet_dontaudit_udp_sendrecv_pingd_port',`
17164 + corenet_dontaudit_udp_send_pingd_port($1)
17165 + corenet_dontaudit_udp_receive_pingd_port($1)
17166 ')
17167
17168 ########################################
17169 ## <summary>
17170 -## Bind TCP sockets to the pop port.
17171 +## Bind TCP sockets to the pingd port.
17172 ## </summary>
17173 ## <param name="domain">
17174 ## <summary>
17175 @@ -63103,18 +63989,18 @@ interface(`corenet_dontaudit_udp_sendrecv_pop_port',`
17176 ## </param>
17177 ## <infoflow type="none"/>
17178 #
17179 -interface(`corenet_tcp_bind_pop_port',`
17180 +interface(`corenet_tcp_bind_pingd_port',`
17181 gen_require(`
17182 - type pop_port_t;
17183 + type pingd_port_t;
17184 ')
17185
17186 - allow $1 pop_port_t:tcp_socket name_bind;
17187 - allow $1 self:capability net_bind_service;
17188 + allow $1 pingd_port_t:tcp_socket name_bind;
17189 +
17190 ')
17191
17192 ########################################
17193 ## <summary>
17194 -## Bind UDP sockets to the pop port.
17195 +## Bind UDP sockets to the pingd port.
17196 ## </summary>
17197 ## <param name="domain">
17198 ## <summary>
17199 @@ -63123,18 +64009,18 @@ interface(`corenet_tcp_bind_pop_port',`
17200 ## </param>
17201 ## <infoflow type="none"/>
17202 #
17203 -interface(`corenet_udp_bind_pop_port',`
17204 +interface(`corenet_udp_bind_pingd_port',`
17205 gen_require(`
17206 - type pop_port_t;
17207 + type pingd_port_t;
17208 ')
17209
17210 - allow $1 pop_port_t:udp_socket name_bind;
17211 - allow $1 self:capability net_bind_service;
17212 + allow $1 pingd_port_t:udp_socket name_bind;
17213 +
17214 ')
17215
17216 ########################################
17217 ## <summary>
17218 -## Make a TCP connection to the pop port.
17219 +## Make a TCP connection to the pingd port.
17220 ## </summary>
17221 ## <param name="domain">
17222 ## <summary>
17223 @@ -63142,18 +64028,18 @@ interface(`corenet_udp_bind_pop_port',`
17224 ## </summary>
17225 ## </param>
17226 #
17227 -interface(`corenet_tcp_connect_pop_port',`
17228 +interface(`corenet_tcp_connect_pingd_port',`
17229 gen_require(`
17230 - type pop_port_t;
17231 + type pingd_port_t;
17232 ')
17233
17234 - allow $1 pop_port_t:tcp_socket name_connect;
17235 + allow $1 pingd_port_t:tcp_socket name_connect;
17236 ')
17237
17238
17239 ########################################
17240 ## <summary>
17241 -## Send pop_client packets.
17242 +## Send pingd_client packets.
17243 ## </summary>
17244 ## <param name="domain">
17245 ## <summary>
17246 @@ -63162,17 +64048,17 @@ interface(`corenet_tcp_connect_pop_port',`
17247 ## </param>
17248 ## <infoflow type="write" weight="10"/>
17249 #
17250 -interface(`corenet_send_pop_client_packets',`
17251 +interface(`corenet_send_pingd_client_packets',`
17252 gen_require(`
17253 - type pop_client_packet_t;
17254 + type pingd_client_packet_t;
17255 ')
17256
17257 - allow $1 pop_client_packet_t:packet send;
17258 + allow $1 pingd_client_packet_t:packet send;
17259 ')
17260
17261 ########################################
17262 ## <summary>
17263 -## Do not audit attempts to send pop_client packets.
17264 +## Do not audit attempts to send pingd_client packets.
17265 ## </summary>
17266 ## <param name="domain">
17267 ## <summary>
17268 @@ -63181,17 +64067,17 @@ interface(`corenet_send_pop_client_packets',`
17269 ## </param>
17270 ## <infoflow type="none"/>
17271 #
17272 -interface(`corenet_dontaudit_send_pop_client_packets',`
17273 +interface(`corenet_dontaudit_send_pingd_client_packets',`
17274 gen_require(`
17275 - type pop_client_packet_t;
17276 + type pingd_client_packet_t;
17277 ')
17278
17279 - dontaudit $1 pop_client_packet_t:packet send;
17280 + dontaudit $1 pingd_client_packet_t:packet send;
17281 ')
17282
17283 ########################################
17284 ## <summary>
17285 -## Receive pop_client packets.
17286 +## Receive pingd_client packets.
17287 ## </summary>
17288 ## <param name="domain">
17289 ## <summary>
17290 @@ -63200,17 +64086,17 @@ interface(`corenet_dontaudit_send_pop_client_packets',`
17291 ## </param>
17292 ## <infoflow type="read" weight="10"/>
17293 #
17294 -interface(`corenet_receive_pop_client_packets',`
17295 +interface(`corenet_receive_pingd_client_packets',`
17296 gen_require(`
17297 - type pop_client_packet_t;
17298 + type pingd_client_packet_t;
17299 ')
17300
17301 - allow $1 pop_client_packet_t:packet recv;
17302 + allow $1 pingd_client_packet_t:packet recv;
17303 ')
17304
17305 ########################################
17306 ## <summary>
17307 -## Do not audit attempts to receive pop_client packets.
17308 +## Do not audit attempts to receive pingd_client packets.
17309 ## </summary>
17310 ## <param name="domain">
17311 ## <summary>
17312 @@ -63219,17 +64105,17 @@ interface(`corenet_receive_pop_client_packets',`
17313 ## </param>
17314 ## <infoflow type="none"/>
17315 #
17316 -interface(`corenet_dontaudit_receive_pop_client_packets',`
17317 +interface(`corenet_dontaudit_receive_pingd_client_packets',`
17318 gen_require(`
17319 - type pop_client_packet_t;
17320 + type pingd_client_packet_t;
17321 ')
17322
17323 - dontaudit $1 pop_client_packet_t:packet recv;
17324 + dontaudit $1 pingd_client_packet_t:packet recv;
17325 ')
17326
17327 ########################################
17328 ## <summary>
17329 -## Send and receive pop_client packets.
17330 +## Send and receive pingd_client packets.
17331 ## </summary>
17332 ## <param name="domain">
17333 ## <summary>
17334 @@ -63238,14 +64124,14 @@ interface(`corenet_dontaudit_receive_pop_client_packets',`
17335 ## </param>
17336 ## <infoflow type="both" weight="10"/>
17337 #
17338 -interface(`corenet_sendrecv_pop_client_packets',`
17339 - corenet_send_pop_client_packets($1)
17340 - corenet_receive_pop_client_packets($1)
17341 +interface(`corenet_sendrecv_pingd_client_packets',`
17342 + corenet_send_pingd_client_packets($1)
17343 + corenet_receive_pingd_client_packets($1)
17344 ')
17345
17346 ########################################
17347 ## <summary>
17348 -## Do not audit attempts to send and receive pop_client packets.
17349 +## Do not audit attempts to send and receive pingd_client packets.
17350 ## </summary>
17351 ## <param name="domain">
17352 ## <summary>
17353 @@ -63254,14 +64140,14 @@ interface(`corenet_sendrecv_pop_client_packets',`
17354 ## </param>
17355 ## <infoflow type="none"/>
17356 #
17357 -interface(`corenet_dontaudit_sendrecv_pop_client_packets',`
17358 - corenet_dontaudit_send_pop_client_packets($1)
17359 - corenet_dontaudit_receive_pop_client_packets($1)
17360 +interface(`corenet_dontaudit_sendrecv_pingd_client_packets',`
17361 + corenet_dontaudit_send_pingd_client_packets($1)
17362 + corenet_dontaudit_receive_pingd_client_packets($1)
17363 ')
17364
17365 ########################################
17366 ## <summary>
17367 -## Relabel packets to pop_client the packet type.
17368 +## Relabel packets to pingd_client the packet type.
17369 ## </summary>
17370 ## <param name="domain">
17371 ## <summary>
17372 @@ -63269,18 +64155,18 @@ interface(`corenet_dontaudit_sendrecv_pop_client_packets',`
17373 ## </summary>
17374 ## </param>
17375 #
17376 -interface(`corenet_relabelto_pop_client_packets',`
17377 +interface(`corenet_relabelto_pingd_client_packets',`
17378 gen_require(`
17379 - type pop_client_packet_t;
17380 + type pingd_client_packet_t;
17381 ')
17382
17383 - allow $1 pop_client_packet_t:packet relabelto;
17384 + allow $1 pingd_client_packet_t:packet relabelto;
17385 ')
17386
17387
17388 ########################################
17389 ## <summary>
17390 -## Send pop_server packets.
17391 +## Send pingd_server packets.
17392 ## </summary>
17393 ## <param name="domain">
17394 ## <summary>
17395 @@ -63289,17 +64175,17 @@ interface(`corenet_relabelto_pop_client_packets',`
17396 ## </param>
17397 ## <infoflow type="write" weight="10"/>
17398 #
17399 -interface(`corenet_send_pop_server_packets',`
17400 +interface(`corenet_send_pingd_server_packets',`
17401 gen_require(`
17402 - type pop_server_packet_t;
17403 + type pingd_server_packet_t;
17404 ')
17405
17406 - allow $1 pop_server_packet_t:packet send;
17407 + allow $1 pingd_server_packet_t:packet send;
17408 ')
17409
17410 ########################################
17411 ## <summary>
17412 -## Do not audit attempts to send pop_server packets.
17413 +## Do not audit attempts to send pingd_server packets.
17414 ## </summary>
17415 ## <param name="domain">
17416 ## <summary>
17417 @@ -63308,17 +64194,17 @@ interface(`corenet_send_pop_server_packets',`
17418 ## </param>
17419 ## <infoflow type="none"/>
17420 #
17421 -interface(`corenet_dontaudit_send_pop_server_packets',`
17422 +interface(`corenet_dontaudit_send_pingd_server_packets',`
17423 gen_require(`
17424 - type pop_server_packet_t;
17425 + type pingd_server_packet_t;
17426 ')
17427
17428 - dontaudit $1 pop_server_packet_t:packet send;
17429 + dontaudit $1 pingd_server_packet_t:packet send;
17430 ')
17431
17432 ########################################
17433 ## <summary>
17434 -## Receive pop_server packets.
17435 +## Receive pingd_server packets.
17436 ## </summary>
17437 ## <param name="domain">
17438 ## <summary>
17439 @@ -63327,17 +64213,17 @@ interface(`corenet_dontaudit_send_pop_server_packets',`
17440 ## </param>
17441 ## <infoflow type="read" weight="10"/>
17442 #
17443 -interface(`corenet_receive_pop_server_packets',`
17444 +interface(`corenet_receive_pingd_server_packets',`
17445 gen_require(`
17446 - type pop_server_packet_t;
17447 + type pingd_server_packet_t;
17448 ')
17449
17450 - allow $1 pop_server_packet_t:packet recv;
17451 + allow $1 pingd_server_packet_t:packet recv;
17452 ')
17453
17454 ########################################
17455 ## <summary>
17456 -## Do not audit attempts to receive pop_server packets.
17457 +## Do not audit attempts to receive pingd_server packets.
17458 ## </summary>
17459 ## <param name="domain">
17460 ## <summary>
17461 @@ -63346,17 +64232,17 @@ interface(`corenet_receive_pop_server_packets',`
17462 ## </param>
17463 ## <infoflow type="none"/>
17464 #
17465 -interface(`corenet_dontaudit_receive_pop_server_packets',`
17466 +interface(`corenet_dontaudit_receive_pingd_server_packets',`
17467 gen_require(`
17468 - type pop_server_packet_t;
17469 + type pingd_server_packet_t;
17470 ')
17471
17472 - dontaudit $1 pop_server_packet_t:packet recv;
17473 + dontaudit $1 pingd_server_packet_t:packet recv;
17474 ')
17475
17476 ########################################
17477 ## <summary>
17478 -## Send and receive pop_server packets.
17479 +## Send and receive pingd_server packets.
17480 ## </summary>
17481 ## <param name="domain">
17482 ## <summary>
17483 @@ -63365,14 +64251,14 @@ interface(`corenet_dontaudit_receive_pop_server_packets',`
17484 ## </param>
17485 ## <infoflow type="both" weight="10"/>
17486 #
17487 -interface(`corenet_sendrecv_pop_server_packets',`
17488 - corenet_send_pop_server_packets($1)
17489 - corenet_receive_pop_server_packets($1)
17490 +interface(`corenet_sendrecv_pingd_server_packets',`
17491 + corenet_send_pingd_server_packets($1)
17492 + corenet_receive_pingd_server_packets($1)
17493 ')
17494
17495 ########################################
17496 ## <summary>
17497 -## Do not audit attempts to send and receive pop_server packets.
17498 +## Do not audit attempts to send and receive pingd_server packets.
17499 ## </summary>
17500 ## <param name="domain">
17501 ## <summary>
17502 @@ -63381,14 +64267,14 @@ interface(`corenet_sendrecv_pop_server_packets',`
17503 ## </param>
17504 ## <infoflow type="none"/>
17505 #
17506 -interface(`corenet_dontaudit_sendrecv_pop_server_packets',`
17507 - corenet_dontaudit_send_pop_server_packets($1)
17508 - corenet_dontaudit_receive_pop_server_packets($1)
17509 +interface(`corenet_dontaudit_sendrecv_pingd_server_packets',`
17510 + corenet_dontaudit_send_pingd_server_packets($1)
17511 + corenet_dontaudit_receive_pingd_server_packets($1)
17512 ')
17513
17514 ########################################
17515 ## <summary>
17516 -## Relabel packets to pop_server the packet type.
17517 +## Relabel packets to pingd_server the packet type.
17518 ## </summary>
17519 ## <param name="domain">
17520 ## <summary>
17521 @@ -63396,12 +64282,12 @@ interface(`corenet_dontaudit_sendrecv_pop_server_packets',`
17522 ## </summary>
17523 ## </param>
17524 #
17525 -interface(`corenet_relabelto_pop_server_packets',`
17526 +interface(`corenet_relabelto_pingd_server_packets',`
17527 gen_require(`
17528 - type pop_server_packet_t;
17529 + type pingd_server_packet_t;
17530 ')
17531
17532 - allow $1 pop_server_packet_t:packet relabelto;
17533 + allow $1 pingd_server_packet_t:packet relabelto;
17534 ')
17535
17536
17537 @@ -63409,7 +64295,7 @@ interface(`corenet_relabelto_pop_server_packets',`
17538
17539 ########################################
17540 ## <summary>
17541 -## Send and receive TCP traffic on the portmap port.
17542 +## Send and receive TCP traffic on the pktcable_cops port.
17543 ## </summary>
17544 ## <param name="domain">
17545 ## <summary>
17546 @@ -63418,17 +64304,17 @@ interface(`corenet_relabelto_pop_server_packets',`
17547 ## </param>
17548 ## <infoflow type="both" weight="10"/>
17549 #
17550 -interface(`corenet_tcp_sendrecv_portmap_port',`
17551 +interface(`corenet_tcp_sendrecv_pktcable_cops_port',`
17552 gen_require(`
17553 - type portmap_port_t;
17554 + type pktcable_cops_port_t;
17555 ')
17556
17557 - allow $1 portmap_port_t:tcp_socket { send_msg recv_msg };
17558 + allow $1 pktcable_cops_port_t:tcp_socket { send_msg recv_msg };
17559 ')
17560
17561 ########################################
17562 ## <summary>
17563 -## Send UDP traffic on the portmap port.
17564 +## Send UDP traffic on the pktcable_cops port.
17565 ## </summary>
17566 ## <param name="domain">
17567 ## <summary>
17568 @@ -63437,17 +64323,17 @@ interface(`corenet_tcp_sendrecv_portmap_port',`
17569 ## </param>
17570 ## <infoflow type="write" weight="10"/>
17571 #
17572 -interface(`corenet_udp_send_portmap_port',`
17573 +interface(`corenet_udp_send_pktcable_cops_port',`
17574 gen_require(`
17575 - type portmap_port_t;
17576 + type pktcable_cops_port_t;
17577 ')
17578
17579 - allow $1 portmap_port_t:udp_socket send_msg;
17580 + allow $1 pktcable_cops_port_t:udp_socket send_msg;
17581 ')
17582
17583 ########################################
17584 ## <summary>
17585 -## Do not audit attempts to send UDP traffic on the portmap port.
17586 +## Do not audit attempts to send UDP traffic on the pktcable_cops port.
17587 ## </summary>
17588 ## <param name="domain">
17589 ## <summary>
17590 @@ -63456,17 +64342,17 @@ interface(`corenet_udp_send_portmap_port',`
17591 ## </param>
17592 ## <infoflow type="none"/>
17593 #
17594 -interface(`corenet_dontaudit_udp_send_portmap_port',`
17595 +interface(`corenet_dontaudit_udp_send_pktcable_cops_port',`
17596 gen_require(`
17597 - type portmap_port_t;
17598 + type pktcable_cops_port_t;
17599 ')
17600
17601 - dontaudit $1 portmap_port_t:udp_socket send_msg;
17602 + dontaudit $1 pktcable_cops_port_t:udp_socket send_msg;
17603 ')
17604
17605 ########################################
17606 ## <summary>
17607 -## Receive UDP traffic on the portmap port.
17608 +## Receive UDP traffic on the pktcable_cops port.
17609 ## </summary>
17610 ## <param name="domain">
17611 ## <summary>
17612 @@ -63475,17 +64361,17 @@ interface(`corenet_dontaudit_udp_send_portmap_port',`
17613 ## </param>
17614 ## <infoflow type="read" weight="10"/>
17615 #
17616 -interface(`corenet_udp_receive_portmap_port',`
17617 +interface(`corenet_udp_receive_pktcable_cops_port',`
17618 gen_require(`
17619 - type portmap_port_t;
17620 + type pktcable_cops_port_t;
17621 ')
17622
17623 - allow $1 portmap_port_t:udp_socket recv_msg;
17624 + allow $1 pktcable_cops_port_t:udp_socket recv_msg;
17625 ')
17626
17627 ########################################
17628 ## <summary>
17629 -## Do not audit attempts to receive UDP traffic on the portmap port.
17630 +## Do not audit attempts to receive UDP traffic on the pktcable_cops port.
17631 ## </summary>
17632 ## <param name="domain">
17633 ## <summary>
17634 @@ -63494,17 +64380,17 @@ interface(`corenet_udp_receive_portmap_port',`
17635 ## </param>
17636 ## <infoflow type="none"/>
17637 #
17638 -interface(`corenet_dontaudit_udp_receive_portmap_port',`
17639 +interface(`corenet_dontaudit_udp_receive_pktcable_cops_port',`
17640 gen_require(`
17641 - type portmap_port_t;
17642 + type pktcable_cops_port_t;
17643 ')
17644
17645 - dontaudit $1 portmap_port_t:udp_socket recv_msg;
17646 + dontaudit $1 pktcable_cops_port_t:udp_socket recv_msg;
17647 ')
17648
17649 ########################################
17650 ## <summary>
17651 -## Send and receive UDP traffic on the portmap port.
17652 +## Send and receive UDP traffic on the pktcable_cops port.
17653 ## </summary>
17654 ## <param name="domain">
17655 ## <summary>
17656 @@ -63513,15 +64399,15 @@ interface(`corenet_dontaudit_udp_receive_portmap_port',`
17657 ## </param>
17658 ## <infoflow type="both" weight="10"/>
17659 #
17660 -interface(`corenet_udp_sendrecv_portmap_port',`
17661 - corenet_udp_send_portmap_port($1)
17662 - corenet_udp_receive_portmap_port($1)
17663 +interface(`corenet_udp_sendrecv_pktcable_cops_port',`
17664 + corenet_udp_send_pktcable_cops_port($1)
17665 + corenet_udp_receive_pktcable_cops_port($1)
17666 ')
17667
17668 ########################################
17669 ## <summary>
17670 ## Do not audit attempts to send and receive
17671 -## UDP traffic on the portmap port.
17672 +## UDP traffic on the pktcable_cops port.
17673 ## </summary>
17674 ## <param name="domain">
17675 ## <summary>
17676 @@ -63530,14 +64416,14 @@ interface(`corenet_udp_sendrecv_portmap_port',`
17677 ## </param>
17678 ## <infoflow type="none"/>
17679 #
17680 -interface(`corenet_dontaudit_udp_sendrecv_portmap_port',`
17681 - corenet_dontaudit_udp_send_portmap_port($1)
17682 - corenet_dontaudit_udp_receive_portmap_port($1)
17683 +interface(`corenet_dontaudit_udp_sendrecv_pktcable_cops_port',`
17684 + corenet_dontaudit_udp_send_pktcable_cops_port($1)
17685 + corenet_dontaudit_udp_receive_pktcable_cops_port($1)
17686 ')
17687
17688 ########################################
17689 ## <summary>
17690 -## Bind TCP sockets to the portmap port.
17691 +## Bind TCP sockets to the pktcable_cops port.
17692 ## </summary>
17693 ## <param name="domain">
17694 ## <summary>
17695 @@ -63546,18 +64432,18 @@ interface(`corenet_dontaudit_udp_sendrecv_portmap_port',`
17696 ## </param>
17697 ## <infoflow type="none"/>
17698 #
17699 -interface(`corenet_tcp_bind_portmap_port',`
17700 +interface(`corenet_tcp_bind_pktcable_cops_port',`
17701 gen_require(`
17702 - type portmap_port_t;
17703 + type pktcable_cops_port_t;
17704 ')
17705
17706 - allow $1 portmap_port_t:tcp_socket name_bind;
17707 - allow $1 self:capability net_bind_service;
17708 + allow $1 pktcable_cops_port_t:tcp_socket name_bind;
17709 +
17710 ')
17711
17712 ########################################
17713 ## <summary>
17714 -## Bind UDP sockets to the portmap port.
17715 +## Bind UDP sockets to the pktcable_cops port.
17716 ## </summary>
17717 ## <param name="domain">
17718 ## <summary>
17719 @@ -63566,18 +64452,18 @@ interface(`corenet_tcp_bind_portmap_port',`
17720 ## </param>
17721 ## <infoflow type="none"/>
17722 #
17723 -interface(`corenet_udp_bind_portmap_port',`
17724 +interface(`corenet_udp_bind_pktcable_cops_port',`
17725 gen_require(`
17726 - type portmap_port_t;
17727 + type pktcable_cops_port_t;
17728 ')
17729
17730 - allow $1 portmap_port_t:udp_socket name_bind;
17731 - allow $1 self:capability net_bind_service;
17732 + allow $1 pktcable_cops_port_t:udp_socket name_bind;
17733 +
17734 ')
17735
17736 ########################################
17737 ## <summary>
17738 -## Make a TCP connection to the portmap port.
17739 +## Make a TCP connection to the pktcable_cops port.
17740 ## </summary>
17741 ## <param name="domain">
17742 ## <summary>
17743 @@ -63585,18 +64471,18 @@ interface(`corenet_udp_bind_portmap_port',`
17744 ## </summary>
17745 ## </param>
17746 #
17747 -interface(`corenet_tcp_connect_portmap_port',`
17748 +interface(`corenet_tcp_connect_pktcable_cops_port',`
17749 gen_require(`
17750 - type portmap_port_t;
17751 + type pktcable_cops_port_t;
17752 ')
17753
17754 - allow $1 portmap_port_t:tcp_socket name_connect;
17755 + allow $1 pktcable_cops_port_t:tcp_socket name_connect;
17756 ')
17757
17758
17759 ########################################
17760 ## <summary>
17761 -## Send portmap_client packets.
17762 +## Send pktcable_cops_client packets.
17763 ## </summary>
17764 ## <param name="domain">
17765 ## <summary>
17766 @@ -63605,17 +64491,17 @@ interface(`corenet_tcp_connect_portmap_port',`
17767 ## </param>
17768 ## <infoflow type="write" weight="10"/>
17769 #
17770 -interface(`corenet_send_portmap_client_packets',`
17771 +interface(`corenet_send_pktcable_cops_client_packets',`
17772 gen_require(`
17773 - type portmap_client_packet_t;
17774 + type pktcable_cops_client_packet_t;
17775 ')
17776
17777 - allow $1 portmap_client_packet_t:packet send;
17778 + allow $1 pktcable_cops_client_packet_t:packet send;
17779 ')
17780
17781 ########################################
17782 ## <summary>
17783 -## Do not audit attempts to send portmap_client packets.
17784 +## Do not audit attempts to send pktcable_cops_client packets.
17785 ## </summary>
17786 ## <param name="domain">
17787 ## <summary>
17788 @@ -63624,17 +64510,17 @@ interface(`corenet_send_portmap_client_packets',`
17789 ## </param>
17790 ## <infoflow type="none"/>
17791 #
17792 -interface(`corenet_dontaudit_send_portmap_client_packets',`
17793 +interface(`corenet_dontaudit_send_pktcable_cops_client_packets',`
17794 gen_require(`
17795 - type portmap_client_packet_t;
17796 + type pktcable_cops_client_packet_t;
17797 ')
17798
17799 - dontaudit $1 portmap_client_packet_t:packet send;
17800 + dontaudit $1 pktcable_cops_client_packet_t:packet send;
17801 ')
17802
17803 ########################################
17804 ## <summary>
17805 -## Receive portmap_client packets.
17806 +## Receive pktcable_cops_client packets.
17807 ## </summary>
17808 ## <param name="domain">
17809 ## <summary>
17810 @@ -63643,17 +64529,17 @@ interface(`corenet_dontaudit_send_portmap_client_packets',`
17811 ## </param>
17812 ## <infoflow type="read" weight="10"/>
17813 #
17814 -interface(`corenet_receive_portmap_client_packets',`
17815 +interface(`corenet_receive_pktcable_cops_client_packets',`
17816 gen_require(`
17817 - type portmap_client_packet_t;
17818 + type pktcable_cops_client_packet_t;
17819 ')
17820
17821 - allow $1 portmap_client_packet_t:packet recv;
17822 + allow $1 pktcable_cops_client_packet_t:packet recv;
17823 ')
17824
17825 ########################################
17826 ## <summary>
17827 -## Do not audit attempts to receive portmap_client packets.
17828 +## Do not audit attempts to receive pktcable_cops_client packets.
17829 ## </summary>
17830 ## <param name="domain">
17831 ## <summary>
17832 @@ -63662,17 +64548,17 @@ interface(`corenet_receive_portmap_client_packets',`
17833 ## </param>
17834 ## <infoflow type="none"/>
17835 #
17836 -interface(`corenet_dontaudit_receive_portmap_client_packets',`
17837 +interface(`corenet_dontaudit_receive_pktcable_cops_client_packets',`
17838 gen_require(`
17839 - type portmap_client_packet_t;
17840 + type pktcable_cops_client_packet_t;
17841 ')
17842
17843 - dontaudit $1 portmap_client_packet_t:packet recv;
17844 + dontaudit $1 pktcable_cops_client_packet_t:packet recv;
17845 ')
17846
17847 ########################################
17848 ## <summary>
17849 -## Send and receive portmap_client packets.
17850 +## Send and receive pktcable_cops_client packets.
17851 ## </summary>
17852 ## <param name="domain">
17853 ## <summary>
17854 @@ -63681,14 +64567,14 @@ interface(`corenet_dontaudit_receive_portmap_client_packets',`
17855 ## </param>
17856 ## <infoflow type="both" weight="10"/>
17857 #
17858 -interface(`corenet_sendrecv_portmap_client_packets',`
17859 - corenet_send_portmap_client_packets($1)
17860 - corenet_receive_portmap_client_packets($1)
17861 +interface(`corenet_sendrecv_pktcable_cops_client_packets',`
17862 + corenet_send_pktcable_cops_client_packets($1)
17863 + corenet_receive_pktcable_cops_client_packets($1)
17864 ')
17865
17866 ########################################
17867 ## <summary>
17868 -## Do not audit attempts to send and receive portmap_client packets.
17869 +## Do not audit attempts to send and receive pktcable_cops_client packets.
17870 ## </summary>
17871 ## <param name="domain">
17872 ## <summary>
17873 @@ -63697,14 +64583,14 @@ interface(`corenet_sendrecv_portmap_client_packets',`
17874 ## </param>
17875 ## <infoflow type="none"/>
17876 #
17877 -interface(`corenet_dontaudit_sendrecv_portmap_client_packets',`
17878 - corenet_dontaudit_send_portmap_client_packets($1)
17879 - corenet_dontaudit_receive_portmap_client_packets($1)
17880 +interface(`corenet_dontaudit_sendrecv_pktcable_cops_client_packets',`
17881 + corenet_dontaudit_send_pktcable_cops_client_packets($1)
17882 + corenet_dontaudit_receive_pktcable_cops_client_packets($1)
17883 ')
17884
17885 ########################################
17886 ## <summary>
17887 -## Relabel packets to portmap_client the packet type.
17888 +## Relabel packets to pktcable_cops_client the packet type.
17889 ## </summary>
17890 ## <param name="domain">
17891 ## <summary>
17892 @@ -63712,18 +64598,18 @@ interface(`corenet_dontaudit_sendrecv_portmap_client_packets',`
17893 ## </summary>
17894 ## </param>
17895 #
17896 -interface(`corenet_relabelto_portmap_client_packets',`
17897 +interface(`corenet_relabelto_pktcable_cops_client_packets',`
17898 gen_require(`
17899 - type portmap_client_packet_t;
17900 + type pktcable_cops_client_packet_t;
17901 ')
17902
17903 - allow $1 portmap_client_packet_t:packet relabelto;
17904 + allow $1 pktcable_cops_client_packet_t:packet relabelto;
17905 ')
17906
17907
17908 ########################################
17909 ## <summary>
17910 -## Send portmap_server packets.
17911 +## Send pktcable_cops_server packets.
17912 ## </summary>
17913 ## <param name="domain">
17914 ## <summary>
17915 @@ -63732,17 +64618,17 @@ interface(`corenet_relabelto_portmap_client_packets',`
17916 ## </param>
17917 ## <infoflow type="write" weight="10"/>
17918 #
17919 -interface(`corenet_send_portmap_server_packets',`
17920 +interface(`corenet_send_pktcable_cops_server_packets',`
17921 gen_require(`
17922 - type portmap_server_packet_t;
17923 + type pktcable_cops_server_packet_t;
17924 ')
17925
17926 - allow $1 portmap_server_packet_t:packet send;
17927 + allow $1 pktcable_cops_server_packet_t:packet send;
17928 ')
17929
17930 ########################################
17931 ## <summary>
17932 -## Do not audit attempts to send portmap_server packets.
17933 +## Do not audit attempts to send pktcable_cops_server packets.
17934 ## </summary>
17935 ## <param name="domain">
17936 ## <summary>
17937 @@ -63751,17 +64637,17 @@ interface(`corenet_send_portmap_server_packets',`
17938 ## </param>
17939 ## <infoflow type="none"/>
17940 #
17941 -interface(`corenet_dontaudit_send_portmap_server_packets',`
17942 +interface(`corenet_dontaudit_send_pktcable_cops_server_packets',`
17943 gen_require(`
17944 - type portmap_server_packet_t;
17945 + type pktcable_cops_server_packet_t;
17946 ')
17947
17948 - dontaudit $1 portmap_server_packet_t:packet send;
17949 + dontaudit $1 pktcable_cops_server_packet_t:packet send;
17950 ')
17951
17952 ########################################
17953 ## <summary>
17954 -## Receive portmap_server packets.
17955 +## Receive pktcable_cops_server packets.
17956 ## </summary>
17957 ## <param name="domain">
17958 ## <summary>
17959 @@ -63770,17 +64656,17 @@ interface(`corenet_dontaudit_send_portmap_server_packets',`
17960 ## </param>
17961 ## <infoflow type="read" weight="10"/>
17962 #
17963 -interface(`corenet_receive_portmap_server_packets',`
17964 +interface(`corenet_receive_pktcable_cops_server_packets',`
17965 gen_require(`
17966 - type portmap_server_packet_t;
17967 + type pktcable_cops_server_packet_t;
17968 ')
17969
17970 - allow $1 portmap_server_packet_t:packet recv;
17971 + allow $1 pktcable_cops_server_packet_t:packet recv;
17972 ')
17973
17974 ########################################
17975 ## <summary>
17976 -## Do not audit attempts to receive portmap_server packets.
17977 +## Do not audit attempts to receive pktcable_cops_server packets.
17978 ## </summary>
17979 ## <param name="domain">
17980 ## <summary>
17981 @@ -63789,17 +64675,17 @@ interface(`corenet_receive_portmap_server_packets',`
17982 ## </param>
17983 ## <infoflow type="none"/>
17984 #
17985 -interface(`corenet_dontaudit_receive_portmap_server_packets',`
17986 +interface(`corenet_dontaudit_receive_pktcable_cops_server_packets',`
17987 gen_require(`
17988 - type portmap_server_packet_t;
17989 + type pktcable_cops_server_packet_t;
17990 ')
17991
17992 - dontaudit $1 portmap_server_packet_t:packet recv;
17993 + dontaudit $1 pktcable_cops_server_packet_t:packet recv;
17994 ')
17995
17996 ########################################
17997 ## <summary>
17998 -## Send and receive portmap_server packets.
17999 +## Send and receive pktcable_cops_server packets.
18000 ## </summary>
18001 ## <param name="domain">
18002 ## <summary>
18003 @@ -63808,14 +64694,14 @@ interface(`corenet_dontaudit_receive_portmap_server_packets',`
18004 ## </param>
18005 ## <infoflow type="both" weight="10"/>
18006 #
18007 -interface(`corenet_sendrecv_portmap_server_packets',`
18008 - corenet_send_portmap_server_packets($1)
18009 - corenet_receive_portmap_server_packets($1)
18010 +interface(`corenet_sendrecv_pktcable_cops_server_packets',`
18011 + corenet_send_pktcable_cops_server_packets($1)
18012 + corenet_receive_pktcable_cops_server_packets($1)
18013 ')
18014
18015 ########################################
18016 ## <summary>
18017 -## Do not audit attempts to send and receive portmap_server packets.
18018 +## Do not audit attempts to send and receive pktcable_cops_server packets.
18019 ## </summary>
18020 ## <param name="domain">
18021 ## <summary>
18022 @@ -63824,14 +64710,14 @@ interface(`corenet_sendrecv_portmap_server_packets',`
18023 ## </param>
18024 ## <infoflow type="none"/>
18025 #
18026 -interface(`corenet_dontaudit_sendrecv_portmap_server_packets',`
18027 - corenet_dontaudit_send_portmap_server_packets($1)
18028 - corenet_dontaudit_receive_portmap_server_packets($1)
18029 +interface(`corenet_dontaudit_sendrecv_pktcable_cops_server_packets',`
18030 + corenet_dontaudit_send_pktcable_cops_server_packets($1)
18031 + corenet_dontaudit_receive_pktcable_cops_server_packets($1)
18032 ')
18033
18034 ########################################
18035 ## <summary>
18036 -## Relabel packets to portmap_server the packet type.
18037 +## Relabel packets to pktcable_cops_server the packet type.
18038 ## </summary>
18039 ## <param name="domain">
18040 ## <summary>
18041 @@ -63839,12 +64725,12 @@ interface(`corenet_dontaudit_sendrecv_portmap_server_packets',`
18042 ## </summary>
18043 ## </param>
18044 #
18045 -interface(`corenet_relabelto_portmap_server_packets',`
18046 +interface(`corenet_relabelto_pktcable_cops_server_packets',`
18047 gen_require(`
18048 - type portmap_server_packet_t;
18049 + type pktcable_cops_server_packet_t;
18050 ')
18051
18052 - allow $1 portmap_server_packet_t:packet relabelto;
18053 + allow $1 pktcable_cops_server_packet_t:packet relabelto;
18054 ')
18055
18056
18057 @@ -63852,7 +64738,7 @@ interface(`corenet_relabelto_portmap_server_packets',`
18058
18059 ########################################
18060 ## <summary>
18061 -## Send and receive TCP traffic on the postfix_policyd port.
18062 +## Send and receive TCP traffic on the pop port.
18063 ## </summary>
18064 ## <param name="domain">
18065 ## <summary>
18066 @@ -63861,17 +64747,17 @@ interface(`corenet_relabelto_portmap_server_packets',`
18067 ## </param>
18068 ## <infoflow type="both" weight="10"/>
18069 #
18070 -interface(`corenet_tcp_sendrecv_postfix_policyd_port',`
18071 +interface(`corenet_tcp_sendrecv_pop_port',`
18072 gen_require(`
18073 - type postfix_policyd_port_t;
18074 + type pop_port_t;
18075 ')
18076
18077 - allow $1 postfix_policyd_port_t:tcp_socket { send_msg recv_msg };
18078 + allow $1 pop_port_t:tcp_socket { send_msg recv_msg };
18079 ')
18080
18081 ########################################
18082 ## <summary>
18083 -## Send UDP traffic on the postfix_policyd port.
18084 +## Send UDP traffic on the pop port.
18085 ## </summary>
18086 ## <param name="domain">
18087 ## <summary>
18088 @@ -63880,17 +64766,17 @@ interface(`corenet_tcp_sendrecv_postfix_policyd_port',`
18089 ## </param>
18090 ## <infoflow type="write" weight="10"/>
18091 #
18092 -interface(`corenet_udp_send_postfix_policyd_port',`
18093 +interface(`corenet_udp_send_pop_port',`
18094 gen_require(`
18095 - type postfix_policyd_port_t;
18096 + type pop_port_t;
18097 ')
18098
18099 - allow $1 postfix_policyd_port_t:udp_socket send_msg;
18100 + allow $1 pop_port_t:udp_socket send_msg;
18101 ')
18102
18103 ########################################
18104 ## <summary>
18105 -## Do not audit attempts to send UDP traffic on the postfix_policyd port.
18106 +## Do not audit attempts to send UDP traffic on the pop port.
18107 ## </summary>
18108 ## <param name="domain">
18109 ## <summary>
18110 @@ -63899,17 +64785,17 @@ interface(`corenet_udp_send_postfix_policyd_port',`
18111 ## </param>
18112 ## <infoflow type="none"/>
18113 #
18114 -interface(`corenet_dontaudit_udp_send_postfix_policyd_port',`
18115 +interface(`corenet_dontaudit_udp_send_pop_port',`
18116 gen_require(`
18117 - type postfix_policyd_port_t;
18118 + type pop_port_t;
18119 ')
18120
18121 - dontaudit $1 postfix_policyd_port_t:udp_socket send_msg;
18122 + dontaudit $1 pop_port_t:udp_socket send_msg;
18123 ')
18124
18125 ########################################
18126 ## <summary>
18127 -## Receive UDP traffic on the postfix_policyd port.
18128 +## Receive UDP traffic on the pop port.
18129 ## </summary>
18130 ## <param name="domain">
18131 ## <summary>
18132 @@ -63918,17 +64804,17 @@ interface(`corenet_dontaudit_udp_send_postfix_policyd_port',`
18133 ## </param>
18134 ## <infoflow type="read" weight="10"/>
18135 #
18136 -interface(`corenet_udp_receive_postfix_policyd_port',`
18137 +interface(`corenet_udp_receive_pop_port',`
18138 gen_require(`
18139 - type postfix_policyd_port_t;
18140 + type pop_port_t;
18141 ')
18142
18143 - allow $1 postfix_policyd_port_t:udp_socket recv_msg;
18144 + allow $1 pop_port_t:udp_socket recv_msg;
18145 ')
18146
18147 ########################################
18148 ## <summary>
18149 -## Do not audit attempts to receive UDP traffic on the postfix_policyd port.
18150 +## Do not audit attempts to receive UDP traffic on the pop port.
18151 ## </summary>
18152 ## <param name="domain">
18153 ## <summary>
18154 @@ -63937,17 +64823,17 @@ interface(`corenet_udp_receive_postfix_policyd_port',`
18155 ## </param>
18156 ## <infoflow type="none"/>
18157 #
18158 -interface(`corenet_dontaudit_udp_receive_postfix_policyd_port',`
18159 +interface(`corenet_dontaudit_udp_receive_pop_port',`
18160 gen_require(`
18161 - type postfix_policyd_port_t;
18162 + type pop_port_t;
18163 ')
18164
18165 - dontaudit $1 postfix_policyd_port_t:udp_socket recv_msg;
18166 + dontaudit $1 pop_port_t:udp_socket recv_msg;
18167 ')
18168
18169 ########################################
18170 ## <summary>
18171 -## Send and receive UDP traffic on the postfix_policyd port.
18172 +## Send and receive UDP traffic on the pop port.
18173 ## </summary>
18174 ## <param name="domain">
18175 ## <summary>
18176 @@ -63956,15 +64842,15 @@ interface(`corenet_dontaudit_udp_receive_postfix_policyd_port',`
18177 ## </param>
18178 ## <infoflow type="both" weight="10"/>
18179 #
18180 -interface(`corenet_udp_sendrecv_postfix_policyd_port',`
18181 - corenet_udp_send_postfix_policyd_port($1)
18182 - corenet_udp_receive_postfix_policyd_port($1)
18183 +interface(`corenet_udp_sendrecv_pop_port',`
18184 + corenet_udp_send_pop_port($1)
18185 + corenet_udp_receive_pop_port($1)
18186 ')
18187
18188 ########################################
18189 ## <summary>
18190 ## Do not audit attempts to send and receive
18191 -## UDP traffic on the postfix_policyd port.
18192 +## UDP traffic on the pop port.
18193 ## </summary>
18194 ## <param name="domain">
18195 ## <summary>
18196 @@ -63973,14 +64859,14 @@ interface(`corenet_udp_sendrecv_postfix_policyd_port',`
18197 ## </param>
18198 ## <infoflow type="none"/>
18199 #
18200 -interface(`corenet_dontaudit_udp_sendrecv_postfix_policyd_port',`
18201 - corenet_dontaudit_udp_send_postfix_policyd_port($1)
18202 - corenet_dontaudit_udp_receive_postfix_policyd_port($1)
18203 +interface(`corenet_dontaudit_udp_sendrecv_pop_port',`
18204 + corenet_dontaudit_udp_send_pop_port($1)
18205 + corenet_dontaudit_udp_receive_pop_port($1)
18206 ')
18207
18208 ########################################
18209 ## <summary>
18210 -## Bind TCP sockets to the postfix_policyd port.
18211 +## Bind TCP sockets to the pop port.
18212 ## </summary>
18213 ## <param name="domain">
18214 ## <summary>
18215 @@ -63989,18 +64875,18 @@ interface(`corenet_dontaudit_udp_sendrecv_postfix_policyd_port',`
18216 ## </param>
18217 ## <infoflow type="none"/>
18218 #
18219 -interface(`corenet_tcp_bind_postfix_policyd_port',`
18220 +interface(`corenet_tcp_bind_pop_port',`
18221 gen_require(`
18222 - type postfix_policyd_port_t;
18223 + type pop_port_t;
18224 ')
18225
18226 - allow $1 postfix_policyd_port_t:tcp_socket name_bind;
18227 -
18228 + allow $1 pop_port_t:tcp_socket name_bind;
18229 + allow $1 self:capability net_bind_service;
18230 ')
18231
18232 ########################################
18233 ## <summary>
18234 -## Bind UDP sockets to the postfix_policyd port.
18235 +## Bind UDP sockets to the pop port.
18236 ## </summary>
18237 ## <param name="domain">
18238 ## <summary>
18239 @@ -64009,18 +64895,18 @@ interface(`corenet_tcp_bind_postfix_policyd_port',`
18240 ## </param>
18241 ## <infoflow type="none"/>
18242 #
18243 -interface(`corenet_udp_bind_postfix_policyd_port',`
18244 +interface(`corenet_udp_bind_pop_port',`
18245 gen_require(`
18246 - type postfix_policyd_port_t;
18247 + type pop_port_t;
18248 ')
18249
18250 - allow $1 postfix_policyd_port_t:udp_socket name_bind;
18251 -
18252 + allow $1 pop_port_t:udp_socket name_bind;
18253 + allow $1 self:capability net_bind_service;
18254 ')
18255
18256 ########################################
18257 ## <summary>
18258 -## Make a TCP connection to the postfix_policyd port.
18259 +## Make a TCP connection to the pop port.
18260 ## </summary>
18261 ## <param name="domain">
18262 ## <summary>
18263 @@ -64028,18 +64914,18 @@ interface(`corenet_udp_bind_postfix_policyd_port',`
18264 ## </summary>
18265 ## </param>
18266 #
18267 -interface(`corenet_tcp_connect_postfix_policyd_port',`
18268 +interface(`corenet_tcp_connect_pop_port',`
18269 gen_require(`
18270 - type postfix_policyd_port_t;
18271 + type pop_port_t;
18272 ')
18273
18274 - allow $1 postfix_policyd_port_t:tcp_socket name_connect;
18275 + allow $1 pop_port_t:tcp_socket name_connect;
18276 ')
18277
18278
18279 ########################################
18280 ## <summary>
18281 -## Send postfix_policyd_client packets.
18282 +## Send pop_client packets.
18283 ## </summary>
18284 ## <param name="domain">
18285 ## <summary>
18286 @@ -64048,17 +64934,17 @@ interface(`corenet_tcp_connect_postfix_policyd_port',`
18287 ## </param>
18288 ## <infoflow type="write" weight="10"/>
18289 #
18290 -interface(`corenet_send_postfix_policyd_client_packets',`
18291 +interface(`corenet_send_pop_client_packets',`
18292 gen_require(`
18293 - type postfix_policyd_client_packet_t;
18294 + type pop_client_packet_t;
18295 ')
18296
18297 - allow $1 postfix_policyd_client_packet_t:packet send;
18298 + allow $1 pop_client_packet_t:packet send;
18299 ')
18300
18301 ########################################
18302 ## <summary>
18303 -## Do not audit attempts to send postfix_policyd_client packets.
18304 +## Do not audit attempts to send pop_client packets.
18305 ## </summary>
18306 ## <param name="domain">
18307 ## <summary>
18308 @@ -64067,17 +64953,17 @@ interface(`corenet_send_postfix_policyd_client_packets',`
18309 ## </param>
18310 ## <infoflow type="none"/>
18311 #
18312 -interface(`corenet_dontaudit_send_postfix_policyd_client_packets',`
18313 +interface(`corenet_dontaudit_send_pop_client_packets',`
18314 gen_require(`
18315 - type postfix_policyd_client_packet_t;
18316 + type pop_client_packet_t;
18317 ')
18318
18319 - dontaudit $1 postfix_policyd_client_packet_t:packet send;
18320 + dontaudit $1 pop_client_packet_t:packet send;
18321 ')
18322
18323 ########################################
18324 ## <summary>
18325 -## Receive postfix_policyd_client packets.
18326 +## Receive pop_client packets.
18327 ## </summary>
18328 ## <param name="domain">
18329 ## <summary>
18330 @@ -64086,17 +64972,17 @@ interface(`corenet_dontaudit_send_postfix_policyd_client_packets',`
18331 ## </param>
18332 ## <infoflow type="read" weight="10"/>
18333 #
18334 -interface(`corenet_receive_postfix_policyd_client_packets',`
18335 +interface(`corenet_receive_pop_client_packets',`
18336 gen_require(`
18337 - type postfix_policyd_client_packet_t;
18338 + type pop_client_packet_t;
18339 ')
18340
18341 - allow $1 postfix_policyd_client_packet_t:packet recv;
18342 + allow $1 pop_client_packet_t:packet recv;
18343 ')
18344
18345 ########################################
18346 ## <summary>
18347 -## Do not audit attempts to receive postfix_policyd_client packets.
18348 +## Do not audit attempts to receive pop_client packets.
18349 ## </summary>
18350 ## <param name="domain">
18351 ## <summary>
18352 @@ -64105,17 +64991,17 @@ interface(`corenet_receive_postfix_policyd_client_packets',`
18353 ## </param>
18354 ## <infoflow type="none"/>
18355 #
18356 -interface(`corenet_dontaudit_receive_postfix_policyd_client_packets',`
18357 +interface(`corenet_dontaudit_receive_pop_client_packets',`
18358 gen_require(`
18359 - type postfix_policyd_client_packet_t;
18360 + type pop_client_packet_t;
18361 ')
18362
18363 - dontaudit $1 postfix_policyd_client_packet_t:packet recv;
18364 + dontaudit $1 pop_client_packet_t:packet recv;
18365 ')
18366
18367 ########################################
18368 ## <summary>
18369 -## Send and receive postfix_policyd_client packets.
18370 +## Send and receive pop_client packets.
18371 ## </summary>
18372 ## <param name="domain">
18373 ## <summary>
18374 @@ -64124,14 +65010,14 @@ interface(`corenet_dontaudit_receive_postfix_policyd_client_packets',`
18375 ## </param>
18376 ## <infoflow type="both" weight="10"/>
18377 #
18378 -interface(`corenet_sendrecv_postfix_policyd_client_packets',`
18379 - corenet_send_postfix_policyd_client_packets($1)
18380 - corenet_receive_postfix_policyd_client_packets($1)
18381 +interface(`corenet_sendrecv_pop_client_packets',`
18382 + corenet_send_pop_client_packets($1)
18383 + corenet_receive_pop_client_packets($1)
18384 ')
18385
18386 ########################################
18387 ## <summary>
18388 -## Do not audit attempts to send and receive postfix_policyd_client packets.
18389 +## Do not audit attempts to send and receive pop_client packets.
18390 ## </summary>
18391 ## <param name="domain">
18392 ## <summary>
18393 @@ -64140,14 +65026,14 @@ interface(`corenet_sendrecv_postfix_policyd_client_packets',`
18394 ## </param>
18395 ## <infoflow type="none"/>
18396 #
18397 -interface(`corenet_dontaudit_sendrecv_postfix_policyd_client_packets',`
18398 - corenet_dontaudit_send_postfix_policyd_client_packets($1)
18399 - corenet_dontaudit_receive_postfix_policyd_client_packets($1)
18400 +interface(`corenet_dontaudit_sendrecv_pop_client_packets',`
18401 + corenet_dontaudit_send_pop_client_packets($1)
18402 + corenet_dontaudit_receive_pop_client_packets($1)
18403 ')
18404
18405 ########################################
18406 ## <summary>
18407 -## Relabel packets to postfix_policyd_client the packet type.
18408 +## Relabel packets to pop_client the packet type.
18409 ## </summary>
18410 ## <param name="domain">
18411 ## <summary>
18412 @@ -64155,18 +65041,18 @@ interface(`corenet_dontaudit_sendrecv_postfix_policyd_client_packets',`
18413 ## </summary>
18414 ## </param>
18415 #
18416 -interface(`corenet_relabelto_postfix_policyd_client_packets',`
18417 +interface(`corenet_relabelto_pop_client_packets',`
18418 gen_require(`
18419 - type postfix_policyd_client_packet_t;
18420 + type pop_client_packet_t;
18421 ')
18422
18423 - allow $1 postfix_policyd_client_packet_t:packet relabelto;
18424 + allow $1 pop_client_packet_t:packet relabelto;
18425 ')
18426
18427
18428 ########################################
18429 ## <summary>
18430 -## Send postfix_policyd_server packets.
18431 +## Send pop_server packets.
18432 ## </summary>
18433 ## <param name="domain">
18434 ## <summary>
18435 @@ -64175,17 +65061,17 @@ interface(`corenet_relabelto_postfix_policyd_client_packets',`
18436 ## </param>
18437 ## <infoflow type="write" weight="10"/>
18438 #
18439 -interface(`corenet_send_postfix_policyd_server_packets',`
18440 +interface(`corenet_send_pop_server_packets',`
18441 gen_require(`
18442 - type postfix_policyd_server_packet_t;
18443 + type pop_server_packet_t;
18444 ')
18445
18446 - allow $1 postfix_policyd_server_packet_t:packet send;
18447 + allow $1 pop_server_packet_t:packet send;
18448 ')
18449
18450 ########################################
18451 ## <summary>
18452 -## Do not audit attempts to send postfix_policyd_server packets.
18453 +## Do not audit attempts to send pop_server packets.
18454 ## </summary>
18455 ## <param name="domain">
18456 ## <summary>
18457 @@ -64194,17 +65080,17 @@ interface(`corenet_send_postfix_policyd_server_packets',`
18458 ## </param>
18459 ## <infoflow type="none"/>
18460 #
18461 -interface(`corenet_dontaudit_send_postfix_policyd_server_packets',`
18462 +interface(`corenet_dontaudit_send_pop_server_packets',`
18463 gen_require(`
18464 - type postfix_policyd_server_packet_t;
18465 + type pop_server_packet_t;
18466 ')
18467
18468 - dontaudit $1 postfix_policyd_server_packet_t:packet send;
18469 + dontaudit $1 pop_server_packet_t:packet send;
18470 ')
18471
18472 ########################################
18473 ## <summary>
18474 -## Receive postfix_policyd_server packets.
18475 +## Receive pop_server packets.
18476 ## </summary>
18477 ## <param name="domain">
18478 ## <summary>
18479 @@ -64213,17 +65099,17 @@ interface(`corenet_dontaudit_send_postfix_policyd_server_packets',`
18480 ## </param>
18481 ## <infoflow type="read" weight="10"/>
18482 #
18483 -interface(`corenet_receive_postfix_policyd_server_packets',`
18484 +interface(`corenet_receive_pop_server_packets',`
18485 gen_require(`
18486 - type postfix_policyd_server_packet_t;
18487 + type pop_server_packet_t;
18488 ')
18489
18490 - allow $1 postfix_policyd_server_packet_t:packet recv;
18491 + allow $1 pop_server_packet_t:packet recv;
18492 ')
18493
18494 ########################################
18495 ## <summary>
18496 -## Do not audit attempts to receive postfix_policyd_server packets.
18497 +## Do not audit attempts to receive pop_server packets.
18498 ## </summary>
18499 ## <param name="domain">
18500 ## <summary>
18501 @@ -64232,17 +65118,17 @@ interface(`corenet_receive_postfix_policyd_server_packets',`
18502 ## </param>
18503 ## <infoflow type="none"/>
18504 #
18505 -interface(`corenet_dontaudit_receive_postfix_policyd_server_packets',`
18506 +interface(`corenet_dontaudit_receive_pop_server_packets',`
18507 gen_require(`
18508 - type postfix_policyd_server_packet_t;
18509 + type pop_server_packet_t;
18510 ')
18511
18512 - dontaudit $1 postfix_policyd_server_packet_t:packet recv;
18513 + dontaudit $1 pop_server_packet_t:packet recv;
18514 ')
18515
18516 ########################################
18517 ## <summary>
18518 -## Send and receive postfix_policyd_server packets.
18519 +## Send and receive pop_server packets.
18520 ## </summary>
18521 ## <param name="domain">
18522 ## <summary>
18523 @@ -64251,14 +65137,14 @@ interface(`corenet_dontaudit_receive_postfix_policyd_server_packets',`
18524 ## </param>
18525 ## <infoflow type="both" weight="10"/>
18526 #
18527 -interface(`corenet_sendrecv_postfix_policyd_server_packets',`
18528 - corenet_send_postfix_policyd_server_packets($1)
18529 - corenet_receive_postfix_policyd_server_packets($1)
18530 +interface(`corenet_sendrecv_pop_server_packets',`
18531 + corenet_send_pop_server_packets($1)
18532 + corenet_receive_pop_server_packets($1)
18533 ')
18534
18535 ########################################
18536 ## <summary>
18537 -## Do not audit attempts to send and receive postfix_policyd_server packets.
18538 +## Do not audit attempts to send and receive pop_server packets.
18539 ## </summary>
18540 ## <param name="domain">
18541 ## <summary>
18542 @@ -64267,14 +65153,14 @@ interface(`corenet_sendrecv_postfix_policyd_server_packets',`
18543 ## </param>
18544 ## <infoflow type="none"/>
18545 #
18546 -interface(`corenet_dontaudit_sendrecv_postfix_policyd_server_packets',`
18547 - corenet_dontaudit_send_postfix_policyd_server_packets($1)
18548 - corenet_dontaudit_receive_postfix_policyd_server_packets($1)
18549 +interface(`corenet_dontaudit_sendrecv_pop_server_packets',`
18550 + corenet_dontaudit_send_pop_server_packets($1)
18551 + corenet_dontaudit_receive_pop_server_packets($1)
18552 ')
18553
18554 ########################################
18555 ## <summary>
18556 -## Relabel packets to postfix_policyd_server the packet type.
18557 +## Relabel packets to pop_server the packet type.
18558 ## </summary>
18559 ## <param name="domain">
18560 ## <summary>
18561 @@ -64282,12 +65168,12 @@ interface(`corenet_dontaudit_sendrecv_postfix_policyd_server_packets',`
18562 ## </summary>
18563 ## </param>
18564 #
18565 -interface(`corenet_relabelto_postfix_policyd_server_packets',`
18566 +interface(`corenet_relabelto_pop_server_packets',`
18567 gen_require(`
18568 - type postfix_policyd_server_packet_t;
18569 + type pop_server_packet_t;
18570 ')
18571
18572 - allow $1 postfix_policyd_server_packet_t:packet relabelto;
18573 + allow $1 pop_server_packet_t:packet relabelto;
18574 ')
18575
18576
18577 @@ -64295,7 +65181,7 @@ interface(`corenet_relabelto_postfix_policyd_server_packets',`
18578
18579 ########################################
18580 ## <summary>
18581 -## Send and receive TCP traffic on the postgresql port.
18582 +## Send and receive TCP traffic on the portmap port.
18583 ## </summary>
18584 ## <param name="domain">
18585 ## <summary>
18586 @@ -64304,17 +65190,17 @@ interface(`corenet_relabelto_postfix_policyd_server_packets',`
18587 ## </param>
18588 ## <infoflow type="both" weight="10"/>
18589 #
18590 -interface(`corenet_tcp_sendrecv_postgresql_port',`
18591 +interface(`corenet_tcp_sendrecv_portmap_port',`
18592 gen_require(`
18593 - type postgresql_port_t;
18594 + type portmap_port_t;
18595 ')
18596
18597 - allow $1 postgresql_port_t:tcp_socket { send_msg recv_msg };
18598 + allow $1 portmap_port_t:tcp_socket { send_msg recv_msg };
18599 ')
18600
18601 ########################################
18602 ## <summary>
18603 -## Send UDP traffic on the postgresql port.
18604 +## Send UDP traffic on the portmap port.
18605 ## </summary>
18606 ## <param name="domain">
18607 ## <summary>
18608 @@ -64323,17 +65209,17 @@ interface(`corenet_tcp_sendrecv_postgresql_port',`
18609 ## </param>
18610 ## <infoflow type="write" weight="10"/>
18611 #
18612 -interface(`corenet_udp_send_postgresql_port',`
18613 +interface(`corenet_udp_send_portmap_port',`
18614 gen_require(`
18615 - type postgresql_port_t;
18616 + type portmap_port_t;
18617 ')
18618
18619 - allow $1 postgresql_port_t:udp_socket send_msg;
18620 + allow $1 portmap_port_t:udp_socket send_msg;
18621 ')
18622
18623 ########################################
18624 ## <summary>
18625 -## Do not audit attempts to send UDP traffic on the postgresql port.
18626 +## Do not audit attempts to send UDP traffic on the portmap port.
18627 ## </summary>
18628 ## <param name="domain">
18629 ## <summary>
18630 @@ -64342,17 +65228,17 @@ interface(`corenet_udp_send_postgresql_port',`
18631 ## </param>
18632 ## <infoflow type="none"/>
18633 #
18634 -interface(`corenet_dontaudit_udp_send_postgresql_port',`
18635 +interface(`corenet_dontaudit_udp_send_portmap_port',`
18636 gen_require(`
18637 - type postgresql_port_t;
18638 + type portmap_port_t;
18639 ')
18640
18641 - dontaudit $1 postgresql_port_t:udp_socket send_msg;
18642 + dontaudit $1 portmap_port_t:udp_socket send_msg;
18643 ')
18644
18645 ########################################
18646 ## <summary>
18647 -## Receive UDP traffic on the postgresql port.
18648 +## Receive UDP traffic on the portmap port.
18649 ## </summary>
18650 ## <param name="domain">
18651 ## <summary>
18652 @@ -64361,17 +65247,17 @@ interface(`corenet_dontaudit_udp_send_postgresql_port',`
18653 ## </param>
18654 ## <infoflow type="read" weight="10"/>
18655 #
18656 -interface(`corenet_udp_receive_postgresql_port',`
18657 +interface(`corenet_udp_receive_portmap_port',`
18658 gen_require(`
18659 - type postgresql_port_t;
18660 + type portmap_port_t;
18661 ')
18662
18663 - allow $1 postgresql_port_t:udp_socket recv_msg;
18664 + allow $1 portmap_port_t:udp_socket recv_msg;
18665 ')
18666
18667 ########################################
18668 ## <summary>
18669 -## Do not audit attempts to receive UDP traffic on the postgresql port.
18670 +## Do not audit attempts to receive UDP traffic on the portmap port.
18671 ## </summary>
18672 ## <param name="domain">
18673 ## <summary>
18674 @@ -64380,17 +65266,17 @@ interface(`corenet_udp_receive_postgresql_port',`
18675 ## </param>
18676 ## <infoflow type="none"/>
18677 #
18678 -interface(`corenet_dontaudit_udp_receive_postgresql_port',`
18679 +interface(`corenet_dontaudit_udp_receive_portmap_port',`
18680 gen_require(`
18681 - type postgresql_port_t;
18682 + type portmap_port_t;
18683 ')
18684
18685 - dontaudit $1 postgresql_port_t:udp_socket recv_msg;
18686 + dontaudit $1 portmap_port_t:udp_socket recv_msg;
18687 ')
18688
18689 ########################################
18690 ## <summary>
18691 -## Send and receive UDP traffic on the postgresql port.
18692 +## Send and receive UDP traffic on the portmap port.
18693 ## </summary>
18694 ## <param name="domain">
18695 ## <summary>
18696 @@ -64399,15 +65285,15 @@ interface(`corenet_dontaudit_udp_receive_postgresql_port',`
18697 ## </param>
18698 ## <infoflow type="both" weight="10"/>
18699 #
18700 -interface(`corenet_udp_sendrecv_postgresql_port',`
18701 - corenet_udp_send_postgresql_port($1)
18702 - corenet_udp_receive_postgresql_port($1)
18703 +interface(`corenet_udp_sendrecv_portmap_port',`
18704 + corenet_udp_send_portmap_port($1)
18705 + corenet_udp_receive_portmap_port($1)
18706 ')
18707
18708 ########################################
18709 ## <summary>
18710 ## Do not audit attempts to send and receive
18711 -## UDP traffic on the postgresql port.
18712 +## UDP traffic on the portmap port.
18713 ## </summary>
18714 ## <param name="domain">
18715 ## <summary>
18716 @@ -64416,14 +65302,14 @@ interface(`corenet_udp_sendrecv_postgresql_port',`
18717 ## </param>
18718 ## <infoflow type="none"/>
18719 #
18720 -interface(`corenet_dontaudit_udp_sendrecv_postgresql_port',`
18721 - corenet_dontaudit_udp_send_postgresql_port($1)
18722 - corenet_dontaudit_udp_receive_postgresql_port($1)
18723 +interface(`corenet_dontaudit_udp_sendrecv_portmap_port',`
18724 + corenet_dontaudit_udp_send_portmap_port($1)
18725 + corenet_dontaudit_udp_receive_portmap_port($1)
18726 ')
18727
18728 ########################################
18729 ## <summary>
18730 -## Bind TCP sockets to the postgresql port.
18731 +## Bind TCP sockets to the portmap port.
18732 ## </summary>
18733 ## <param name="domain">
18734 ## <summary>
18735 @@ -64432,18 +65318,18 @@ interface(`corenet_dontaudit_udp_sendrecv_postgresql_port',`
18736 ## </param>
18737 ## <infoflow type="none"/>
18738 #
18739 -interface(`corenet_tcp_bind_postgresql_port',`
18740 +interface(`corenet_tcp_bind_portmap_port',`
18741 gen_require(`
18742 - type postgresql_port_t;
18743 + type portmap_port_t;
18744 ')
18745
18746 - allow $1 postgresql_port_t:tcp_socket name_bind;
18747 -
18748 + allow $1 portmap_port_t:tcp_socket name_bind;
18749 + allow $1 self:capability net_bind_service;
18750 ')
18751
18752 ########################################
18753 ## <summary>
18754 -## Bind UDP sockets to the postgresql port.
18755 +## Bind UDP sockets to the portmap port.
18756 ## </summary>
18757 ## <param name="domain">
18758 ## <summary>
18759 @@ -64452,18 +65338,18 @@ interface(`corenet_tcp_bind_postgresql_port',`
18760 ## </param>
18761 ## <infoflow type="none"/>
18762 #
18763 -interface(`corenet_udp_bind_postgresql_port',`
18764 +interface(`corenet_udp_bind_portmap_port',`
18765 gen_require(`
18766 - type postgresql_port_t;
18767 + type portmap_port_t;
18768 ')
18769
18770 - allow $1 postgresql_port_t:udp_socket name_bind;
18771 -
18772 + allow $1 portmap_port_t:udp_socket name_bind;
18773 + allow $1 self:capability net_bind_service;
18774 ')
18775
18776 ########################################
18777 ## <summary>
18778 -## Make a TCP connection to the postgresql port.
18779 +## Make a TCP connection to the portmap port.
18780 ## </summary>
18781 ## <param name="domain">
18782 ## <summary>
18783 @@ -64471,18 +65357,18 @@ interface(`corenet_udp_bind_postgresql_port',`
18784 ## </summary>
18785 ## </param>
18786 #
18787 -interface(`corenet_tcp_connect_postgresql_port',`
18788 +interface(`corenet_tcp_connect_portmap_port',`
18789 gen_require(`
18790 - type postgresql_port_t;
18791 + type portmap_port_t;
18792 ')
18793
18794 - allow $1 postgresql_port_t:tcp_socket name_connect;
18795 + allow $1 portmap_port_t:tcp_socket name_connect;
18796 ')
18797
18798
18799 ########################################
18800 ## <summary>
18801 -## Send postgresql_client packets.
18802 +## Send portmap_client packets.
18803 ## </summary>
18804 ## <param name="domain">
18805 ## <summary>
18806 @@ -64491,17 +65377,17 @@ interface(`corenet_tcp_connect_postgresql_port',`
18807 ## </param>
18808 ## <infoflow type="write" weight="10"/>
18809 #
18810 -interface(`corenet_send_postgresql_client_packets',`
18811 +interface(`corenet_send_portmap_client_packets',`
18812 gen_require(`
18813 - type postgresql_client_packet_t;
18814 + type portmap_client_packet_t;
18815 ')
18816
18817 - allow $1 postgresql_client_packet_t:packet send;
18818 + allow $1 portmap_client_packet_t:packet send;
18819 ')
18820
18821 ########################################
18822 ## <summary>
18823 -## Do not audit attempts to send postgresql_client packets.
18824 +## Do not audit attempts to send portmap_client packets.
18825 ## </summary>
18826 ## <param name="domain">
18827 ## <summary>
18828 @@ -64510,17 +65396,17 @@ interface(`corenet_send_postgresql_client_packets',`
18829 ## </param>
18830 ## <infoflow type="none"/>
18831 #
18832 -interface(`corenet_dontaudit_send_postgresql_client_packets',`
18833 +interface(`corenet_dontaudit_send_portmap_client_packets',`
18834 gen_require(`
18835 - type postgresql_client_packet_t;
18836 + type portmap_client_packet_t;
18837 ')
18838
18839 - dontaudit $1 postgresql_client_packet_t:packet send;
18840 + dontaudit $1 portmap_client_packet_t:packet send;
18841 ')
18842
18843 ########################################
18844 ## <summary>
18845 -## Receive postgresql_client packets.
18846 +## Receive portmap_client packets.
18847 ## </summary>
18848 ## <param name="domain">
18849 ## <summary>
18850 @@ -64529,17 +65415,17 @@ interface(`corenet_dontaudit_send_postgresql_client_packets',`
18851 ## </param>
18852 ## <infoflow type="read" weight="10"/>
18853 #
18854 -interface(`corenet_receive_postgresql_client_packets',`
18855 +interface(`corenet_receive_portmap_client_packets',`
18856 gen_require(`
18857 - type postgresql_client_packet_t;
18858 + type portmap_client_packet_t;
18859 ')
18860
18861 - allow $1 postgresql_client_packet_t:packet recv;
18862 + allow $1 portmap_client_packet_t:packet recv;
18863 ')
18864
18865 ########################################
18866 ## <summary>
18867 -## Do not audit attempts to receive postgresql_client packets.
18868 +## Do not audit attempts to receive portmap_client packets.
18869 ## </summary>
18870 ## <param name="domain">
18871 ## <summary>
18872 @@ -64548,17 +65434,17 @@ interface(`corenet_receive_postgresql_client_packets',`
18873 ## </param>
18874 ## <infoflow type="none"/>
18875 #
18876 -interface(`corenet_dontaudit_receive_postgresql_client_packets',`
18877 +interface(`corenet_dontaudit_receive_portmap_client_packets',`
18878 gen_require(`
18879 - type postgresql_client_packet_t;
18880 + type portmap_client_packet_t;
18881 ')
18882
18883 - dontaudit $1 postgresql_client_packet_t:packet recv;
18884 + dontaudit $1 portmap_client_packet_t:packet recv;
18885 ')
18886
18887 ########################################
18888 ## <summary>
18889 -## Send and receive postgresql_client packets.
18890 +## Send and receive portmap_client packets.
18891 ## </summary>
18892 ## <param name="domain">
18893 ## <summary>
18894 @@ -64567,14 +65453,14 @@ interface(`corenet_dontaudit_receive_postgresql_client_packets',`
18895 ## </param>
18896 ## <infoflow type="both" weight="10"/>
18897 #
18898 -interface(`corenet_sendrecv_postgresql_client_packets',`
18899 - corenet_send_postgresql_client_packets($1)
18900 - corenet_receive_postgresql_client_packets($1)
18901 +interface(`corenet_sendrecv_portmap_client_packets',`
18902 + corenet_send_portmap_client_packets($1)
18903 + corenet_receive_portmap_client_packets($1)
18904 ')
18905
18906 ########################################
18907 ## <summary>
18908 -## Do not audit attempts to send and receive postgresql_client packets.
18909 +## Do not audit attempts to send and receive portmap_client packets.
18910 ## </summary>
18911 ## <param name="domain">
18912 ## <summary>
18913 @@ -64583,14 +65469,14 @@ interface(`corenet_sendrecv_postgresql_client_packets',`
18914 ## </param>
18915 ## <infoflow type="none"/>
18916 #
18917 -interface(`corenet_dontaudit_sendrecv_postgresql_client_packets',`
18918 - corenet_dontaudit_send_postgresql_client_packets($1)
18919 - corenet_dontaudit_receive_postgresql_client_packets($1)
18920 +interface(`corenet_dontaudit_sendrecv_portmap_client_packets',`
18921 + corenet_dontaudit_send_portmap_client_packets($1)
18922 + corenet_dontaudit_receive_portmap_client_packets($1)
18923 ')
18924
18925 ########################################
18926 ## <summary>
18927 -## Relabel packets to postgresql_client the packet type.
18928 +## Relabel packets to portmap_client the packet type.
18929 ## </summary>
18930 ## <param name="domain">
18931 ## <summary>
18932 @@ -64598,18 +65484,18 @@ interface(`corenet_dontaudit_sendrecv_postgresql_client_packets',`
18933 ## </summary>
18934 ## </param>
18935 #
18936 -interface(`corenet_relabelto_postgresql_client_packets',`
18937 +interface(`corenet_relabelto_portmap_client_packets',`
18938 gen_require(`
18939 - type postgresql_client_packet_t;
18940 + type portmap_client_packet_t;
18941 ')
18942
18943 - allow $1 postgresql_client_packet_t:packet relabelto;
18944 + allow $1 portmap_client_packet_t:packet relabelto;
18945 ')
18946
18947
18948 ########################################
18949 ## <summary>
18950 -## Send postgresql_server packets.
18951 +## Send portmap_server packets.
18952 ## </summary>
18953 ## <param name="domain">
18954 ## <summary>
18955 @@ -64618,17 +65504,17 @@ interface(`corenet_relabelto_postgresql_client_packets',`
18956 ## </param>
18957 ## <infoflow type="write" weight="10"/>
18958 #
18959 -interface(`corenet_send_postgresql_server_packets',`
18960 +interface(`corenet_send_portmap_server_packets',`
18961 gen_require(`
18962 - type postgresql_server_packet_t;
18963 + type portmap_server_packet_t;
18964 ')
18965
18966 - allow $1 postgresql_server_packet_t:packet send;
18967 + allow $1 portmap_server_packet_t:packet send;
18968 ')
18969
18970 ########################################
18971 ## <summary>
18972 -## Do not audit attempts to send postgresql_server packets.
18973 +## Do not audit attempts to send portmap_server packets.
18974 ## </summary>
18975 ## <param name="domain">
18976 ## <summary>
18977 @@ -64637,17 +65523,17 @@ interface(`corenet_send_postgresql_server_packets',`
18978 ## </param>
18979 ## <infoflow type="none"/>
18980 #
18981 -interface(`corenet_dontaudit_send_postgresql_server_packets',`
18982 +interface(`corenet_dontaudit_send_portmap_server_packets',`
18983 gen_require(`
18984 - type postgresql_server_packet_t;
18985 + type portmap_server_packet_t;
18986 ')
18987
18988 - dontaudit $1 postgresql_server_packet_t:packet send;
18989 + dontaudit $1 portmap_server_packet_t:packet send;
18990 ')
18991
18992 ########################################
18993 ## <summary>
18994 -## Receive postgresql_server packets.
18995 +## Receive portmap_server packets.
18996 ## </summary>
18997 ## <param name="domain">
18998 ## <summary>
18999 @@ -64656,17 +65542,17 @@ interface(`corenet_dontaudit_send_postgresql_server_packets',`
19000 ## </param>
19001 ## <infoflow type="read" weight="10"/>
19002 #
19003 -interface(`corenet_receive_postgresql_server_packets',`
19004 +interface(`corenet_receive_portmap_server_packets',`
19005 gen_require(`
19006 - type postgresql_server_packet_t;
19007 + type portmap_server_packet_t;
19008 ')
19009
19010 - allow $1 postgresql_server_packet_t:packet recv;
19011 + allow $1 portmap_server_packet_t:packet recv;
19012 ')
19013
19014 ########################################
19015 ## <summary>
19016 -## Do not audit attempts to receive postgresql_server packets.
19017 +## Do not audit attempts to receive portmap_server packets.
19018 ## </summary>
19019 ## <param name="domain">
19020 ## <summary>
19021 @@ -64675,17 +65561,17 @@ interface(`corenet_receive_postgresql_server_packets',`
19022 ## </param>
19023 ## <infoflow type="none"/>
19024 #
19025 -interface(`corenet_dontaudit_receive_postgresql_server_packets',`
19026 +interface(`corenet_dontaudit_receive_portmap_server_packets',`
19027 gen_require(`
19028 - type postgresql_server_packet_t;
19029 + type portmap_server_packet_t;
19030 ')
19031
19032 - dontaudit $1 postgresql_server_packet_t:packet recv;
19033 + dontaudit $1 portmap_server_packet_t:packet recv;
19034 ')
19035
19036 ########################################
19037 ## <summary>
19038 -## Send and receive postgresql_server packets.
19039 +## Send and receive portmap_server packets.
19040 ## </summary>
19041 ## <param name="domain">
19042 ## <summary>
19043 @@ -64694,14 +65580,14 @@ interface(`corenet_dontaudit_receive_postgresql_server_packets',`
19044 ## </param>
19045 ## <infoflow type="both" weight="10"/>
19046 #
19047 -interface(`corenet_sendrecv_postgresql_server_packets',`
19048 - corenet_send_postgresql_server_packets($1)
19049 - corenet_receive_postgresql_server_packets($1)
19050 +interface(`corenet_sendrecv_portmap_server_packets',`
19051 + corenet_send_portmap_server_packets($1)
19052 + corenet_receive_portmap_server_packets($1)
19053 ')
19054
19055 ########################################
19056 ## <summary>
19057 -## Do not audit attempts to send and receive postgresql_server packets.
19058 +## Do not audit attempts to send and receive portmap_server packets.
19059 ## </summary>
19060 ## <param name="domain">
19061 ## <summary>
19062 @@ -64710,14 +65596,14 @@ interface(`corenet_sendrecv_postgresql_server_packets',`
19063 ## </param>
19064 ## <infoflow type="none"/>
19065 #
19066 -interface(`corenet_dontaudit_sendrecv_postgresql_server_packets',`
19067 - corenet_dontaudit_send_postgresql_server_packets($1)
19068 - corenet_dontaudit_receive_postgresql_server_packets($1)
19069 +interface(`corenet_dontaudit_sendrecv_portmap_server_packets',`
19070 + corenet_dontaudit_send_portmap_server_packets($1)
19071 + corenet_dontaudit_receive_portmap_server_packets($1)
19072 ')
19073
19074 ########################################
19075 ## <summary>
19076 -## Relabel packets to postgresql_server the packet type.
19077 +## Relabel packets to portmap_server the packet type.
19078 ## </summary>
19079 ## <param name="domain">
19080 ## <summary>
19081 @@ -64725,12 +65611,12 @@ interface(`corenet_dontaudit_sendrecv_postgresql_server_packets',`
19082 ## </summary>
19083 ## </param>
19084 #
19085 -interface(`corenet_relabelto_postgresql_server_packets',`
19086 +interface(`corenet_relabelto_portmap_server_packets',`
19087 gen_require(`
19088 - type postgresql_server_packet_t;
19089 + type portmap_server_packet_t;
19090 ')
19091
19092 - allow $1 postgresql_server_packet_t:packet relabelto;
19093 + allow $1 portmap_server_packet_t:packet relabelto;
19094 ')
19095
19096
19097 @@ -64738,7 +65624,7 @@ interface(`corenet_relabelto_postgresql_server_packets',`
19098
19099 ########################################
19100 ## <summary>
19101 -## Send and receive TCP traffic on the postgrey port.
19102 +## Send and receive TCP traffic on the postfix_policyd port.
19103 ## </summary>
19104 ## <param name="domain">
19105 ## <summary>
19106 @@ -64747,17 +65633,17 @@ interface(`corenet_relabelto_postgresql_server_packets',`
19107 ## </param>
19108 ## <infoflow type="both" weight="10"/>
19109 #
19110 -interface(`corenet_tcp_sendrecv_postgrey_port',`
19111 +interface(`corenet_tcp_sendrecv_postfix_policyd_port',`
19112 gen_require(`
19113 - type postgrey_port_t;
19114 + type postfix_policyd_port_t;
19115 ')
19116
19117 - allow $1 postgrey_port_t:tcp_socket { send_msg recv_msg };
19118 + allow $1 postfix_policyd_port_t:tcp_socket { send_msg recv_msg };
19119 ')
19120
19121 ########################################
19122 ## <summary>
19123 -## Send UDP traffic on the postgrey port.
19124 +## Send UDP traffic on the postfix_policyd port.
19125 ## </summary>
19126 ## <param name="domain">
19127 ## <summary>
19128 @@ -64766,17 +65652,17 @@ interface(`corenet_tcp_sendrecv_postgrey_port',`
19129 ## </param>
19130 ## <infoflow type="write" weight="10"/>
19131 #
19132 -interface(`corenet_udp_send_postgrey_port',`
19133 +interface(`corenet_udp_send_postfix_policyd_port',`
19134 gen_require(`
19135 - type postgrey_port_t;
19136 + type postfix_policyd_port_t;
19137 ')
19138
19139 - allow $1 postgrey_port_t:udp_socket send_msg;
19140 + allow $1 postfix_policyd_port_t:udp_socket send_msg;
19141 ')
19142
19143 ########################################
19144 ## <summary>
19145 -## Do not audit attempts to send UDP traffic on the postgrey port.
19146 +## Do not audit attempts to send UDP traffic on the postfix_policyd port.
19147 ## </summary>
19148 ## <param name="domain">
19149 ## <summary>
19150 @@ -64785,17 +65671,17 @@ interface(`corenet_udp_send_postgrey_port',`
19151 ## </param>
19152 ## <infoflow type="none"/>
19153 #
19154 -interface(`corenet_dontaudit_udp_send_postgrey_port',`
19155 +interface(`corenet_dontaudit_udp_send_postfix_policyd_port',`
19156 gen_require(`
19157 - type postgrey_port_t;
19158 + type postfix_policyd_port_t;
19159 ')
19160
19161 - dontaudit $1 postgrey_port_t:udp_socket send_msg;
19162 + dontaudit $1 postfix_policyd_port_t:udp_socket send_msg;
19163 ')
19164
19165 ########################################
19166 ## <summary>
19167 -## Receive UDP traffic on the postgrey port.
19168 +## Receive UDP traffic on the postfix_policyd port.
19169 ## </summary>
19170 ## <param name="domain">
19171 ## <summary>
19172 @@ -64804,17 +65690,17 @@ interface(`corenet_dontaudit_udp_send_postgrey_port',`
19173 ## </param>
19174 ## <infoflow type="read" weight="10"/>
19175 #
19176 -interface(`corenet_udp_receive_postgrey_port',`
19177 +interface(`corenet_udp_receive_postfix_policyd_port',`
19178 gen_require(`
19179 - type postgrey_port_t;
19180 + type postfix_policyd_port_t;
19181 ')
19182
19183 - allow $1 postgrey_port_t:udp_socket recv_msg;
19184 + allow $1 postfix_policyd_port_t:udp_socket recv_msg;
19185 ')
19186
19187 ########################################
19188 ## <summary>
19189 -## Do not audit attempts to receive UDP traffic on the postgrey port.
19190 +## Do not audit attempts to receive UDP traffic on the postfix_policyd port.
19191 ## </summary>
19192 ## <param name="domain">
19193 ## <summary>
19194 @@ -64823,17 +65709,17 @@ interface(`corenet_udp_receive_postgrey_port',`
19195 ## </param>
19196 ## <infoflow type="none"/>
19197 #
19198 -interface(`corenet_dontaudit_udp_receive_postgrey_port',`
19199 +interface(`corenet_dontaudit_udp_receive_postfix_policyd_port',`
19200 gen_require(`
19201 - type postgrey_port_t;
19202 + type postfix_policyd_port_t;
19203 ')
19204
19205 - dontaudit $1 postgrey_port_t:udp_socket recv_msg;
19206 + dontaudit $1 postfix_policyd_port_t:udp_socket recv_msg;
19207 ')
19208
19209 ########################################
19210 ## <summary>
19211 -## Send and receive UDP traffic on the postgrey port.
19212 +## Send and receive UDP traffic on the postfix_policyd port.
19213 ## </summary>
19214 ## <param name="domain">
19215 ## <summary>
19216 @@ -64842,15 +65728,15 @@ interface(`corenet_dontaudit_udp_receive_postgrey_port',`
19217 ## </param>
19218 ## <infoflow type="both" weight="10"/>
19219 #
19220 -interface(`corenet_udp_sendrecv_postgrey_port',`
19221 - corenet_udp_send_postgrey_port($1)
19222 - corenet_udp_receive_postgrey_port($1)
19223 +interface(`corenet_udp_sendrecv_postfix_policyd_port',`
19224 + corenet_udp_send_postfix_policyd_port($1)
19225 + corenet_udp_receive_postfix_policyd_port($1)
19226 ')
19227
19228 ########################################
19229 ## <summary>
19230 ## Do not audit attempts to send and receive
19231 -## UDP traffic on the postgrey port.
19232 +## UDP traffic on the postfix_policyd port.
19233 ## </summary>
19234 ## <param name="domain">
19235 ## <summary>
19236 @@ -64859,14 +65745,14 @@ interface(`corenet_udp_sendrecv_postgrey_port',`
19237 ## </param>
19238 ## <infoflow type="none"/>
19239 #
19240 -interface(`corenet_dontaudit_udp_sendrecv_postgrey_port',`
19241 - corenet_dontaudit_udp_send_postgrey_port($1)
19242 - corenet_dontaudit_udp_receive_postgrey_port($1)
19243 +interface(`corenet_dontaudit_udp_sendrecv_postfix_policyd_port',`
19244 + corenet_dontaudit_udp_send_postfix_policyd_port($1)
19245 + corenet_dontaudit_udp_receive_postfix_policyd_port($1)
19246 ')
19247
19248 ########################################
19249 ## <summary>
19250 -## Bind TCP sockets to the postgrey port.
19251 +## Bind TCP sockets to the postfix_policyd port.
19252 ## </summary>
19253 ## <param name="domain">
19254 ## <summary>
19255 @@ -64875,18 +65761,18 @@ interface(`corenet_dontaudit_udp_sendrecv_postgrey_port',`
19256 ## </param>
19257 ## <infoflow type="none"/>
19258 #
19259 -interface(`corenet_tcp_bind_postgrey_port',`
19260 +interface(`corenet_tcp_bind_postfix_policyd_port',`
19261 gen_require(`
19262 - type postgrey_port_t;
19263 + type postfix_policyd_port_t;
19264 ')
19265
19266 - allow $1 postgrey_port_t:tcp_socket name_bind;
19267 + allow $1 postfix_policyd_port_t:tcp_socket name_bind;
19268
19269 ')
19270
19271 ########################################
19272 ## <summary>
19273 -## Bind UDP sockets to the postgrey port.
19274 +## Bind UDP sockets to the postfix_policyd port.
19275 ## </summary>
19276 ## <param name="domain">
19277 ## <summary>
19278 @@ -64895,18 +65781,18 @@ interface(`corenet_tcp_bind_postgrey_port',`
19279 ## </param>
19280 ## <infoflow type="none"/>
19281 #
19282 -interface(`corenet_udp_bind_postgrey_port',`
19283 +interface(`corenet_udp_bind_postfix_policyd_port',`
19284 gen_require(`
19285 - type postgrey_port_t;
19286 + type postfix_policyd_port_t;
19287 ')
19288
19289 - allow $1 postgrey_port_t:udp_socket name_bind;
19290 + allow $1 postfix_policyd_port_t:udp_socket name_bind;
19291
19292 ')
19293
19294 ########################################
19295 ## <summary>
19296 -## Make a TCP connection to the postgrey port.
19297 +## Make a TCP connection to the postfix_policyd port.
19298 ## </summary>
19299 ## <param name="domain">
19300 ## <summary>
19301 @@ -64914,18 +65800,18 @@ interface(`corenet_udp_bind_postgrey_port',`
19302 ## </summary>
19303 ## </param>
19304 #
19305 -interface(`corenet_tcp_connect_postgrey_port',`
19306 +interface(`corenet_tcp_connect_postfix_policyd_port',`
19307 gen_require(`
19308 - type postgrey_port_t;
19309 + type postfix_policyd_port_t;
19310 ')
19311
19312 - allow $1 postgrey_port_t:tcp_socket name_connect;
19313 + allow $1 postfix_policyd_port_t:tcp_socket name_connect;
19314 ')
19315
19316
19317 ########################################
19318 ## <summary>
19319 -## Send postgrey_client packets.
19320 +## Send postfix_policyd_client packets.
19321 ## </summary>
19322 ## <param name="domain">
19323 ## <summary>
19324 @@ -64934,17 +65820,17 @@ interface(`corenet_tcp_connect_postgrey_port',`
19325 ## </param>
19326 ## <infoflow type="write" weight="10"/>
19327 #
19328 -interface(`corenet_send_postgrey_client_packets',`
19329 +interface(`corenet_send_postfix_policyd_client_packets',`
19330 gen_require(`
19331 - type postgrey_client_packet_t;
19332 + type postfix_policyd_client_packet_t;
19333 ')
19334
19335 - allow $1 postgrey_client_packet_t:packet send;
19336 + allow $1 postfix_policyd_client_packet_t:packet send;
19337 ')
19338
19339 ########################################
19340 ## <summary>
19341 -## Do not audit attempts to send postgrey_client packets.
19342 +## Do not audit attempts to send postfix_policyd_client packets.
19343 ## </summary>
19344 ## <param name="domain">
19345 ## <summary>
19346 @@ -64953,17 +65839,17 @@ interface(`corenet_send_postgrey_client_packets',`
19347 ## </param>
19348 ## <infoflow type="none"/>
19349 #
19350 -interface(`corenet_dontaudit_send_postgrey_client_packets',`
19351 +interface(`corenet_dontaudit_send_postfix_policyd_client_packets',`
19352 gen_require(`
19353 - type postgrey_client_packet_t;
19354 + type postfix_policyd_client_packet_t;
19355 ')
19356
19357 - dontaudit $1 postgrey_client_packet_t:packet send;
19358 + dontaudit $1 postfix_policyd_client_packet_t:packet send;
19359 ')
19360
19361 ########################################
19362 ## <summary>
19363 -## Receive postgrey_client packets.
19364 +## Receive postfix_policyd_client packets.
19365 ## </summary>
19366 ## <param name="domain">
19367 ## <summary>
19368 @@ -64972,17 +65858,17 @@ interface(`corenet_dontaudit_send_postgrey_client_packets',`
19369 ## </param>
19370 ## <infoflow type="read" weight="10"/>
19371 #
19372 -interface(`corenet_receive_postgrey_client_packets',`
19373 +interface(`corenet_receive_postfix_policyd_client_packets',`
19374 gen_require(`
19375 - type postgrey_client_packet_t;
19376 + type postfix_policyd_client_packet_t;
19377 ')
19378
19379 - allow $1 postgrey_client_packet_t:packet recv;
19380 + allow $1 postfix_policyd_client_packet_t:packet recv;
19381 ')
19382
19383 ########################################
19384 ## <summary>
19385 -## Do not audit attempts to receive postgrey_client packets.
19386 +## Do not audit attempts to receive postfix_policyd_client packets.
19387 ## </summary>
19388 ## <param name="domain">
19389 ## <summary>
19390 @@ -64991,17 +65877,17 @@ interface(`corenet_receive_postgrey_client_packets',`
19391 ## </param>
19392 ## <infoflow type="none"/>
19393 #
19394 -interface(`corenet_dontaudit_receive_postgrey_client_packets',`
19395 +interface(`corenet_dontaudit_receive_postfix_policyd_client_packets',`
19396 gen_require(`
19397 - type postgrey_client_packet_t;
19398 + type postfix_policyd_client_packet_t;
19399 ')
19400
19401 - dontaudit $1 postgrey_client_packet_t:packet recv;
19402 + dontaudit $1 postfix_policyd_client_packet_t:packet recv;
19403 ')
19404
19405 ########################################
19406 ## <summary>
19407 -## Send and receive postgrey_client packets.
19408 +## Send and receive postfix_policyd_client packets.
19409 ## </summary>
19410 ## <param name="domain">
19411 ## <summary>
19412 @@ -65010,14 +65896,14 @@ interface(`corenet_dontaudit_receive_postgrey_client_packets',`
19413 ## </param>
19414 ## <infoflow type="both" weight="10"/>
19415 #
19416 -interface(`corenet_sendrecv_postgrey_client_packets',`
19417 - corenet_send_postgrey_client_packets($1)
19418 - corenet_receive_postgrey_client_packets($1)
19419 +interface(`corenet_sendrecv_postfix_policyd_client_packets',`
19420 + corenet_send_postfix_policyd_client_packets($1)
19421 + corenet_receive_postfix_policyd_client_packets($1)
19422 ')
19423
19424 ########################################
19425 ## <summary>
19426 -## Do not audit attempts to send and receive postgrey_client packets.
19427 +## Do not audit attempts to send and receive postfix_policyd_client packets.
19428 ## </summary>
19429 ## <param name="domain">
19430 ## <summary>
19431 @@ -65026,14 +65912,14 @@ interface(`corenet_sendrecv_postgrey_client_packets',`
19432 ## </param>
19433 ## <infoflow type="none"/>
19434 #
19435 -interface(`corenet_dontaudit_sendrecv_postgrey_client_packets',`
19436 - corenet_dontaudit_send_postgrey_client_packets($1)
19437 - corenet_dontaudit_receive_postgrey_client_packets($1)
19438 +interface(`corenet_dontaudit_sendrecv_postfix_policyd_client_packets',`
19439 + corenet_dontaudit_send_postfix_policyd_client_packets($1)
19440 + corenet_dontaudit_receive_postfix_policyd_client_packets($1)
19441 ')
19442
19443 ########################################
19444 ## <summary>
19445 -## Relabel packets to postgrey_client the packet type.
19446 +## Relabel packets to postfix_policyd_client the packet type.
19447 ## </summary>
19448 ## <param name="domain">
19449 ## <summary>
19450 @@ -65041,18 +65927,18 @@ interface(`corenet_dontaudit_sendrecv_postgrey_client_packets',`
19451 ## </summary>
19452 ## </param>
19453 #
19454 -interface(`corenet_relabelto_postgrey_client_packets',`
19455 +interface(`corenet_relabelto_postfix_policyd_client_packets',`
19456 gen_require(`
19457 - type postgrey_client_packet_t;
19458 + type postfix_policyd_client_packet_t;
19459 ')
19460
19461 - allow $1 postgrey_client_packet_t:packet relabelto;
19462 + allow $1 postfix_policyd_client_packet_t:packet relabelto;
19463 ')
19464
19465
19466 ########################################
19467 ## <summary>
19468 -## Send postgrey_server packets.
19469 +## Send postfix_policyd_server packets.
19470 ## </summary>
19471 ## <param name="domain">
19472 ## <summary>
19473 @@ -65061,17 +65947,17 @@ interface(`corenet_relabelto_postgrey_client_packets',`
19474 ## </param>
19475 ## <infoflow type="write" weight="10"/>
19476 #
19477 -interface(`corenet_send_postgrey_server_packets',`
19478 +interface(`corenet_send_postfix_policyd_server_packets',`
19479 gen_require(`
19480 - type postgrey_server_packet_t;
19481 + type postfix_policyd_server_packet_t;
19482 ')
19483
19484 - allow $1 postgrey_server_packet_t:packet send;
19485 + allow $1 postfix_policyd_server_packet_t:packet send;
19486 ')
19487
19488 ########################################
19489 ## <summary>
19490 -## Do not audit attempts to send postgrey_server packets.
19491 +## Do not audit attempts to send postfix_policyd_server packets.
19492 ## </summary>
19493 ## <param name="domain">
19494 ## <summary>
19495 @@ -65080,17 +65966,17 @@ interface(`corenet_send_postgrey_server_packets',`
19496 ## </param>
19497 ## <infoflow type="none"/>
19498 #
19499 -interface(`corenet_dontaudit_send_postgrey_server_packets',`
19500 +interface(`corenet_dontaudit_send_postfix_policyd_server_packets',`
19501 gen_require(`
19502 - type postgrey_server_packet_t;
19503 + type postfix_policyd_server_packet_t;
19504 ')
19505
19506 - dontaudit $1 postgrey_server_packet_t:packet send;
19507 + dontaudit $1 postfix_policyd_server_packet_t:packet send;
19508 ')
19509
19510 ########################################
19511 ## <summary>
19512 -## Receive postgrey_server packets.
19513 +## Receive postfix_policyd_server packets.
19514 ## </summary>
19515 ## <param name="domain">
19516 ## <summary>
19517 @@ -65099,17 +65985,17 @@ interface(`corenet_dontaudit_send_postgrey_server_packets',`
19518 ## </param>
19519 ## <infoflow type="read" weight="10"/>
19520 #
19521 -interface(`corenet_receive_postgrey_server_packets',`
19522 +interface(`corenet_receive_postfix_policyd_server_packets',`
19523 gen_require(`
19524 - type postgrey_server_packet_t;
19525 + type postfix_policyd_server_packet_t;
19526 ')
19527
19528 - allow $1 postgrey_server_packet_t:packet recv;
19529 + allow $1 postfix_policyd_server_packet_t:packet recv;
19530 ')
19531
19532 ########################################
19533 ## <summary>
19534 -## Do not audit attempts to receive postgrey_server packets.
19535 +## Do not audit attempts to receive postfix_policyd_server packets.
19536 ## </summary>
19537 ## <param name="domain">
19538 ## <summary>
19539 @@ -65118,17 +66004,17 @@ interface(`corenet_receive_postgrey_server_packets',`
19540 ## </param>
19541 ## <infoflow type="none"/>
19542 #
19543 -interface(`corenet_dontaudit_receive_postgrey_server_packets',`
19544 +interface(`corenet_dontaudit_receive_postfix_policyd_server_packets',`
19545 gen_require(`
19546 - type postgrey_server_packet_t;
19547 + type postfix_policyd_server_packet_t;
19548 ')
19549
19550 - dontaudit $1 postgrey_server_packet_t:packet recv;
19551 + dontaudit $1 postfix_policyd_server_packet_t:packet recv;
19552 ')
19553
19554 ########################################
19555 ## <summary>
19556 -## Send and receive postgrey_server packets.
19557 +## Send and receive postfix_policyd_server packets.
19558 ## </summary>
19559 ## <param name="domain">
19560 ## <summary>
19561 @@ -65137,14 +66023,14 @@ interface(`corenet_dontaudit_receive_postgrey_server_packets',`
19562 ## </param>
19563 ## <infoflow type="both" weight="10"/>
19564 #
19565 -interface(`corenet_sendrecv_postgrey_server_packets',`
19566 - corenet_send_postgrey_server_packets($1)
19567 - corenet_receive_postgrey_server_packets($1)
19568 +interface(`corenet_sendrecv_postfix_policyd_server_packets',`
19569 + corenet_send_postfix_policyd_server_packets($1)
19570 + corenet_receive_postfix_policyd_server_packets($1)
19571 ')
19572
19573 ########################################
19574 ## <summary>
19575 -## Do not audit attempts to send and receive postgrey_server packets.
19576 +## Do not audit attempts to send and receive postfix_policyd_server packets.
19577 ## </summary>
19578 ## <param name="domain">
19579 ## <summary>
19580 @@ -65153,14 +66039,14 @@ interface(`corenet_sendrecv_postgrey_server_packets',`
19581 ## </param>
19582 ## <infoflow type="none"/>
19583 #
19584 -interface(`corenet_dontaudit_sendrecv_postgrey_server_packets',`
19585 - corenet_dontaudit_send_postgrey_server_packets($1)
19586 - corenet_dontaudit_receive_postgrey_server_packets($1)
19587 +interface(`corenet_dontaudit_sendrecv_postfix_policyd_server_packets',`
19588 + corenet_dontaudit_send_postfix_policyd_server_packets($1)
19589 + corenet_dontaudit_receive_postfix_policyd_server_packets($1)
19590 ')
19591
19592 ########################################
19593 ## <summary>
19594 -## Relabel packets to postgrey_server the packet type.
19595 +## Relabel packets to postfix_policyd_server the packet type.
19596 ## </summary>
19597 ## <param name="domain">
19598 ## <summary>
19599 @@ -65168,12 +66054,12 @@ interface(`corenet_dontaudit_sendrecv_postgrey_server_packets',`
19600 ## </summary>
19601 ## </param>
19602 #
19603 -interface(`corenet_relabelto_postgrey_server_packets',`
19604 +interface(`corenet_relabelto_postfix_policyd_server_packets',`
19605 gen_require(`
19606 - type postgrey_server_packet_t;
19607 + type postfix_policyd_server_packet_t;
19608 ')
19609
19610 - allow $1 postgrey_server_packet_t:packet relabelto;
19611 + allow $1 postfix_policyd_server_packet_t:packet relabelto;
19612 ')
19613
19614
19615 @@ -65181,7 +66067,7 @@ interface(`corenet_relabelto_postgrey_server_packets',`
19616
19617 ########################################
19618 ## <summary>
19619 -## Send and receive TCP traffic on the pptp port.
19620 +## Send and receive TCP traffic on the postgresql port.
19621 ## </summary>
19622 ## <param name="domain">
19623 ## <summary>
19624 @@ -65190,17 +66076,17 @@ interface(`corenet_relabelto_postgrey_server_packets',`
19625 ## </param>
19626 ## <infoflow type="both" weight="10"/>
19627 #
19628 -interface(`corenet_tcp_sendrecv_pptp_port',`
19629 +interface(`corenet_tcp_sendrecv_postgresql_port',`
19630 gen_require(`
19631 - type pptp_port_t;
19632 + type postgresql_port_t;
19633 ')
19634
19635 - allow $1 pptp_port_t:tcp_socket { send_msg recv_msg };
19636 + allow $1 postgresql_port_t:tcp_socket { send_msg recv_msg };
19637 ')
19638
19639 ########################################
19640 ## <summary>
19641 -## Send UDP traffic on the pptp port.
19642 +## Send UDP traffic on the postgresql port.
19643 ## </summary>
19644 ## <param name="domain">
19645 ## <summary>
19646 @@ -65209,17 +66095,17 @@ interface(`corenet_tcp_sendrecv_pptp_port',`
19647 ## </param>
19648 ## <infoflow type="write" weight="10"/>
19649 #
19650 -interface(`corenet_udp_send_pptp_port',`
19651 +interface(`corenet_udp_send_postgresql_port',`
19652 gen_require(`
19653 - type pptp_port_t;
19654 + type postgresql_port_t;
19655 ')
19656
19657 - allow $1 pptp_port_t:udp_socket send_msg;
19658 + allow $1 postgresql_port_t:udp_socket send_msg;
19659 ')
19660
19661 ########################################
19662 ## <summary>
19663 -## Do not audit attempts to send UDP traffic on the pptp port.
19664 +## Do not audit attempts to send UDP traffic on the postgresql port.
19665 ## </summary>
19666 ## <param name="domain">
19667 ## <summary>
19668 @@ -65228,17 +66114,17 @@ interface(`corenet_udp_send_pptp_port',`
19669 ## </param>
19670 ## <infoflow type="none"/>
19671 #
19672 -interface(`corenet_dontaudit_udp_send_pptp_port',`
19673 +interface(`corenet_dontaudit_udp_send_postgresql_port',`
19674 gen_require(`
19675 - type pptp_port_t;
19676 + type postgresql_port_t;
19677 ')
19678
19679 - dontaudit $1 pptp_port_t:udp_socket send_msg;
19680 + dontaudit $1 postgresql_port_t:udp_socket send_msg;
19681 ')
19682
19683 ########################################
19684 ## <summary>
19685 -## Receive UDP traffic on the pptp port.
19686 +## Receive UDP traffic on the postgresql port.
19687 ## </summary>
19688 ## <param name="domain">
19689 ## <summary>
19690 @@ -65247,17 +66133,17 @@ interface(`corenet_dontaudit_udp_send_pptp_port',`
19691 ## </param>
19692 ## <infoflow type="read" weight="10"/>
19693 #
19694 -interface(`corenet_udp_receive_pptp_port',`
19695 +interface(`corenet_udp_receive_postgresql_port',`
19696 gen_require(`
19697 - type pptp_port_t;
19698 + type postgresql_port_t;
19699 ')
19700
19701 - allow $1 pptp_port_t:udp_socket recv_msg;
19702 + allow $1 postgresql_port_t:udp_socket recv_msg;
19703 ')
19704
19705 ########################################
19706 ## <summary>
19707 -## Do not audit attempts to receive UDP traffic on the pptp port.
19708 +## Do not audit attempts to receive UDP traffic on the postgresql port.
19709 ## </summary>
19710 ## <param name="domain">
19711 ## <summary>
19712 @@ -65266,17 +66152,17 @@ interface(`corenet_udp_receive_pptp_port',`
19713 ## </param>
19714 ## <infoflow type="none"/>
19715 #
19716 -interface(`corenet_dontaudit_udp_receive_pptp_port',`
19717 +interface(`corenet_dontaudit_udp_receive_postgresql_port',`
19718 gen_require(`
19719 - type pptp_port_t;
19720 + type postgresql_port_t;
19721 ')
19722
19723 - dontaudit $1 pptp_port_t:udp_socket recv_msg;
19724 + dontaudit $1 postgresql_port_t:udp_socket recv_msg;
19725 ')
19726
19727 ########################################
19728 ## <summary>
19729 -## Send and receive UDP traffic on the pptp port.
19730 +## Send and receive UDP traffic on the postgresql port.
19731 ## </summary>
19732 ## <param name="domain">
19733 ## <summary>
19734 @@ -65285,15 +66171,15 @@ interface(`corenet_dontaudit_udp_receive_pptp_port',`
19735 ## </param>
19736 ## <infoflow type="both" weight="10"/>
19737 #
19738 -interface(`corenet_udp_sendrecv_pptp_port',`
19739 - corenet_udp_send_pptp_port($1)
19740 - corenet_udp_receive_pptp_port($1)
19741 +interface(`corenet_udp_sendrecv_postgresql_port',`
19742 + corenet_udp_send_postgresql_port($1)
19743 + corenet_udp_receive_postgresql_port($1)
19744 ')
19745
19746 ########################################
19747 ## <summary>
19748 ## Do not audit attempts to send and receive
19749 -## UDP traffic on the pptp port.
19750 +## UDP traffic on the postgresql port.
19751 ## </summary>
19752 ## <param name="domain">
19753 ## <summary>
19754 @@ -65302,14 +66188,14 @@ interface(`corenet_udp_sendrecv_pptp_port',`
19755 ## </param>
19756 ## <infoflow type="none"/>
19757 #
19758 -interface(`corenet_dontaudit_udp_sendrecv_pptp_port',`
19759 - corenet_dontaudit_udp_send_pptp_port($1)
19760 - corenet_dontaudit_udp_receive_pptp_port($1)
19761 +interface(`corenet_dontaudit_udp_sendrecv_postgresql_port',`
19762 + corenet_dontaudit_udp_send_postgresql_port($1)
19763 + corenet_dontaudit_udp_receive_postgresql_port($1)
19764 ')
19765
19766 ########################################
19767 ## <summary>
19768 -## Bind TCP sockets to the pptp port.
19769 +## Bind TCP sockets to the postgresql port.
19770 ## </summary>
19771 ## <param name="domain">
19772 ## <summary>
19773 @@ -65318,18 +66204,18 @@ interface(`corenet_dontaudit_udp_sendrecv_pptp_port',`
19774 ## </param>
19775 ## <infoflow type="none"/>
19776 #
19777 -interface(`corenet_tcp_bind_pptp_port',`
19778 +interface(`corenet_tcp_bind_postgresql_port',`
19779 gen_require(`
19780 - type pptp_port_t;
19781 + type postgresql_port_t;
19782 ')
19783
19784 - allow $1 pptp_port_t:tcp_socket name_bind;
19785 + allow $1 postgresql_port_t:tcp_socket name_bind;
19786
19787 ')
19788
19789 ########################################
19790 ## <summary>
19791 -## Bind UDP sockets to the pptp port.
19792 +## Bind UDP sockets to the postgresql port.
19793 ## </summary>
19794 ## <param name="domain">
19795 ## <summary>
19796 @@ -65338,18 +66224,18 @@ interface(`corenet_tcp_bind_pptp_port',`
19797 ## </param>
19798 ## <infoflow type="none"/>
19799 #
19800 -interface(`corenet_udp_bind_pptp_port',`
19801 +interface(`corenet_udp_bind_postgresql_port',`
19802 gen_require(`
19803 - type pptp_port_t;
19804 + type postgresql_port_t;
19805 ')
19806
19807 - allow $1 pptp_port_t:udp_socket name_bind;
19808 + allow $1 postgresql_port_t:udp_socket name_bind;
19809
19810 ')
19811
19812 ########################################
19813 ## <summary>
19814 -## Make a TCP connection to the pptp port.
19815 +## Make a TCP connection to the postgresql port.
19816 ## </summary>
19817 ## <param name="domain">
19818 ## <summary>
19819 @@ -65357,18 +66243,18 @@ interface(`corenet_udp_bind_pptp_port',`
19820 ## </summary>
19821 ## </param>
19822 #
19823 -interface(`corenet_tcp_connect_pptp_port',`
19824 +interface(`corenet_tcp_connect_postgresql_port',`
19825 gen_require(`
19826 - type pptp_port_t;
19827 + type postgresql_port_t;
19828 ')
19829
19830 - allow $1 pptp_port_t:tcp_socket name_connect;
19831 + allow $1 postgresql_port_t:tcp_socket name_connect;
19832 ')
19833
19834
19835 ########################################
19836 ## <summary>
19837 -## Send pptp_client packets.
19838 +## Send postgresql_client packets.
19839 ## </summary>
19840 ## <param name="domain">
19841 ## <summary>
19842 @@ -65377,17 +66263,17 @@ interface(`corenet_tcp_connect_pptp_port',`
19843 ## </param>
19844 ## <infoflow type="write" weight="10"/>
19845 #
19846 -interface(`corenet_send_pptp_client_packets',`
19847 +interface(`corenet_send_postgresql_client_packets',`
19848 gen_require(`
19849 - type pptp_client_packet_t;
19850 + type postgresql_client_packet_t;
19851 ')
19852
19853 - allow $1 pptp_client_packet_t:packet send;
19854 + allow $1 postgresql_client_packet_t:packet send;
19855 ')
19856
19857 ########################################
19858 ## <summary>
19859 -## Do not audit attempts to send pptp_client packets.
19860 +## Do not audit attempts to send postgresql_client packets.
19861 ## </summary>
19862 ## <param name="domain">
19863 ## <summary>
19864 @@ -65396,17 +66282,17 @@ interface(`corenet_send_pptp_client_packets',`
19865 ## </param>
19866 ## <infoflow type="none"/>
19867 #
19868 -interface(`corenet_dontaudit_send_pptp_client_packets',`
19869 +interface(`corenet_dontaudit_send_postgresql_client_packets',`
19870 gen_require(`
19871 - type pptp_client_packet_t;
19872 + type postgresql_client_packet_t;
19873 ')
19874
19875 - dontaudit $1 pptp_client_packet_t:packet send;
19876 + dontaudit $1 postgresql_client_packet_t:packet send;
19877 ')
19878
19879 ########################################
19880 ## <summary>
19881 -## Receive pptp_client packets.
19882 +## Receive postgresql_client packets.
19883 ## </summary>
19884 ## <param name="domain">
19885 ## <summary>
19886 @@ -65415,17 +66301,17 @@ interface(`corenet_dontaudit_send_pptp_client_packets',`
19887 ## </param>
19888 ## <infoflow type="read" weight="10"/>
19889 #
19890 -interface(`corenet_receive_pptp_client_packets',`
19891 +interface(`corenet_receive_postgresql_client_packets',`
19892 gen_require(`
19893 - type pptp_client_packet_t;
19894 + type postgresql_client_packet_t;
19895 ')
19896
19897 - allow $1 pptp_client_packet_t:packet recv;
19898 + allow $1 postgresql_client_packet_t:packet recv;
19899 ')
19900
19901 ########################################
19902 ## <summary>
19903 -## Do not audit attempts to receive pptp_client packets.
19904 +## Do not audit attempts to receive postgresql_client packets.
19905 ## </summary>
19906 ## <param name="domain">
19907 ## <summary>
19908 @@ -65434,17 +66320,17 @@ interface(`corenet_receive_pptp_client_packets',`
19909 ## </param>
19910 ## <infoflow type="none"/>
19911 #
19912 -interface(`corenet_dontaudit_receive_pptp_client_packets',`
19913 +interface(`corenet_dontaudit_receive_postgresql_client_packets',`
19914 gen_require(`
19915 - type pptp_client_packet_t;
19916 + type postgresql_client_packet_t;
19917 ')
19918
19919 - dontaudit $1 pptp_client_packet_t:packet recv;
19920 + dontaudit $1 postgresql_client_packet_t:packet recv;
19921 ')
19922
19923 ########################################
19924 ## <summary>
19925 -## Send and receive pptp_client packets.
19926 +## Send and receive postgresql_client packets.
19927 ## </summary>
19928 ## <param name="domain">
19929 ## <summary>
19930 @@ -65453,14 +66339,14 @@ interface(`corenet_dontaudit_receive_pptp_client_packets',`
19931 ## </param>
19932 ## <infoflow type="both" weight="10"/>
19933 #
19934 -interface(`corenet_sendrecv_pptp_client_packets',`
19935 - corenet_send_pptp_client_packets($1)
19936 - corenet_receive_pptp_client_packets($1)
19937 +interface(`corenet_sendrecv_postgresql_client_packets',`
19938 + corenet_send_postgresql_client_packets($1)
19939 + corenet_receive_postgresql_client_packets($1)
19940 ')
19941
19942 ########################################
19943 ## <summary>
19944 -## Do not audit attempts to send and receive pptp_client packets.
19945 +## Do not audit attempts to send and receive postgresql_client packets.
19946 ## </summary>
19947 ## <param name="domain">
19948 ## <summary>
19949 @@ -65469,14 +66355,14 @@ interface(`corenet_sendrecv_pptp_client_packets',`
19950 ## </param>
19951 ## <infoflow type="none"/>
19952 #
19953 -interface(`corenet_dontaudit_sendrecv_pptp_client_packets',`
19954 - corenet_dontaudit_send_pptp_client_packets($1)
19955 - corenet_dontaudit_receive_pptp_client_packets($1)
19956 +interface(`corenet_dontaudit_sendrecv_postgresql_client_packets',`
19957 + corenet_dontaudit_send_postgresql_client_packets($1)
19958 + corenet_dontaudit_receive_postgresql_client_packets($1)
19959 ')
19960
19961 ########################################
19962 ## <summary>
19963 -## Relabel packets to pptp_client the packet type.
19964 +## Relabel packets to postgresql_client the packet type.
19965 ## </summary>
19966 ## <param name="domain">
19967 ## <summary>
19968 @@ -65484,18 +66370,18 @@ interface(`corenet_dontaudit_sendrecv_pptp_client_packets',`
19969 ## </summary>
19970 ## </param>
19971 #
19972 -interface(`corenet_relabelto_pptp_client_packets',`
19973 +interface(`corenet_relabelto_postgresql_client_packets',`
19974 gen_require(`
19975 - type pptp_client_packet_t;
19976 + type postgresql_client_packet_t;
19977 ')
19978
19979 - allow $1 pptp_client_packet_t:packet relabelto;
19980 + allow $1 postgresql_client_packet_t:packet relabelto;
19981 ')
19982
19983
19984 ########################################
19985 ## <summary>
19986 -## Send pptp_server packets.
19987 +## Send postgresql_server packets.
19988 ## </summary>
19989 ## <param name="domain">
19990 ## <summary>
19991 @@ -65504,17 +66390,17 @@ interface(`corenet_relabelto_pptp_client_packets',`
19992 ## </param>
19993 ## <infoflow type="write" weight="10"/>
19994 #
19995 -interface(`corenet_send_pptp_server_packets',`
19996 +interface(`corenet_send_postgresql_server_packets',`
19997 gen_require(`
19998 - type pptp_server_packet_t;
19999 + type postgresql_server_packet_t;
20000 ')
20001
20002 - allow $1 pptp_server_packet_t:packet send;
20003 + allow $1 postgresql_server_packet_t:packet send;
20004 ')
20005
20006 ########################################
20007 ## <summary>
20008 -## Do not audit attempts to send pptp_server packets.
20009 +## Do not audit attempts to send postgresql_server packets.
20010 ## </summary>
20011 ## <param name="domain">
20012 ## <summary>
20013 @@ -65523,17 +66409,17 @@ interface(`corenet_send_pptp_server_packets',`
20014 ## </param>
20015 ## <infoflow type="none"/>
20016 #
20017 -interface(`corenet_dontaudit_send_pptp_server_packets',`
20018 +interface(`corenet_dontaudit_send_postgresql_server_packets',`
20019 gen_require(`
20020 - type pptp_server_packet_t;
20021 + type postgresql_server_packet_t;
20022 ')
20023
20024 - dontaudit $1 pptp_server_packet_t:packet send;
20025 + dontaudit $1 postgresql_server_packet_t:packet send;
20026 ')
20027
20028 ########################################
20029 ## <summary>
20030 -## Receive pptp_server packets.
20031 +## Receive postgresql_server packets.
20032 ## </summary>
20033 ## <param name="domain">
20034 ## <summary>
20035 @@ -65542,17 +66428,17 @@ interface(`corenet_dontaudit_send_pptp_server_packets',`
20036 ## </param>
20037 ## <infoflow type="read" weight="10"/>
20038 #
20039 -interface(`corenet_receive_pptp_server_packets',`
20040 +interface(`corenet_receive_postgresql_server_packets',`
20041 gen_require(`
20042 - type pptp_server_packet_t;
20043 + type postgresql_server_packet_t;
20044 ')
20045
20046 - allow $1 pptp_server_packet_t:packet recv;
20047 + allow $1 postgresql_server_packet_t:packet recv;
20048 ')
20049
20050 ########################################
20051 ## <summary>
20052 -## Do not audit attempts to receive pptp_server packets.
20053 +## Do not audit attempts to receive postgresql_server packets.
20054 ## </summary>
20055 ## <param name="domain">
20056 ## <summary>
20057 @@ -65561,17 +66447,17 @@ interface(`corenet_receive_pptp_server_packets',`
20058 ## </param>
20059 ## <infoflow type="none"/>
20060 #
20061 -interface(`corenet_dontaudit_receive_pptp_server_packets',`
20062 +interface(`corenet_dontaudit_receive_postgresql_server_packets',`
20063 gen_require(`
20064 - type pptp_server_packet_t;
20065 + type postgresql_server_packet_t;
20066 ')
20067
20068 - dontaudit $1 pptp_server_packet_t:packet recv;
20069 + dontaudit $1 postgresql_server_packet_t:packet recv;
20070 ')
20071
20072 ########################################
20073 ## <summary>
20074 -## Send and receive pptp_server packets.
20075 +## Send and receive postgresql_server packets.
20076 ## </summary>
20077 ## <param name="domain">
20078 ## <summary>
20079 @@ -65580,14 +66466,14 @@ interface(`corenet_dontaudit_receive_pptp_server_packets',`
20080 ## </param>
20081 ## <infoflow type="both" weight="10"/>
20082 #
20083 -interface(`corenet_sendrecv_pptp_server_packets',`
20084 - corenet_send_pptp_server_packets($1)
20085 - corenet_receive_pptp_server_packets($1)
20086 +interface(`corenet_sendrecv_postgresql_server_packets',`
20087 + corenet_send_postgresql_server_packets($1)
20088 + corenet_receive_postgresql_server_packets($1)
20089 ')
20090
20091 ########################################
20092 ## <summary>
20093 -## Do not audit attempts to send and receive pptp_server packets.
20094 +## Do not audit attempts to send and receive postgresql_server packets.
20095 ## </summary>
20096 ## <param name="domain">
20097 ## <summary>
20098 @@ -65596,14 +66482,14 @@ interface(`corenet_sendrecv_pptp_server_packets',`
20099 ## </param>
20100 ## <infoflow type="none"/>
20101 #
20102 -interface(`corenet_dontaudit_sendrecv_pptp_server_packets',`
20103 - corenet_dontaudit_send_pptp_server_packets($1)
20104 - corenet_dontaudit_receive_pptp_server_packets($1)
20105 +interface(`corenet_dontaudit_sendrecv_postgresql_server_packets',`
20106 + corenet_dontaudit_send_postgresql_server_packets($1)
20107 + corenet_dontaudit_receive_postgresql_server_packets($1)
20108 ')
20109
20110 ########################################
20111 ## <summary>
20112 -## Relabel packets to pptp_server the packet type.
20113 +## Relabel packets to postgresql_server the packet type.
20114 ## </summary>
20115 ## <param name="domain">
20116 ## <summary>
20117 @@ -65611,12 +66497,12 @@ interface(`corenet_dontaudit_sendrecv_pptp_server_packets',`
20118 ## </summary>
20119 ## </param>
20120 #
20121 -interface(`corenet_relabelto_pptp_server_packets',`
20122 +interface(`corenet_relabelto_postgresql_server_packets',`
20123 gen_require(`
20124 - type pptp_server_packet_t;
20125 + type postgresql_server_packet_t;
20126 ')
20127
20128 - allow $1 pptp_server_packet_t:packet relabelto;
20129 + allow $1 postgresql_server_packet_t:packet relabelto;
20130 ')
20131
20132
20133 @@ -65624,7 +66510,7 @@ interface(`corenet_relabelto_pptp_server_packets',`
20134
20135 ########################################
20136 ## <summary>
20137 -## Send and receive TCP traffic on the prelude port.
20138 +## Send and receive TCP traffic on the postgrey port.
20139 ## </summary>
20140 ## <param name="domain">
20141 ## <summary>
20142 @@ -65633,17 +66519,17 @@ interface(`corenet_relabelto_pptp_server_packets',`
20143 ## </param>
20144 ## <infoflow type="both" weight="10"/>
20145 #
20146 -interface(`corenet_tcp_sendrecv_prelude_port',`
20147 +interface(`corenet_tcp_sendrecv_postgrey_port',`
20148 gen_require(`
20149 - type prelude_port_t;
20150 + type postgrey_port_t;
20151 ')
20152
20153 - allow $1 prelude_port_t:tcp_socket { send_msg recv_msg };
20154 + allow $1 postgrey_port_t:tcp_socket { send_msg recv_msg };
20155 ')
20156
20157 ########################################
20158 ## <summary>
20159 -## Send UDP traffic on the prelude port.
20160 +## Send UDP traffic on the postgrey port.
20161 ## </summary>
20162 ## <param name="domain">
20163 ## <summary>
20164 @@ -65652,17 +66538,17 @@ interface(`corenet_tcp_sendrecv_prelude_port',`
20165 ## </param>
20166 ## <infoflow type="write" weight="10"/>
20167 #
20168 -interface(`corenet_udp_send_prelude_port',`
20169 +interface(`corenet_udp_send_postgrey_port',`
20170 gen_require(`
20171 - type prelude_port_t;
20172 + type postgrey_port_t;
20173 ')
20174
20175 - allow $1 prelude_port_t:udp_socket send_msg;
20176 + allow $1 postgrey_port_t:udp_socket send_msg;
20177 ')
20178
20179 ########################################
20180 ## <summary>
20181 -## Do not audit attempts to send UDP traffic on the prelude port.
20182 +## Do not audit attempts to send UDP traffic on the postgrey port.
20183 ## </summary>
20184 ## <param name="domain">
20185 ## <summary>
20186 @@ -65671,17 +66557,17 @@ interface(`corenet_udp_send_prelude_port',`
20187 ## </param>
20188 ## <infoflow type="none"/>
20189 #
20190 -interface(`corenet_dontaudit_udp_send_prelude_port',`
20191 +interface(`corenet_dontaudit_udp_send_postgrey_port',`
20192 gen_require(`
20193 - type prelude_port_t;
20194 + type postgrey_port_t;
20195 ')
20196
20197 - dontaudit $1 prelude_port_t:udp_socket send_msg;
20198 + dontaudit $1 postgrey_port_t:udp_socket send_msg;
20199 ')
20200
20201 ########################################
20202 ## <summary>
20203 -## Receive UDP traffic on the prelude port.
20204 +## Receive UDP traffic on the postgrey port.
20205 ## </summary>
20206 ## <param name="domain">
20207 ## <summary>
20208 @@ -65690,17 +66576,17 @@ interface(`corenet_dontaudit_udp_send_prelude_port',`
20209 ## </param>
20210 ## <infoflow type="read" weight="10"/>
20211 #
20212 -interface(`corenet_udp_receive_prelude_port',`
20213 +interface(`corenet_udp_receive_postgrey_port',`
20214 gen_require(`
20215 - type prelude_port_t;
20216 + type postgrey_port_t;
20217 ')
20218
20219 - allow $1 prelude_port_t:udp_socket recv_msg;
20220 + allow $1 postgrey_port_t:udp_socket recv_msg;
20221 ')
20222
20223 ########################################
20224 ## <summary>
20225 -## Do not audit attempts to receive UDP traffic on the prelude port.
20226 +## Do not audit attempts to receive UDP traffic on the postgrey port.
20227 ## </summary>
20228 ## <param name="domain">
20229 ## <summary>
20230 @@ -65709,17 +66595,17 @@ interface(`corenet_udp_receive_prelude_port',`
20231 ## </param>
20232 ## <infoflow type="none"/>
20233 #
20234 -interface(`corenet_dontaudit_udp_receive_prelude_port',`
20235 +interface(`corenet_dontaudit_udp_receive_postgrey_port',`
20236 gen_require(`
20237 - type prelude_port_t;
20238 + type postgrey_port_t;
20239 ')
20240
20241 - dontaudit $1 prelude_port_t:udp_socket recv_msg;
20242 + dontaudit $1 postgrey_port_t:udp_socket recv_msg;
20243 ')
20244
20245 ########################################
20246 ## <summary>
20247 -## Send and receive UDP traffic on the prelude port.
20248 +## Send and receive UDP traffic on the postgrey port.
20249 ## </summary>
20250 ## <param name="domain">
20251 ## <summary>
20252 @@ -65728,15 +66614,15 @@ interface(`corenet_dontaudit_udp_receive_prelude_port',`
20253 ## </param>
20254 ## <infoflow type="both" weight="10"/>
20255 #
20256 -interface(`corenet_udp_sendrecv_prelude_port',`
20257 - corenet_udp_send_prelude_port($1)
20258 - corenet_udp_receive_prelude_port($1)
20259 +interface(`corenet_udp_sendrecv_postgrey_port',`
20260 + corenet_udp_send_postgrey_port($1)
20261 + corenet_udp_receive_postgrey_port($1)
20262 ')
20263
20264 ########################################
20265 ## <summary>
20266 ## Do not audit attempts to send and receive
20267 -## UDP traffic on the prelude port.
20268 +## UDP traffic on the postgrey port.
20269 ## </summary>
20270 ## <param name="domain">
20271 ## <summary>
20272 @@ -65745,14 +66631,14 @@ interface(`corenet_udp_sendrecv_prelude_port',`
20273 ## </param>
20274 ## <infoflow type="none"/>
20275 #
20276 -interface(`corenet_dontaudit_udp_sendrecv_prelude_port',`
20277 - corenet_dontaudit_udp_send_prelude_port($1)
20278 - corenet_dontaudit_udp_receive_prelude_port($1)
20279 +interface(`corenet_dontaudit_udp_sendrecv_postgrey_port',`
20280 + corenet_dontaudit_udp_send_postgrey_port($1)
20281 + corenet_dontaudit_udp_receive_postgrey_port($1)
20282 ')
20283
20284 ########################################
20285 ## <summary>
20286 -## Bind TCP sockets to the prelude port.
20287 +## Bind TCP sockets to the postgrey port.
20288 ## </summary>
20289 ## <param name="domain">
20290 ## <summary>
20291 @@ -65761,18 +66647,18 @@ interface(`corenet_dontaudit_udp_sendrecv_prelude_port',`
20292 ## </param>
20293 ## <infoflow type="none"/>
20294 #
20295 -interface(`corenet_tcp_bind_prelude_port',`
20296 +interface(`corenet_tcp_bind_postgrey_port',`
20297 gen_require(`
20298 - type prelude_port_t;
20299 + type postgrey_port_t;
20300 ')
20301
20302 - allow $1 prelude_port_t:tcp_socket name_bind;
20303 + allow $1 postgrey_port_t:tcp_socket name_bind;
20304
20305 ')
20306
20307 ########################################
20308 ## <summary>
20309 -## Bind UDP sockets to the prelude port.
20310 +## Bind UDP sockets to the postgrey port.
20311 ## </summary>
20312 ## <param name="domain">
20313 ## <summary>
20314 @@ -65781,18 +66667,18 @@ interface(`corenet_tcp_bind_prelude_port',`
20315 ## </param>
20316 ## <infoflow type="none"/>
20317 #
20318 -interface(`corenet_udp_bind_prelude_port',`
20319 +interface(`corenet_udp_bind_postgrey_port',`
20320 gen_require(`
20321 - type prelude_port_t;
20322 + type postgrey_port_t;
20323 ')
20324
20325 - allow $1 prelude_port_t:udp_socket name_bind;
20326 + allow $1 postgrey_port_t:udp_socket name_bind;
20327
20328 ')
20329
20330 ########################################
20331 ## <summary>
20332 -## Make a TCP connection to the prelude port.
20333 +## Make a TCP connection to the postgrey port.
20334 ## </summary>
20335 ## <param name="domain">
20336 ## <summary>
20337 @@ -65800,18 +66686,18 @@ interface(`corenet_udp_bind_prelude_port',`
20338 ## </summary>
20339 ## </param>
20340 #
20341 -interface(`corenet_tcp_connect_prelude_port',`
20342 +interface(`corenet_tcp_connect_postgrey_port',`
20343 gen_require(`
20344 - type prelude_port_t;
20345 + type postgrey_port_t;
20346 ')
20347
20348 - allow $1 prelude_port_t:tcp_socket name_connect;
20349 + allow $1 postgrey_port_t:tcp_socket name_connect;
20350 ')
20351
20352
20353 ########################################
20354 ## <summary>
20355 -## Send prelude_client packets.
20356 +## Send postgrey_client packets.
20357 ## </summary>
20358 ## <param name="domain">
20359 ## <summary>
20360 @@ -65820,17 +66706,17 @@ interface(`corenet_tcp_connect_prelude_port',`
20361 ## </param>
20362 ## <infoflow type="write" weight="10"/>
20363 #
20364 -interface(`corenet_send_prelude_client_packets',`
20365 +interface(`corenet_send_postgrey_client_packets',`
20366 gen_require(`
20367 - type prelude_client_packet_t;
20368 + type postgrey_client_packet_t;
20369 ')
20370
20371 - allow $1 prelude_client_packet_t:packet send;
20372 + allow $1 postgrey_client_packet_t:packet send;
20373 ')
20374
20375 ########################################
20376 ## <summary>
20377 -## Do not audit attempts to send prelude_client packets.
20378 +## Do not audit attempts to send postgrey_client packets.
20379 ## </summary>
20380 ## <param name="domain">
20381 ## <summary>
20382 @@ -65839,17 +66725,17 @@ interface(`corenet_send_prelude_client_packets',`
20383 ## </param>
20384 ## <infoflow type="none"/>
20385 #
20386 -interface(`corenet_dontaudit_send_prelude_client_packets',`
20387 +interface(`corenet_dontaudit_send_postgrey_client_packets',`
20388 gen_require(`
20389 - type prelude_client_packet_t;
20390 + type postgrey_client_packet_t;
20391 ')
20392
20393 - dontaudit $1 prelude_client_packet_t:packet send;
20394 + dontaudit $1 postgrey_client_packet_t:packet send;
20395 ')
20396
20397 ########################################
20398 ## <summary>
20399 -## Receive prelude_client packets.
20400 +## Receive postgrey_client packets.
20401 ## </summary>
20402 ## <param name="domain">
20403 ## <summary>
20404 @@ -65858,17 +66744,17 @@ interface(`corenet_dontaudit_send_prelude_client_packets',`
20405 ## </param>
20406 ## <infoflow type="read" weight="10"/>
20407 #
20408 -interface(`corenet_receive_prelude_client_packets',`
20409 +interface(`corenet_receive_postgrey_client_packets',`
20410 gen_require(`
20411 - type prelude_client_packet_t;
20412 + type postgrey_client_packet_t;
20413 ')
20414
20415 - allow $1 prelude_client_packet_t:packet recv;
20416 + allow $1 postgrey_client_packet_t:packet recv;
20417 ')
20418
20419 ########################################
20420 ## <summary>
20421 -## Do not audit attempts to receive prelude_client packets.
20422 +## Do not audit attempts to receive postgrey_client packets.
20423 ## </summary>
20424 ## <param name="domain">
20425 ## <summary>
20426 @@ -65877,17 +66763,17 @@ interface(`corenet_receive_prelude_client_packets',`
20427 ## </param>
20428 ## <infoflow type="none"/>
20429 #
20430 -interface(`corenet_dontaudit_receive_prelude_client_packets',`
20431 +interface(`corenet_dontaudit_receive_postgrey_client_packets',`
20432 gen_require(`
20433 - type prelude_client_packet_t;
20434 + type postgrey_client_packet_t;
20435 ')
20436
20437 - dontaudit $1 prelude_client_packet_t:packet recv;
20438 + dontaudit $1 postgrey_client_packet_t:packet recv;
20439 ')
20440
20441 ########################################
20442 ## <summary>
20443 -## Send and receive prelude_client packets.
20444 +## Send and receive postgrey_client packets.
20445 ## </summary>
20446 ## <param name="domain">
20447 ## <summary>
20448 @@ -65896,14 +66782,14 @@ interface(`corenet_dontaudit_receive_prelude_client_packets',`
20449 ## </param>
20450 ## <infoflow type="both" weight="10"/>
20451 #
20452 -interface(`corenet_sendrecv_prelude_client_packets',`
20453 - corenet_send_prelude_client_packets($1)
20454 - corenet_receive_prelude_client_packets($1)
20455 +interface(`corenet_sendrecv_postgrey_client_packets',`
20456 + corenet_send_postgrey_client_packets($1)
20457 + corenet_receive_postgrey_client_packets($1)
20458 ')
20459
20460 ########################################
20461 ## <summary>
20462 -## Do not audit attempts to send and receive prelude_client packets.
20463 +## Do not audit attempts to send and receive postgrey_client packets.
20464 ## </summary>
20465 ## <param name="domain">
20466 ## <summary>
20467 @@ -65912,14 +66798,14 @@ interface(`corenet_sendrecv_prelude_client_packets',`
20468 ## </param>
20469 ## <infoflow type="none"/>
20470 #
20471 -interface(`corenet_dontaudit_sendrecv_prelude_client_packets',`
20472 - corenet_dontaudit_send_prelude_client_packets($1)
20473 - corenet_dontaudit_receive_prelude_client_packets($1)
20474 +interface(`corenet_dontaudit_sendrecv_postgrey_client_packets',`
20475 + corenet_dontaudit_send_postgrey_client_packets($1)
20476 + corenet_dontaudit_receive_postgrey_client_packets($1)
20477 ')
20478
20479 ########################################
20480 ## <summary>
20481 -## Relabel packets to prelude_client the packet type.
20482 +## Relabel packets to postgrey_client the packet type.
20483 ## </summary>
20484 ## <param name="domain">
20485 ## <summary>
20486 @@ -65927,18 +66813,18 @@ interface(`corenet_dontaudit_sendrecv_prelude_client_packets',`
20487 ## </summary>
20488 ## </param>
20489 #
20490 -interface(`corenet_relabelto_prelude_client_packets',`
20491 +interface(`corenet_relabelto_postgrey_client_packets',`
20492 gen_require(`
20493 - type prelude_client_packet_t;
20494 + type postgrey_client_packet_t;
20495 ')
20496
20497 - allow $1 prelude_client_packet_t:packet relabelto;
20498 + allow $1 postgrey_client_packet_t:packet relabelto;
20499 ')
20500
20501
20502 ########################################
20503 ## <summary>
20504 -## Send prelude_server packets.
20505 +## Send postgrey_server packets.
20506 ## </summary>
20507 ## <param name="domain">
20508 ## <summary>
20509 @@ -65947,17 +66833,17 @@ interface(`corenet_relabelto_prelude_client_packets',`
20510 ## </param>
20511 ## <infoflow type="write" weight="10"/>
20512 #
20513 -interface(`corenet_send_prelude_server_packets',`
20514 +interface(`corenet_send_postgrey_server_packets',`
20515 gen_require(`
20516 - type prelude_server_packet_t;
20517 + type postgrey_server_packet_t;
20518 ')
20519
20520 - allow $1 prelude_server_packet_t:packet send;
20521 + allow $1 postgrey_server_packet_t:packet send;
20522 ')
20523
20524 ########################################
20525 ## <summary>
20526 -## Do not audit attempts to send prelude_server packets.
20527 +## Do not audit attempts to send postgrey_server packets.
20528 ## </summary>
20529 ## <param name="domain">
20530 ## <summary>
20531 @@ -65966,17 +66852,17 @@ interface(`corenet_send_prelude_server_packets',`
20532 ## </param>
20533 ## <infoflow type="none"/>
20534 #
20535 -interface(`corenet_dontaudit_send_prelude_server_packets',`
20536 +interface(`corenet_dontaudit_send_postgrey_server_packets',`
20537 gen_require(`
20538 - type prelude_server_packet_t;
20539 + type postgrey_server_packet_t;
20540 ')
20541
20542 - dontaudit $1 prelude_server_packet_t:packet send;
20543 + dontaudit $1 postgrey_server_packet_t:packet send;
20544 ')
20545
20546 ########################################
20547 ## <summary>
20548 -## Receive prelude_server packets.
20549 +## Receive postgrey_server packets.
20550 ## </summary>
20551 ## <param name="domain">
20552 ## <summary>
20553 @@ -65985,17 +66871,17 @@ interface(`corenet_dontaudit_send_prelude_server_packets',`
20554 ## </param>
20555 ## <infoflow type="read" weight="10"/>
20556 #
20557 -interface(`corenet_receive_prelude_server_packets',`
20558 +interface(`corenet_receive_postgrey_server_packets',`
20559 gen_require(`
20560 - type prelude_server_packet_t;
20561 + type postgrey_server_packet_t;
20562 ')
20563
20564 - allow $1 prelude_server_packet_t:packet recv;
20565 + allow $1 postgrey_server_packet_t:packet recv;
20566 ')
20567
20568 ########################################
20569 ## <summary>
20570 -## Do not audit attempts to receive prelude_server packets.
20571 +## Do not audit attempts to receive postgrey_server packets.
20572 ## </summary>
20573 ## <param name="domain">
20574 ## <summary>
20575 @@ -66004,17 +66890,17 @@ interface(`corenet_receive_prelude_server_packets',`
20576 ## </param>
20577 ## <infoflow type="none"/>
20578 #
20579 -interface(`corenet_dontaudit_receive_prelude_server_packets',`
20580 +interface(`corenet_dontaudit_receive_postgrey_server_packets',`
20581 gen_require(`
20582 - type prelude_server_packet_t;
20583 + type postgrey_server_packet_t;
20584 ')
20585
20586 - dontaudit $1 prelude_server_packet_t:packet recv;
20587 + dontaudit $1 postgrey_server_packet_t:packet recv;
20588 ')
20589
20590 ########################################
20591 ## <summary>
20592 -## Send and receive prelude_server packets.
20593 +## Send and receive postgrey_server packets.
20594 ## </summary>
20595 ## <param name="domain">
20596 ## <summary>
20597 @@ -66023,14 +66909,14 @@ interface(`corenet_dontaudit_receive_prelude_server_packets',`
20598 ## </param>
20599 ## <infoflow type="both" weight="10"/>
20600 #
20601 -interface(`corenet_sendrecv_prelude_server_packets',`
20602 - corenet_send_prelude_server_packets($1)
20603 - corenet_receive_prelude_server_packets($1)
20604 +interface(`corenet_sendrecv_postgrey_server_packets',`
20605 + corenet_send_postgrey_server_packets($1)
20606 + corenet_receive_postgrey_server_packets($1)
20607 ')
20608
20609 ########################################
20610 ## <summary>
20611 -## Do not audit attempts to send and receive prelude_server packets.
20612 +## Do not audit attempts to send and receive postgrey_server packets.
20613 ## </summary>
20614 ## <param name="domain">
20615 ## <summary>
20616 @@ -66039,14 +66925,14 @@ interface(`corenet_sendrecv_prelude_server_packets',`
20617 ## </param>
20618 ## <infoflow type="none"/>
20619 #
20620 -interface(`corenet_dontaudit_sendrecv_prelude_server_packets',`
20621 - corenet_dontaudit_send_prelude_server_packets($1)
20622 - corenet_dontaudit_receive_prelude_server_packets($1)
20623 +interface(`corenet_dontaudit_sendrecv_postgrey_server_packets',`
20624 + corenet_dontaudit_send_postgrey_server_packets($1)
20625 + corenet_dontaudit_receive_postgrey_server_packets($1)
20626 ')
20627
20628 ########################################
20629 ## <summary>
20630 -## Relabel packets to prelude_server the packet type.
20631 +## Relabel packets to postgrey_server the packet type.
20632 ## </summary>
20633 ## <param name="domain">
20634 ## <summary>
20635 @@ -66054,12 +66940,12 @@ interface(`corenet_dontaudit_sendrecv_prelude_server_packets',`
20636 ## </summary>
20637 ## </param>
20638 #
20639 -interface(`corenet_relabelto_prelude_server_packets',`
20640 +interface(`corenet_relabelto_postgrey_server_packets',`
20641 gen_require(`
20642 - type prelude_server_packet_t;
20643 + type postgrey_server_packet_t;
20644 ')
20645
20646 - allow $1 prelude_server_packet_t:packet relabelto;
20647 + allow $1 postgrey_server_packet_t:packet relabelto;
20648 ')
20649
20650
20651 @@ -66067,7 +66953,7 @@ interface(`corenet_relabelto_prelude_server_packets',`
20652
20653 ########################################
20654 ## <summary>
20655 -## Send and receive TCP traffic on the presence port.
20656 +## Send and receive TCP traffic on the pptp port.
20657 ## </summary>
20658 ## <param name="domain">
20659 ## <summary>
20660 @@ -66076,17 +66962,17 @@ interface(`corenet_relabelto_prelude_server_packets',`
20661 ## </param>
20662 ## <infoflow type="both" weight="10"/>
20663 #
20664 -interface(`corenet_tcp_sendrecv_presence_port',`
20665 +interface(`corenet_tcp_sendrecv_pptp_port',`
20666 gen_require(`
20667 - type presence_port_t;
20668 + type pptp_port_t;
20669 ')
20670
20671 - allow $1 presence_port_t:tcp_socket { send_msg recv_msg };
20672 + allow $1 pptp_port_t:tcp_socket { send_msg recv_msg };
20673 ')
20674
20675 ########################################
20676 ## <summary>
20677 -## Send UDP traffic on the presence port.
20678 +## Send UDP traffic on the pptp port.
20679 ## </summary>
20680 ## <param name="domain">
20681 ## <summary>
20682 @@ -66095,12 +66981,898 @@ interface(`corenet_tcp_sendrecv_presence_port',`
20683 ## </param>
20684 ## <infoflow type="write" weight="10"/>
20685 #
20686 -interface(`corenet_udp_send_presence_port',`
20687 +interface(`corenet_udp_send_pptp_port',`
20688 gen_require(`
20689 - type presence_port_t;
20690 + type pptp_port_t;
20691 ')
20692
20693 - allow $1 presence_port_t:udp_socket send_msg;
20694 + allow $1 pptp_port_t:udp_socket send_msg;
20695 +')
20696 +
20697 +########################################
20698 +## <summary>
20699 +## Do not audit attempts to send UDP traffic on the pptp port.
20700 +## </summary>
20701 +## <param name="domain">
20702 +## <summary>
20703 +## Domain to not audit.
20704 +## </summary>
20705 +## </param>
20706 +## <infoflow type="none"/>
20707 +#
20708 +interface(`corenet_dontaudit_udp_send_pptp_port',`
20709 + gen_require(`
20710 + type pptp_port_t;
20711 + ')
20712 +
20713 + dontaudit $1 pptp_port_t:udp_socket send_msg;
20714 +')
20715 +
20716 +########################################
20717 +## <summary>
20718 +## Receive UDP traffic on the pptp port.
20719 +## </summary>
20720 +## <param name="domain">
20721 +## <summary>
20722 +## Domain allowed access.
20723 +## </summary>
20724 +## </param>
20725 +## <infoflow type="read" weight="10"/>
20726 +#
20727 +interface(`corenet_udp_receive_pptp_port',`
20728 + gen_require(`
20729 + type pptp_port_t;
20730 + ')
20731 +
20732 + allow $1 pptp_port_t:udp_socket recv_msg;
20733 +')
20734 +
20735 +########################################
20736 +## <summary>
20737 +## Do not audit attempts to receive UDP traffic on the pptp port.
20738 +## </summary>
20739 +## <param name="domain">
20740 +## <summary>
20741 +## Domain to not audit.
20742 +## </summary>
20743 +## </param>
20744 +## <infoflow type="none"/>
20745 +#
20746 +interface(`corenet_dontaudit_udp_receive_pptp_port',`
20747 + gen_require(`
20748 + type pptp_port_t;
20749 + ')
20750 +
20751 + dontaudit $1 pptp_port_t:udp_socket recv_msg;
20752 +')
20753 +
20754 +########################################
20755 +## <summary>
20756 +## Send and receive UDP traffic on the pptp port.
20757 +## </summary>
20758 +## <param name="domain">
20759 +## <summary>
20760 +## Domain allowed access.
20761 +## </summary>
20762 +## </param>
20763 +## <infoflow type="both" weight="10"/>
20764 +#
20765 +interface(`corenet_udp_sendrecv_pptp_port',`
20766 + corenet_udp_send_pptp_port($1)
20767 + corenet_udp_receive_pptp_port($1)
20768 +')
20769 +
20770 +########################################
20771 +## <summary>
20772 +## Do not audit attempts to send and receive
20773 +## UDP traffic on the pptp port.
20774 +## </summary>
20775 +## <param name="domain">
20776 +## <summary>
20777 +## Domain to not audit.
20778 +## </summary>
20779 +## </param>
20780 +## <infoflow type="none"/>
20781 +#
20782 +interface(`corenet_dontaudit_udp_sendrecv_pptp_port',`
20783 + corenet_dontaudit_udp_send_pptp_port($1)
20784 + corenet_dontaudit_udp_receive_pptp_port($1)
20785 +')
20786 +
20787 +########################################
20788 +## <summary>
20789 +## Bind TCP sockets to the pptp port.
20790 +## </summary>
20791 +## <param name="domain">
20792 +## <summary>
20793 +## Domain allowed access.
20794 +## </summary>
20795 +## </param>
20796 +## <infoflow type="none"/>
20797 +#
20798 +interface(`corenet_tcp_bind_pptp_port',`
20799 + gen_require(`
20800 + type pptp_port_t;
20801 + ')
20802 +
20803 + allow $1 pptp_port_t:tcp_socket name_bind;
20804 +
20805 +')
20806 +
20807 +########################################
20808 +## <summary>
20809 +## Bind UDP sockets to the pptp port.
20810 +## </summary>
20811 +## <param name="domain">
20812 +## <summary>
20813 +## Domain allowed access.
20814 +## </summary>
20815 +## </param>
20816 +## <infoflow type="none"/>
20817 +#
20818 +interface(`corenet_udp_bind_pptp_port',`
20819 + gen_require(`
20820 + type pptp_port_t;
20821 + ')
20822 +
20823 + allow $1 pptp_port_t:udp_socket name_bind;
20824 +
20825 +')
20826 +
20827 +########################################
20828 +## <summary>
20829 +## Make a TCP connection to the pptp port.
20830 +## </summary>
20831 +## <param name="domain">
20832 +## <summary>
20833 +## Domain allowed access.
20834 +## </summary>
20835 +## </param>
20836 +#
20837 +interface(`corenet_tcp_connect_pptp_port',`
20838 + gen_require(`
20839 + type pptp_port_t;
20840 + ')
20841 +
20842 + allow $1 pptp_port_t:tcp_socket name_connect;
20843 +')
20844 +
20845 +
20846 +########################################
20847 +## <summary>
20848 +## Send pptp_client packets.
20849 +## </summary>
20850 +## <param name="domain">
20851 +## <summary>
20852 +## Domain allowed access.
20853 +## </summary>
20854 +## </param>
20855 +## <infoflow type="write" weight="10"/>
20856 +#
20857 +interface(`corenet_send_pptp_client_packets',`
20858 + gen_require(`
20859 + type pptp_client_packet_t;
20860 + ')
20861 +
20862 + allow $1 pptp_client_packet_t:packet send;
20863 +')
20864 +
20865 +########################################
20866 +## <summary>
20867 +## Do not audit attempts to send pptp_client packets.
20868 +## </summary>
20869 +## <param name="domain">
20870 +## <summary>
20871 +## Domain to not audit.
20872 +## </summary>
20873 +## </param>
20874 +## <infoflow type="none"/>
20875 +#
20876 +interface(`corenet_dontaudit_send_pptp_client_packets',`
20877 + gen_require(`
20878 + type pptp_client_packet_t;
20879 + ')
20880 +
20881 + dontaudit $1 pptp_client_packet_t:packet send;
20882 +')
20883 +
20884 +########################################
20885 +## <summary>
20886 +## Receive pptp_client packets.
20887 +## </summary>
20888 +## <param name="domain">
20889 +## <summary>
20890 +## Domain allowed access.
20891 +## </summary>
20892 +## </param>
20893 +## <infoflow type="read" weight="10"/>
20894 +#
20895 +interface(`corenet_receive_pptp_client_packets',`
20896 + gen_require(`
20897 + type pptp_client_packet_t;
20898 + ')
20899 +
20900 + allow $1 pptp_client_packet_t:packet recv;
20901 +')
20902 +
20903 +########################################
20904 +## <summary>
20905 +## Do not audit attempts to receive pptp_client packets.
20906 +## </summary>
20907 +## <param name="domain">
20908 +## <summary>
20909 +## Domain allowed access.
20910 +## </summary>
20911 +## </param>
20912 +## <infoflow type="none"/>
20913 +#
20914 +interface(`corenet_dontaudit_receive_pptp_client_packets',`
20915 + gen_require(`
20916 + type pptp_client_packet_t;
20917 + ')
20918 +
20919 + dontaudit $1 pptp_client_packet_t:packet recv;
20920 +')
20921 +
20922 +########################################
20923 +## <summary>
20924 +## Send and receive pptp_client packets.
20925 +## </summary>
20926 +## <param name="domain">
20927 +## <summary>
20928 +## Domain allowed access.
20929 +## </summary>
20930 +## </param>
20931 +## <infoflow type="both" weight="10"/>
20932 +#
20933 +interface(`corenet_sendrecv_pptp_client_packets',`
20934 + corenet_send_pptp_client_packets($1)
20935 + corenet_receive_pptp_client_packets($1)
20936 +')
20937 +
20938 +########################################
20939 +## <summary>
20940 +## Do not audit attempts to send and receive pptp_client packets.
20941 +## </summary>
20942 +## <param name="domain">
20943 +## <summary>
20944 +## Domain to not audit.
20945 +## </summary>
20946 +## </param>
20947 +## <infoflow type="none"/>
20948 +#
20949 +interface(`corenet_dontaudit_sendrecv_pptp_client_packets',`
20950 + corenet_dontaudit_send_pptp_client_packets($1)
20951 + corenet_dontaudit_receive_pptp_client_packets($1)
20952 +')
20953 +
20954 +########################################
20955 +## <summary>
20956 +## Relabel packets to pptp_client the packet type.
20957 +## </summary>
20958 +## <param name="domain">
20959 +## <summary>
20960 +## Domain allowed access.
20961 +## </summary>
20962 +## </param>
20963 +#
20964 +interface(`corenet_relabelto_pptp_client_packets',`
20965 + gen_require(`
20966 + type pptp_client_packet_t;
20967 + ')
20968 +
20969 + allow $1 pptp_client_packet_t:packet relabelto;
20970 +')
20971 +
20972 +
20973 +########################################
20974 +## <summary>
20975 +## Send pptp_server packets.
20976 +## </summary>
20977 +## <param name="domain">
20978 +## <summary>
20979 +## Domain allowed access.
20980 +## </summary>
20981 +## </param>
20982 +## <infoflow type="write" weight="10"/>
20983 +#
20984 +interface(`corenet_send_pptp_server_packets',`
20985 + gen_require(`
20986 + type pptp_server_packet_t;
20987 + ')
20988 +
20989 + allow $1 pptp_server_packet_t:packet send;
20990 +')
20991 +
20992 +########################################
20993 +## <summary>
20994 +## Do not audit attempts to send pptp_server packets.
20995 +## </summary>
20996 +## <param name="domain">
20997 +## <summary>
20998 +## Domain to not audit.
20999 +## </summary>
21000 +## </param>
21001 +## <infoflow type="none"/>
21002 +#
21003 +interface(`corenet_dontaudit_send_pptp_server_packets',`
21004 + gen_require(`
21005 + type pptp_server_packet_t;
21006 + ')
21007 +
21008 + dontaudit $1 pptp_server_packet_t:packet send;
21009 +')
21010 +
21011 +########################################
21012 +## <summary>
21013 +## Receive pptp_server packets.
21014 +## </summary>
21015 +## <param name="domain">
21016 +## <summary>
21017 +## Domain allowed access.
21018 +## </summary>
21019 +## </param>
21020 +## <infoflow type="read" weight="10"/>
21021 +#
21022 +interface(`corenet_receive_pptp_server_packets',`
21023 + gen_require(`
21024 + type pptp_server_packet_t;
21025 + ')
21026 +
21027 + allow $1 pptp_server_packet_t:packet recv;
21028 +')
21029 +
21030 +########################################
21031 +## <summary>
21032 +## Do not audit attempts to receive pptp_server packets.
21033 +## </summary>
21034 +## <param name="domain">
21035 +## <summary>
21036 +## Domain allowed access.
21037 +## </summary>
21038 +## </param>
21039 +## <infoflow type="none"/>
21040 +#
21041 +interface(`corenet_dontaudit_receive_pptp_server_packets',`
21042 + gen_require(`
21043 + type pptp_server_packet_t;
21044 + ')
21045 +
21046 + dontaudit $1 pptp_server_packet_t:packet recv;
21047 +')
21048 +
21049 +########################################
21050 +## <summary>
21051 +## Send and receive pptp_server packets.
21052 +## </summary>
21053 +## <param name="domain">
21054 +## <summary>
21055 +## Domain allowed access.
21056 +## </summary>
21057 +## </param>
21058 +## <infoflow type="both" weight="10"/>
21059 +#
21060 +interface(`corenet_sendrecv_pptp_server_packets',`
21061 + corenet_send_pptp_server_packets($1)
21062 + corenet_receive_pptp_server_packets($1)
21063 +')
21064 +
21065 +########################################
21066 +## <summary>
21067 +## Do not audit attempts to send and receive pptp_server packets.
21068 +## </summary>
21069 +## <param name="domain">
21070 +## <summary>
21071 +## Domain to not audit.
21072 +## </summary>
21073 +## </param>
21074 +## <infoflow type="none"/>
21075 +#
21076 +interface(`corenet_dontaudit_sendrecv_pptp_server_packets',`
21077 + corenet_dontaudit_send_pptp_server_packets($1)
21078 + corenet_dontaudit_receive_pptp_server_packets($1)
21079 +')
21080 +
21081 +########################################
21082 +## <summary>
21083 +## Relabel packets to pptp_server the packet type.
21084 +## </summary>
21085 +## <param name="domain">
21086 +## <summary>
21087 +## Domain allowed access.
21088 +## </summary>
21089 +## </param>
21090 +#
21091 +interface(`corenet_relabelto_pptp_server_packets',`
21092 + gen_require(`
21093 + type pptp_server_packet_t;
21094 + ')
21095 +
21096 + allow $1 pptp_server_packet_t:packet relabelto;
21097 +')
21098 +
21099 +
21100 +
21101 +
21102 +########################################
21103 +## <summary>
21104 +## Send and receive TCP traffic on the prelude port.
21105 +## </summary>
21106 +## <param name="domain">
21107 +## <summary>
21108 +## Domain allowed access.
21109 +## </summary>
21110 +## </param>
21111 +## <infoflow type="both" weight="10"/>
21112 +#
21113 +interface(`corenet_tcp_sendrecv_prelude_port',`
21114 + gen_require(`
21115 + type prelude_port_t;
21116 + ')
21117 +
21118 + allow $1 prelude_port_t:tcp_socket { send_msg recv_msg };
21119 +')
21120 +
21121 +########################################
21122 +## <summary>
21123 +## Send UDP traffic on the prelude port.
21124 +## </summary>
21125 +## <param name="domain">
21126 +## <summary>
21127 +## Domain allowed access.
21128 +## </summary>
21129 +## </param>
21130 +## <infoflow type="write" weight="10"/>
21131 +#
21132 +interface(`corenet_udp_send_prelude_port',`
21133 + gen_require(`
21134 + type prelude_port_t;
21135 + ')
21136 +
21137 + allow $1 prelude_port_t:udp_socket send_msg;
21138 +')
21139 +
21140 +########################################
21141 +## <summary>
21142 +## Do not audit attempts to send UDP traffic on the prelude port.
21143 +## </summary>
21144 +## <param name="domain">
21145 +## <summary>
21146 +## Domain to not audit.
21147 +## </summary>
21148 +## </param>
21149 +## <infoflow type="none"/>
21150 +#
21151 +interface(`corenet_dontaudit_udp_send_prelude_port',`
21152 + gen_require(`
21153 + type prelude_port_t;
21154 + ')
21155 +
21156 + dontaudit $1 prelude_port_t:udp_socket send_msg;
21157 +')
21158 +
21159 +########################################
21160 +## <summary>
21161 +## Receive UDP traffic on the prelude port.
21162 +## </summary>
21163 +## <param name="domain">
21164 +## <summary>
21165 +## Domain allowed access.
21166 +## </summary>
21167 +## </param>
21168 +## <infoflow type="read" weight="10"/>
21169 +#
21170 +interface(`corenet_udp_receive_prelude_port',`
21171 + gen_require(`
21172 + type prelude_port_t;
21173 + ')
21174 +
21175 + allow $1 prelude_port_t:udp_socket recv_msg;
21176 +')
21177 +
21178 +########################################
21179 +## <summary>
21180 +## Do not audit attempts to receive UDP traffic on the prelude port.
21181 +## </summary>
21182 +## <param name="domain">
21183 +## <summary>
21184 +## Domain to not audit.
21185 +## </summary>
21186 +## </param>
21187 +## <infoflow type="none"/>
21188 +#
21189 +interface(`corenet_dontaudit_udp_receive_prelude_port',`
21190 + gen_require(`
21191 + type prelude_port_t;
21192 + ')
21193 +
21194 + dontaudit $1 prelude_port_t:udp_socket recv_msg;
21195 +')
21196 +
21197 +########################################
21198 +## <summary>
21199 +## Send and receive UDP traffic on the prelude port.
21200 +## </summary>
21201 +## <param name="domain">
21202 +## <summary>
21203 +## Domain allowed access.
21204 +## </summary>
21205 +## </param>
21206 +## <infoflow type="both" weight="10"/>
21207 +#
21208 +interface(`corenet_udp_sendrecv_prelude_port',`
21209 + corenet_udp_send_prelude_port($1)
21210 + corenet_udp_receive_prelude_port($1)
21211 +')
21212 +
21213 +########################################
21214 +## <summary>
21215 +## Do not audit attempts to send and receive
21216 +## UDP traffic on the prelude port.
21217 +## </summary>
21218 +## <param name="domain">
21219 +## <summary>
21220 +## Domain to not audit.
21221 +## </summary>
21222 +## </param>
21223 +## <infoflow type="none"/>
21224 +#
21225 +interface(`corenet_dontaudit_udp_sendrecv_prelude_port',`
21226 + corenet_dontaudit_udp_send_prelude_port($1)
21227 + corenet_dontaudit_udp_receive_prelude_port($1)
21228 +')
21229 +
21230 +########################################
21231 +## <summary>
21232 +## Bind TCP sockets to the prelude port.
21233 +## </summary>
21234 +## <param name="domain">
21235 +## <summary>
21236 +## Domain allowed access.
21237 +## </summary>
21238 +## </param>
21239 +## <infoflow type="none"/>
21240 +#
21241 +interface(`corenet_tcp_bind_prelude_port',`
21242 + gen_require(`
21243 + type prelude_port_t;
21244 + ')
21245 +
21246 + allow $1 prelude_port_t:tcp_socket name_bind;
21247 +
21248 +')
21249 +
21250 +########################################
21251 +## <summary>
21252 +## Bind UDP sockets to the prelude port.
21253 +## </summary>
21254 +## <param name="domain">
21255 +## <summary>
21256 +## Domain allowed access.
21257 +## </summary>
21258 +## </param>
21259 +## <infoflow type="none"/>
21260 +#
21261 +interface(`corenet_udp_bind_prelude_port',`
21262 + gen_require(`
21263 + type prelude_port_t;
21264 + ')
21265 +
21266 + allow $1 prelude_port_t:udp_socket name_bind;
21267 +
21268 +')
21269 +
21270 +########################################
21271 +## <summary>
21272 +## Make a TCP connection to the prelude port.
21273 +## </summary>
21274 +## <param name="domain">
21275 +## <summary>
21276 +## Domain allowed access.
21277 +## </summary>
21278 +## </param>
21279 +#
21280 +interface(`corenet_tcp_connect_prelude_port',`
21281 + gen_require(`
21282 + type prelude_port_t;
21283 + ')
21284 +
21285 + allow $1 prelude_port_t:tcp_socket name_connect;
21286 +')
21287 +
21288 +
21289 +########################################
21290 +## <summary>
21291 +## Send prelude_client packets.
21292 +## </summary>
21293 +## <param name="domain">
21294 +## <summary>
21295 +## Domain allowed access.
21296 +## </summary>
21297 +## </param>
21298 +## <infoflow type="write" weight="10"/>
21299 +#
21300 +interface(`corenet_send_prelude_client_packets',`
21301 + gen_require(`
21302 + type prelude_client_packet_t;
21303 + ')
21304 +
21305 + allow $1 prelude_client_packet_t:packet send;
21306 +')
21307 +
21308 +########################################
21309 +## <summary>
21310 +## Do not audit attempts to send prelude_client packets.
21311 +## </summary>
21312 +## <param name="domain">
21313 +## <summary>
21314 +## Domain to not audit.
21315 +## </summary>
21316 +## </param>
21317 +## <infoflow type="none"/>
21318 +#
21319 +interface(`corenet_dontaudit_send_prelude_client_packets',`
21320 + gen_require(`
21321 + type prelude_client_packet_t;
21322 + ')
21323 +
21324 + dontaudit $1 prelude_client_packet_t:packet send;
21325 +')
21326 +
21327 +########################################
21328 +## <summary>
21329 +## Receive prelude_client packets.
21330 +## </summary>
21331 +## <param name="domain">
21332 +## <summary>
21333 +## Domain allowed access.
21334 +## </summary>
21335 +## </param>
21336 +## <infoflow type="read" weight="10"/>
21337 +#
21338 +interface(`corenet_receive_prelude_client_packets',`
21339 + gen_require(`
21340 + type prelude_client_packet_t;
21341 + ')
21342 +
21343 + allow $1 prelude_client_packet_t:packet recv;
21344 +')
21345 +
21346 +########################################
21347 +## <summary>
21348 +## Do not audit attempts to receive prelude_client packets.
21349 +## </summary>
21350 +## <param name="domain">
21351 +## <summary>
21352 +## Domain allowed access.
21353 +## </summary>
21354 +## </param>
21355 +## <infoflow type="none"/>
21356 +#
21357 +interface(`corenet_dontaudit_receive_prelude_client_packets',`
21358 + gen_require(`
21359 + type prelude_client_packet_t;
21360 + ')
21361 +
21362 + dontaudit $1 prelude_client_packet_t:packet recv;
21363 +')
21364 +
21365 +########################################
21366 +## <summary>
21367 +## Send and receive prelude_client packets.
21368 +## </summary>
21369 +## <param name="domain">
21370 +## <summary>
21371 +## Domain allowed access.
21372 +## </summary>
21373 +## </param>
21374 +## <infoflow type="both" weight="10"/>
21375 +#
21376 +interface(`corenet_sendrecv_prelude_client_packets',`
21377 + corenet_send_prelude_client_packets($1)
21378 + corenet_receive_prelude_client_packets($1)
21379 +')
21380 +
21381 +########################################
21382 +## <summary>
21383 +## Do not audit attempts to send and receive prelude_client packets.
21384 +## </summary>
21385 +## <param name="domain">
21386 +## <summary>
21387 +## Domain to not audit.
21388 +## </summary>
21389 +## </param>
21390 +## <infoflow type="none"/>
21391 +#
21392 +interface(`corenet_dontaudit_sendrecv_prelude_client_packets',`
21393 + corenet_dontaudit_send_prelude_client_packets($1)
21394 + corenet_dontaudit_receive_prelude_client_packets($1)
21395 +')
21396 +
21397 +########################################
21398 +## <summary>
21399 +## Relabel packets to prelude_client the packet type.
21400 +## </summary>
21401 +## <param name="domain">
21402 +## <summary>
21403 +## Domain allowed access.
21404 +## </summary>
21405 +## </param>
21406 +#
21407 +interface(`corenet_relabelto_prelude_client_packets',`
21408 + gen_require(`
21409 + type prelude_client_packet_t;
21410 + ')
21411 +
21412 + allow $1 prelude_client_packet_t:packet relabelto;
21413 +')
21414 +
21415 +
21416 +########################################
21417 +## <summary>
21418 +## Send prelude_server packets.
21419 +## </summary>
21420 +## <param name="domain">
21421 +## <summary>
21422 +## Domain allowed access.
21423 +## </summary>
21424 +## </param>
21425 +## <infoflow type="write" weight="10"/>
21426 +#
21427 +interface(`corenet_send_prelude_server_packets',`
21428 + gen_require(`
21429 + type prelude_server_packet_t;
21430 + ')
21431 +
21432 + allow $1 prelude_server_packet_t:packet send;
21433 +')
21434 +
21435 +########################################
21436 +## <summary>
21437 +## Do not audit attempts to send prelude_server packets.
21438 +## </summary>
21439 +## <param name="domain">
21440 +## <summary>
21441 +## Domain to not audit.
21442 +## </summary>
21443 +## </param>
21444 +## <infoflow type="none"/>
21445 +#
21446 +interface(`corenet_dontaudit_send_prelude_server_packets',`
21447 + gen_require(`
21448 + type prelude_server_packet_t;
21449 + ')
21450 +
21451 + dontaudit $1 prelude_server_packet_t:packet send;
21452 +')
21453 +
21454 +########################################
21455 +## <summary>
21456 +## Receive prelude_server packets.
21457 +## </summary>
21458 +## <param name="domain">
21459 +## <summary>
21460 +## Domain allowed access.
21461 +## </summary>
21462 +## </param>
21463 +## <infoflow type="read" weight="10"/>
21464 +#
21465 +interface(`corenet_receive_prelude_server_packets',`
21466 + gen_require(`
21467 + type prelude_server_packet_t;
21468 + ')
21469 +
21470 + allow $1 prelude_server_packet_t:packet recv;
21471 +')
21472 +
21473 +########################################
21474 +## <summary>
21475 +## Do not audit attempts to receive prelude_server packets.
21476 +## </summary>
21477 +## <param name="domain">
21478 +## <summary>
21479 +## Domain allowed access.
21480 +## </summary>
21481 +## </param>
21482 +## <infoflow type="none"/>
21483 +#
21484 +interface(`corenet_dontaudit_receive_prelude_server_packets',`
21485 + gen_require(`
21486 + type prelude_server_packet_t;
21487 + ')
21488 +
21489 + dontaudit $1 prelude_server_packet_t:packet recv;
21490 +')
21491 +
21492 +########################################
21493 +## <summary>
21494 +## Send and receive prelude_server packets.
21495 +## </summary>
21496 +## <param name="domain">
21497 +## <summary>
21498 +## Domain allowed access.
21499 +## </summary>
21500 +## </param>
21501 +## <infoflow type="both" weight="10"/>
21502 +#
21503 +interface(`corenet_sendrecv_prelude_server_packets',`
21504 + corenet_send_prelude_server_packets($1)
21505 + corenet_receive_prelude_server_packets($1)
21506 +')
21507 +
21508 +########################################
21509 +## <summary>
21510 +## Do not audit attempts to send and receive prelude_server packets.
21511 +## </summary>
21512 +## <param name="domain">
21513 +## <summary>
21514 +## Domain to not audit.
21515 +## </summary>
21516 +## </param>
21517 +## <infoflow type="none"/>
21518 +#
21519 +interface(`corenet_dontaudit_sendrecv_prelude_server_packets',`
21520 + corenet_dontaudit_send_prelude_server_packets($1)
21521 + corenet_dontaudit_receive_prelude_server_packets($1)
21522 +')
21523 +
21524 +########################################
21525 +## <summary>
21526 +## Relabel packets to prelude_server the packet type.
21527 +## </summary>
21528 +## <param name="domain">
21529 +## <summary>
21530 +## Domain allowed access.
21531 +## </summary>
21532 +## </param>
21533 +#
21534 +interface(`corenet_relabelto_prelude_server_packets',`
21535 + gen_require(`
21536 + type prelude_server_packet_t;
21537 + ')
21538 +
21539 + allow $1 prelude_server_packet_t:packet relabelto;
21540 +')
21541 +
21542 +
21543 +
21544 +
21545 +########################################
21546 +## <summary>
21547 +## Send and receive TCP traffic on the presence port.
21548 +## </summary>
21549 +## <param name="domain">
21550 +## <summary>
21551 +## Domain allowed access.
21552 +## </summary>
21553 +## </param>
21554 +## <infoflow type="both" weight="10"/>
21555 +#
21556 +interface(`corenet_tcp_sendrecv_presence_port',`
21557 + gen_require(`
21558 + type presence_port_t;
21559 + ')
21560 +
21561 + allow $1 presence_port_t:tcp_socket { send_msg recv_msg };
21562 +')
21563 +
21564 +########################################
21565 +## <summary>
21566 +## Send UDP traffic on the presence port.
21567 +## </summary>
21568 +## <param name="domain">
21569 +## <summary>
21570 +## Domain allowed access.
21571 +## </summary>
21572 +## </param>
21573 +## <infoflow type="write" weight="10"/>
21574 +#
21575 +interface(`corenet_udp_send_presence_port',`
21576 + gen_require(`
21577 + type presence_port_t;
21578 + ')
21579 +
21580 + allow $1 presence_port_t:udp_socket send_msg;
21581 ')
21582
21583 ########################################
21584 @@ -66114,17 +67886,903 @@ interface(`corenet_udp_send_presence_port',`
21585 ## </param>
21586 ## <infoflow type="none"/>
21587 #
21588 -interface(`corenet_dontaudit_udp_send_presence_port',`
21589 +interface(`corenet_dontaudit_udp_send_presence_port',`
21590 + gen_require(`
21591 + type presence_port_t;
21592 + ')
21593 +
21594 + dontaudit $1 presence_port_t:udp_socket send_msg;
21595 +')
21596 +
21597 +########################################
21598 +## <summary>
21599 +## Receive UDP traffic on the presence port.
21600 +## </summary>
21601 +## <param name="domain">
21602 +## <summary>
21603 +## Domain allowed access.
21604 +## </summary>
21605 +## </param>
21606 +## <infoflow type="read" weight="10"/>
21607 +#
21608 +interface(`corenet_udp_receive_presence_port',`
21609 + gen_require(`
21610 + type presence_port_t;
21611 + ')
21612 +
21613 + allow $1 presence_port_t:udp_socket recv_msg;
21614 +')
21615 +
21616 +########################################
21617 +## <summary>
21618 +## Do not audit attempts to receive UDP traffic on the presence port.
21619 +## </summary>
21620 +## <param name="domain">
21621 +## <summary>
21622 +## Domain to not audit.
21623 +## </summary>
21624 +## </param>
21625 +## <infoflow type="none"/>
21626 +#
21627 +interface(`corenet_dontaudit_udp_receive_presence_port',`
21628 + gen_require(`
21629 + type presence_port_t;
21630 + ')
21631 +
21632 + dontaudit $1 presence_port_t:udp_socket recv_msg;
21633 +')
21634 +
21635 +########################################
21636 +## <summary>
21637 +## Send and receive UDP traffic on the presence port.
21638 +## </summary>
21639 +## <param name="domain">
21640 +## <summary>
21641 +## Domain allowed access.
21642 +## </summary>
21643 +## </param>
21644 +## <infoflow type="both" weight="10"/>
21645 +#
21646 +interface(`corenet_udp_sendrecv_presence_port',`
21647 + corenet_udp_send_presence_port($1)
21648 + corenet_udp_receive_presence_port($1)
21649 +')
21650 +
21651 +########################################
21652 +## <summary>
21653 +## Do not audit attempts to send and receive
21654 +## UDP traffic on the presence port.
21655 +## </summary>
21656 +## <param name="domain">
21657 +## <summary>
21658 +## Domain to not audit.
21659 +## </summary>
21660 +## </param>
21661 +## <infoflow type="none"/>
21662 +#
21663 +interface(`corenet_dontaudit_udp_sendrecv_presence_port',`
21664 + corenet_dontaudit_udp_send_presence_port($1)
21665 + corenet_dontaudit_udp_receive_presence_port($1)
21666 +')
21667 +
21668 +########################################
21669 +## <summary>
21670 +## Bind TCP sockets to the presence port.
21671 +## </summary>
21672 +## <param name="domain">
21673 +## <summary>
21674 +## Domain allowed access.
21675 +## </summary>
21676 +## </param>
21677 +## <infoflow type="none"/>
21678 +#
21679 +interface(`corenet_tcp_bind_presence_port',`
21680 + gen_require(`
21681 + type presence_port_t;
21682 + ')
21683 +
21684 + allow $1 presence_port_t:tcp_socket name_bind;
21685 + allow $1 self:capability net_bind_service;
21686 +')
21687 +
21688 +########################################
21689 +## <summary>
21690 +## Bind UDP sockets to the presence port.
21691 +## </summary>
21692 +## <param name="domain">
21693 +## <summary>
21694 +## Domain allowed access.
21695 +## </summary>
21696 +## </param>
21697 +## <infoflow type="none"/>
21698 +#
21699 +interface(`corenet_udp_bind_presence_port',`
21700 + gen_require(`
21701 + type presence_port_t;
21702 + ')
21703 +
21704 + allow $1 presence_port_t:udp_socket name_bind;
21705 + allow $1 self:capability net_bind_service;
21706 +')
21707 +
21708 +########################################
21709 +## <summary>
21710 +## Make a TCP connection to the presence port.
21711 +## </summary>
21712 +## <param name="domain">
21713 +## <summary>
21714 +## Domain allowed access.
21715 +## </summary>
21716 +## </param>
21717 +#
21718 +interface(`corenet_tcp_connect_presence_port',`
21719 + gen_require(`
21720 + type presence_port_t;
21721 + ')
21722 +
21723 + allow $1 presence_port_t:tcp_socket name_connect;
21724 +')
21725 +
21726 +
21727 +########################################
21728 +## <summary>
21729 +## Send presence_client packets.
21730 +## </summary>
21731 +## <param name="domain">
21732 +## <summary>
21733 +## Domain allowed access.
21734 +## </summary>
21735 +## </param>
21736 +## <infoflow type="write" weight="10"/>
21737 +#
21738 +interface(`corenet_send_presence_client_packets',`
21739 + gen_require(`
21740 + type presence_client_packet_t;
21741 + ')
21742 +
21743 + allow $1 presence_client_packet_t:packet send;
21744 +')
21745 +
21746 +########################################
21747 +## <summary>
21748 +## Do not audit attempts to send presence_client packets.
21749 +## </summary>
21750 +## <param name="domain">
21751 +## <summary>
21752 +## Domain to not audit.
21753 +## </summary>
21754 +## </param>
21755 +## <infoflow type="none"/>
21756 +#
21757 +interface(`corenet_dontaudit_send_presence_client_packets',`
21758 + gen_require(`
21759 + type presence_client_packet_t;
21760 + ')
21761 +
21762 + dontaudit $1 presence_client_packet_t:packet send;
21763 +')
21764 +
21765 +########################################
21766 +## <summary>
21767 +## Receive presence_client packets.
21768 +## </summary>
21769 +## <param name="domain">
21770 +## <summary>
21771 +## Domain allowed access.
21772 +## </summary>
21773 +## </param>
21774 +## <infoflow type="read" weight="10"/>
21775 +#
21776 +interface(`corenet_receive_presence_client_packets',`
21777 + gen_require(`
21778 + type presence_client_packet_t;
21779 + ')
21780 +
21781 + allow $1 presence_client_packet_t:packet recv;
21782 +')
21783 +
21784 +########################################
21785 +## <summary>
21786 +## Do not audit attempts to receive presence_client packets.
21787 +## </summary>
21788 +## <param name="domain">
21789 +## <summary>
21790 +## Domain allowed access.
21791 +## </summary>
21792 +## </param>
21793 +## <infoflow type="none"/>
21794 +#
21795 +interface(`corenet_dontaudit_receive_presence_client_packets',`
21796 + gen_require(`
21797 + type presence_client_packet_t;
21798 + ')
21799 +
21800 + dontaudit $1 presence_client_packet_t:packet recv;
21801 +')
21802 +
21803 +########################################
21804 +## <summary>
21805 +## Send and receive presence_client packets.
21806 +## </summary>
21807 +## <param name="domain">
21808 +## <summary>
21809 +## Domain allowed access.
21810 +## </summary>
21811 +## </param>
21812 +## <infoflow type="both" weight="10"/>
21813 +#
21814 +interface(`corenet_sendrecv_presence_client_packets',`
21815 + corenet_send_presence_client_packets($1)
21816 + corenet_receive_presence_client_packets($1)
21817 +')
21818 +
21819 +########################################
21820 +## <summary>
21821 +## Do not audit attempts to send and receive presence_client packets.
21822 +## </summary>
21823 +## <param name="domain">
21824 +## <summary>
21825 +## Domain to not audit.
21826 +## </summary>
21827 +## </param>
21828 +## <infoflow type="none"/>
21829 +#
21830 +interface(`corenet_dontaudit_sendrecv_presence_client_packets',`
21831 + corenet_dontaudit_send_presence_client_packets($1)
21832 + corenet_dontaudit_receive_presence_client_packets($1)
21833 +')
21834 +
21835 +########################################
21836 +## <summary>
21837 +## Relabel packets to presence_client the packet type.
21838 +## </summary>
21839 +## <param name="domain">
21840 +## <summary>
21841 +## Domain allowed access.
21842 +## </summary>
21843 +## </param>
21844 +#
21845 +interface(`corenet_relabelto_presence_client_packets',`
21846 + gen_require(`
21847 + type presence_client_packet_t;
21848 + ')
21849 +
21850 + allow $1 presence_client_packet_t:packet relabelto;
21851 +')
21852 +
21853 +
21854 +########################################
21855 +## <summary>
21856 +## Send presence_server packets.
21857 +## </summary>
21858 +## <param name="domain">
21859 +## <summary>
21860 +## Domain allowed access.
21861 +## </summary>
21862 +## </param>
21863 +## <infoflow type="write" weight="10"/>
21864 +#
21865 +interface(`corenet_send_presence_server_packets',`
21866 + gen_require(`
21867 + type presence_server_packet_t;
21868 + ')
21869 +
21870 + allow $1 presence_server_packet_t:packet send;
21871 +')
21872 +
21873 +########################################
21874 +## <summary>
21875 +## Do not audit attempts to send presence_server packets.
21876 +## </summary>
21877 +## <param name="domain">
21878 +## <summary>
21879 +## Domain to not audit.
21880 +## </summary>
21881 +## </param>
21882 +## <infoflow type="none"/>
21883 +#
21884 +interface(`corenet_dontaudit_send_presence_server_packets',`
21885 + gen_require(`
21886 + type presence_server_packet_t;
21887 + ')
21888 +
21889 + dontaudit $1 presence_server_packet_t:packet send;
21890 +')
21891 +
21892 +########################################
21893 +## <summary>
21894 +## Receive presence_server packets.
21895 +## </summary>
21896 +## <param name="domain">
21897 +## <summary>
21898 +## Domain allowed access.
21899 +## </summary>
21900 +## </param>
21901 +## <infoflow type="read" weight="10"/>
21902 +#
21903 +interface(`corenet_receive_presence_server_packets',`
21904 + gen_require(`
21905 + type presence_server_packet_t;
21906 + ')
21907 +
21908 + allow $1 presence_server_packet_t:packet recv;
21909 +')
21910 +
21911 +########################################
21912 +## <summary>
21913 +## Do not audit attempts to receive presence_server packets.
21914 +## </summary>
21915 +## <param name="domain">
21916 +## <summary>
21917 +## Domain allowed access.
21918 +## </summary>
21919 +## </param>
21920 +## <infoflow type="none"/>
21921 +#
21922 +interface(`corenet_dontaudit_receive_presence_server_packets',`
21923 + gen_require(`
21924 + type presence_server_packet_t;
21925 + ')
21926 +
21927 + dontaudit $1 presence_server_packet_t:packet recv;
21928 +')
21929 +
21930 +########################################
21931 +## <summary>
21932 +## Send and receive presence_server packets.
21933 +## </summary>
21934 +## <param name="domain">
21935 +## <summary>
21936 +## Domain allowed access.
21937 +## </summary>
21938 +## </param>
21939 +## <infoflow type="both" weight="10"/>
21940 +#
21941 +interface(`corenet_sendrecv_presence_server_packets',`
21942 + corenet_send_presence_server_packets($1)
21943 + corenet_receive_presence_server_packets($1)
21944 +')
21945 +
21946 +########################################
21947 +## <summary>
21948 +## Do not audit attempts to send and receive presence_server packets.
21949 +## </summary>
21950 +## <param name="domain">
21951 +## <summary>
21952 +## Domain to not audit.
21953 +## </summary>
21954 +## </param>
21955 +## <infoflow type="none"/>
21956 +#
21957 +interface(`corenet_dontaudit_sendrecv_presence_server_packets',`
21958 + corenet_dontaudit_send_presence_server_packets($1)
21959 + corenet_dontaudit_receive_presence_server_packets($1)
21960 +')
21961 +
21962 +########################################
21963 +## <summary>
21964 +## Relabel packets to presence_server the packet type.
21965 +## </summary>
21966 +## <param name="domain">
21967 +## <summary>
21968 +## Domain allowed access.
21969 +## </summary>
21970 +## </param>
21971 +#
21972 +interface(`corenet_relabelto_presence_server_packets',`
21973 + gen_require(`
21974 + type presence_server_packet_t;
21975 + ')
21976 +
21977 + allow $1 presence_server_packet_t:packet relabelto;
21978 +')
21979 +
21980 +
21981 +
21982 +
21983 +########################################
21984 +## <summary>
21985 +## Send and receive TCP traffic on the printer port.
21986 +## </summary>
21987 +## <param name="domain">
21988 +## <summary>
21989 +## Domain allowed access.
21990 +## </summary>
21991 +## </param>
21992 +## <infoflow type="both" weight="10"/>
21993 +#
21994 +interface(`corenet_tcp_sendrecv_printer_port',`
21995 + gen_require(`
21996 + type printer_port_t;
21997 + ')
21998 +
21999 + allow $1 printer_port_t:tcp_socket { send_msg recv_msg };
22000 +')
22001 +
22002 +########################################
22003 +## <summary>
22004 +## Send UDP traffic on the printer port.
22005 +## </summary>
22006 +## <param name="domain">
22007 +## <summary>
22008 +## Domain allowed access.
22009 +## </summary>
22010 +## </param>
22011 +## <infoflow type="write" weight="10"/>
22012 +#
22013 +interface(`corenet_udp_send_printer_port',`
22014 + gen_require(`
22015 + type printer_port_t;
22016 + ')
22017 +
22018 + allow $1 printer_port_t:udp_socket send_msg;
22019 +')
22020 +
22021 +########################################
22022 +## <summary>
22023 +## Do not audit attempts to send UDP traffic on the printer port.
22024 +## </summary>
22025 +## <param name="domain">
22026 +## <summary>
22027 +## Domain to not audit.
22028 +## </summary>
22029 +## </param>
22030 +## <infoflow type="none"/>
22031 +#
22032 +interface(`corenet_dontaudit_udp_send_printer_port',`
22033 + gen_require(`
22034 + type printer_port_t;
22035 + ')
22036 +
22037 + dontaudit $1 printer_port_t:udp_socket send_msg;
22038 +')
22039 +
22040 +########################################
22041 +## <summary>
22042 +## Receive UDP traffic on the printer port.
22043 +## </summary>
22044 +## <param name="domain">
22045 +## <summary>
22046 +## Domain allowed access.
22047 +## </summary>
22048 +## </param>
22049 +## <infoflow type="read" weight="10"/>
22050 +#
22051 +interface(`corenet_udp_receive_printer_port',`
22052 + gen_require(`
22053 + type printer_port_t;
22054 + ')
22055 +
22056 + allow $1 printer_port_t:udp_socket recv_msg;
22057 +')
22058 +
22059 +########################################
22060 +## <summary>
22061 +## Do not audit attempts to receive UDP traffic on the printer port.
22062 +## </summary>
22063 +## <param name="domain">
22064 +## <summary>
22065 +## Domain to not audit.
22066 +## </summary>
22067 +## </param>
22068 +## <infoflow type="none"/>
22069 +#
22070 +interface(`corenet_dontaudit_udp_receive_printer_port',`
22071 + gen_require(`
22072 + type printer_port_t;
22073 + ')
22074 +
22075 + dontaudit $1 printer_port_t:udp_socket recv_msg;
22076 +')
22077 +
22078 +########################################
22079 +## <summary>
22080 +## Send and receive UDP traffic on the printer port.
22081 +## </summary>
22082 +## <param name="domain">
22083 +## <summary>
22084 +## Domain allowed access.
22085 +## </summary>
22086 +## </param>
22087 +## <infoflow type="both" weight="10"/>
22088 +#
22089 +interface(`corenet_udp_sendrecv_printer_port',`
22090 + corenet_udp_send_printer_port($1)
22091 + corenet_udp_receive_printer_port($1)
22092 +')
22093 +
22094 +########################################
22095 +## <summary>
22096 +## Do not audit attempts to send and receive
22097 +## UDP traffic on the printer port.
22098 +## </summary>
22099 +## <param name="domain">
22100 +## <summary>
22101 +## Domain to not audit.
22102 +## </summary>
22103 +## </param>
22104 +## <infoflow type="none"/>
22105 +#
22106 +interface(`corenet_dontaudit_udp_sendrecv_printer_port',`
22107 + corenet_dontaudit_udp_send_printer_port($1)
22108 + corenet_dontaudit_udp_receive_printer_port($1)
22109 +')
22110 +
22111 +########################################
22112 +## <summary>
22113 +## Bind TCP sockets to the printer port.
22114 +## </summary>
22115 +## <param name="domain">
22116 +## <summary>
22117 +## Domain allowed access.
22118 +## </summary>
22119 +## </param>
22120 +## <infoflow type="none"/>
22121 +#
22122 +interface(`corenet_tcp_bind_printer_port',`
22123 + gen_require(`
22124 + type printer_port_t;
22125 + ')
22126 +
22127 + allow $1 printer_port_t:tcp_socket name_bind;
22128 + allow $1 self:capability net_bind_service;
22129 +')
22130 +
22131 +########################################
22132 +## <summary>
22133 +## Bind UDP sockets to the printer port.
22134 +## </summary>
22135 +## <param name="domain">
22136 +## <summary>
22137 +## Domain allowed access.
22138 +## </summary>
22139 +## </param>
22140 +## <infoflow type="none"/>
22141 +#
22142 +interface(`corenet_udp_bind_printer_port',`
22143 + gen_require(`
22144 + type printer_port_t;
22145 + ')
22146 +
22147 + allow $1 printer_port_t:udp_socket name_bind;
22148 + allow $1 self:capability net_bind_service;
22149 +')
22150 +
22151 +########################################
22152 +## <summary>
22153 +## Make a TCP connection to the printer port.
22154 +## </summary>
22155 +## <param name="domain">
22156 +## <summary>
22157 +## Domain allowed access.
22158 +## </summary>
22159 +## </param>
22160 +#
22161 +interface(`corenet_tcp_connect_printer_port',`
22162 + gen_require(`
22163 + type printer_port_t;
22164 + ')
22165 +
22166 + allow $1 printer_port_t:tcp_socket name_connect;
22167 +')
22168 +
22169 +
22170 +########################################
22171 +## <summary>
22172 +## Send printer_client packets.
22173 +## </summary>
22174 +## <param name="domain">
22175 +## <summary>
22176 +## Domain allowed access.
22177 +## </summary>
22178 +## </param>
22179 +## <infoflow type="write" weight="10"/>
22180 +#
22181 +interface(`corenet_send_printer_client_packets',`
22182 + gen_require(`
22183 + type printer_client_packet_t;
22184 + ')
22185 +
22186 + allow $1 printer_client_packet_t:packet send;
22187 +')
22188 +
22189 +########################################
22190 +## <summary>
22191 +## Do not audit attempts to send printer_client packets.
22192 +## </summary>
22193 +## <param name="domain">
22194 +## <summary>
22195 +## Domain to not audit.
22196 +## </summary>
22197 +## </param>
22198 +## <infoflow type="none"/>
22199 +#
22200 +interface(`corenet_dontaudit_send_printer_client_packets',`
22201 + gen_require(`
22202 + type printer_client_packet_t;
22203 + ')
22204 +
22205 + dontaudit $1 printer_client_packet_t:packet send;
22206 +')
22207 +
22208 +########################################
22209 +## <summary>
22210 +## Receive printer_client packets.
22211 +## </summary>
22212 +## <param name="domain">
22213 +## <summary>
22214 +## Domain allowed access.
22215 +## </summary>
22216 +## </param>
22217 +## <infoflow type="read" weight="10"/>
22218 +#
22219 +interface(`corenet_receive_printer_client_packets',`
22220 + gen_require(`
22221 + type printer_client_packet_t;
22222 + ')
22223 +
22224 + allow $1 printer_client_packet_t:packet recv;
22225 +')
22226 +
22227 +########################################
22228 +## <summary>
22229 +## Do not audit attempts to receive printer_client packets.
22230 +## </summary>
22231 +## <param name="domain">
22232 +## <summary>
22233 +## Domain allowed access.
22234 +## </summary>
22235 +## </param>
22236 +## <infoflow type="none"/>
22237 +#
22238 +interface(`corenet_dontaudit_receive_printer_client_packets',`
22239 + gen_require(`
22240 + type printer_client_packet_t;
22241 + ')
22242 +
22243 + dontaudit $1 printer_client_packet_t:packet recv;
22244 +')
22245 +
22246 +########################################
22247 +## <summary>
22248 +## Send and receive printer_client packets.
22249 +## </summary>
22250 +## <param name="domain">
22251 +## <summary>
22252 +## Domain allowed access.
22253 +## </summary>
22254 +## </param>
22255 +## <infoflow type="both" weight="10"/>
22256 +#
22257 +interface(`corenet_sendrecv_printer_client_packets',`
22258 + corenet_send_printer_client_packets($1)
22259 + corenet_receive_printer_client_packets($1)
22260 +')
22261 +
22262 +########################################
22263 +## <summary>
22264 +## Do not audit attempts to send and receive printer_client packets.
22265 +## </summary>
22266 +## <param name="domain">
22267 +## <summary>
22268 +## Domain to not audit.
22269 +## </summary>
22270 +## </param>
22271 +## <infoflow type="none"/>
22272 +#
22273 +interface(`corenet_dontaudit_sendrecv_printer_client_packets',`
22274 + corenet_dontaudit_send_printer_client_packets($1)
22275 + corenet_dontaudit_receive_printer_client_packets($1)
22276 +')
22277 +
22278 +########################################
22279 +## <summary>
22280 +## Relabel packets to printer_client the packet type.
22281 +## </summary>
22282 +## <param name="domain">
22283 +## <summary>
22284 +## Domain allowed access.
22285 +## </summary>
22286 +## </param>
22287 +#
22288 +interface(`corenet_relabelto_printer_client_packets',`
22289 + gen_require(`
22290 + type printer_client_packet_t;
22291 + ')
22292 +
22293 + allow $1 printer_client_packet_t:packet relabelto;
22294 +')
22295 +
22296 +
22297 +########################################
22298 +## <summary>
22299 +## Send printer_server packets.
22300 +## </summary>
22301 +## <param name="domain">
22302 +## <summary>
22303 +## Domain allowed access.
22304 +## </summary>
22305 +## </param>
22306 +## <infoflow type="write" weight="10"/>
22307 +#
22308 +interface(`corenet_send_printer_server_packets',`
22309 + gen_require(`
22310 + type printer_server_packet_t;
22311 + ')
22312 +
22313 + allow $1 printer_server_packet_t:packet send;
22314 +')
22315 +
22316 +########################################
22317 +## <summary>
22318 +## Do not audit attempts to send printer_server packets.
22319 +## </summary>
22320 +## <param name="domain">
22321 +## <summary>
22322 +## Domain to not audit.
22323 +## </summary>
22324 +## </param>
22325 +## <infoflow type="none"/>
22326 +#
22327 +interface(`corenet_dontaudit_send_printer_server_packets',`
22328 + gen_require(`
22329 + type printer_server_packet_t;
22330 + ')
22331 +
22332 + dontaudit $1 printer_server_packet_t:packet send;
22333 +')
22334 +
22335 +########################################
22336 +## <summary>
22337 +## Receive printer_server packets.
22338 +## </summary>
22339 +## <param name="domain">
22340 +## <summary>
22341 +## Domain allowed access.
22342 +## </summary>
22343 +## </param>
22344 +## <infoflow type="read" weight="10"/>
22345 +#
22346 +interface(`corenet_receive_printer_server_packets',`
22347 + gen_require(`
22348 + type printer_server_packet_t;
22349 + ')
22350 +
22351 + allow $1 printer_server_packet_t:packet recv;
22352 +')
22353 +
22354 +########################################
22355 +## <summary>
22356 +## Do not audit attempts to receive printer_server packets.
22357 +## </summary>
22358 +## <param name="domain">
22359 +## <summary>
22360 +## Domain allowed access.
22361 +## </summary>
22362 +## </param>
22363 +## <infoflow type="none"/>
22364 +#
22365 +interface(`corenet_dontaudit_receive_printer_server_packets',`
22366 + gen_require(`
22367 + type printer_server_packet_t;
22368 + ')
22369 +
22370 + dontaudit $1 printer_server_packet_t:packet recv;
22371 +')
22372 +
22373 +########################################
22374 +## <summary>
22375 +## Send and receive printer_server packets.
22376 +## </summary>
22377 +## <param name="domain">
22378 +## <summary>
22379 +## Domain allowed access.
22380 +## </summary>
22381 +## </param>
22382 +## <infoflow type="both" weight="10"/>
22383 +#
22384 +interface(`corenet_sendrecv_printer_server_packets',`
22385 + corenet_send_printer_server_packets($1)
22386 + corenet_receive_printer_server_packets($1)
22387 +')
22388 +
22389 +########################################
22390 +## <summary>
22391 +## Do not audit attempts to send and receive printer_server packets.
22392 +## </summary>
22393 +## <param name="domain">
22394 +## <summary>
22395 +## Domain to not audit.
22396 +## </summary>
22397 +## </param>
22398 +## <infoflow type="none"/>
22399 +#
22400 +interface(`corenet_dontaudit_sendrecv_printer_server_packets',`
22401 + corenet_dontaudit_send_printer_server_packets($1)
22402 + corenet_dontaudit_receive_printer_server_packets($1)
22403 +')
22404 +
22405 +########################################
22406 +## <summary>
22407 +## Relabel packets to printer_server the packet type.
22408 +## </summary>
22409 +## <param name="domain">
22410 +## <summary>
22411 +## Domain allowed access.
22412 +## </summary>
22413 +## </param>
22414 +#
22415 +interface(`corenet_relabelto_printer_server_packets',`
22416 + gen_require(`
22417 + type printer_server_packet_t;
22418 + ')
22419 +
22420 + allow $1 printer_server_packet_t:packet relabelto;
22421 +')
22422 +
22423 +
22424 +
22425 +
22426 +########################################
22427 +## <summary>
22428 +## Send and receive TCP traffic on the ptal port.
22429 +## </summary>
22430 +## <param name="domain">
22431 +## <summary>
22432 +## Domain allowed access.
22433 +## </summary>
22434 +## </param>
22435 +## <infoflow type="both" weight="10"/>
22436 +#
22437 +interface(`corenet_tcp_sendrecv_ptal_port',`
22438 + gen_require(`
22439 + type ptal_port_t;
22440 + ')
22441 +
22442 + allow $1 ptal_port_t:tcp_socket { send_msg recv_msg };
22443 +')
22444 +
22445 +########################################
22446 +## <summary>
22447 +## Send UDP traffic on the ptal port.
22448 +## </summary>
22449 +## <param name="domain">
22450 +## <summary>
22451 +## Domain allowed access.
22452 +## </summary>
22453 +## </param>
22454 +## <infoflow type="write" weight="10"/>
22455 +#
22456 +interface(`corenet_udp_send_ptal_port',`
22457 + gen_require(`
22458 + type ptal_port_t;
22459 + ')
22460 +
22461 + allow $1 ptal_port_t:udp_socket send_msg;
22462 +')
22463 +
22464 +########################################
22465 +## <summary>
22466 +## Do not audit attempts to send UDP traffic on the ptal port.
22467 +## </summary>
22468 +## <param name="domain">
22469 +## <summary>
22470 +## Domain to not audit.
22471 +## </summary>
22472 +## </param>
22473 +## <infoflow type="none"/>
22474 +#
22475 +interface(`corenet_dontaudit_udp_send_ptal_port',`
22476 gen_require(`
22477 - type presence_port_t;
22478 + type ptal_port_t;
22479 ')
22480
22481 - dontaudit $1 presence_port_t:udp_socket send_msg;
22482 + dontaudit $1 ptal_port_t:udp_socket send_msg;
22483 ')
22484
22485 ########################################
22486 ## <summary>
22487 -## Receive UDP traffic on the presence port.
22488 +## Receive UDP traffic on the ptal port.
22489 ## </summary>
22490 ## <param name="domain">
22491 ## <summary>
22492 @@ -66133,17 +68791,17 @@ interface(`corenet_dontaudit_udp_send_presence_port',`
22493 ## </param>
22494 ## <infoflow type="read" weight="10"/>
22495 #
22496 -interface(`corenet_udp_receive_presence_port',`
22497 +interface(`corenet_udp_receive_ptal_port',`
22498 gen_require(`
22499 - type presence_port_t;
22500 + type ptal_port_t;
22501 ')
22502
22503 - allow $1 presence_port_t:udp_socket recv_msg;
22504 + allow $1 ptal_port_t:udp_socket recv_msg;
22505 ')
22506
22507 ########################################
22508 ## <summary>
22509 -## Do not audit attempts to receive UDP traffic on the presence port.
22510 +## Do not audit attempts to receive UDP traffic on the ptal port.
22511 ## </summary>
22512 ## <param name="domain">
22513 ## <summary>
22514 @@ -66152,17 +68810,17 @@ interface(`corenet_udp_receive_presence_port',`
22515 ## </param>
22516 ## <infoflow type="none"/>
22517 #
22518 -interface(`corenet_dontaudit_udp_receive_presence_port',`
22519 +interface(`corenet_dontaudit_udp_receive_ptal_port',`
22520 gen_require(`
22521 - type presence_port_t;
22522 + type ptal_port_t;
22523 ')
22524
22525 - dontaudit $1 presence_port_t:udp_socket recv_msg;
22526 + dontaudit $1 ptal_port_t:udp_socket recv_msg;
22527 ')
22528
22529 ########################################
22530 ## <summary>
22531 -## Send and receive UDP traffic on the presence port.
22532 +## Send and receive UDP traffic on the ptal port.
22533 ## </summary>
22534 ## <param name="domain">
22535 ## <summary>
22536 @@ -66171,15 +68829,458 @@ interface(`corenet_dontaudit_udp_receive_presence_port',`
22537 ## </param>
22538 ## <infoflow type="both" weight="10"/>
22539 #
22540 -interface(`corenet_udp_sendrecv_presence_port',`
22541 - corenet_udp_send_presence_port($1)
22542 - corenet_udp_receive_presence_port($1)
22543 +interface(`corenet_udp_sendrecv_ptal_port',`
22544 + corenet_udp_send_ptal_port($1)
22545 + corenet_udp_receive_ptal_port($1)
22546 ')
22547
22548 ########################################
22549 ## <summary>
22550 ## Do not audit attempts to send and receive
22551 -## UDP traffic on the presence port.
22552 +## UDP traffic on the ptal port.
22553 +## </summary>
22554 +## <param name="domain">
22555 +## <summary>
22556 +## Domain to not audit.
22557 +## </summary>
22558 +## </param>
22559 +## <infoflow type="none"/>
22560 +#
22561 +interface(`corenet_dontaudit_udp_sendrecv_ptal_port',`
22562 + corenet_dontaudit_udp_send_ptal_port($1)
22563 + corenet_dontaudit_udp_receive_ptal_port($1)
22564 +')
22565 +
22566 +########################################
22567 +## <summary>
22568 +## Bind TCP sockets to the ptal port.
22569 +## </summary>
22570 +## <param name="domain">
22571 +## <summary>
22572 +## Domain allowed access.
22573 +## </summary>
22574 +## </param>
22575 +## <infoflow type="none"/>
22576 +#
22577 +interface(`corenet_tcp_bind_ptal_port',`
22578 + gen_require(`
22579 + type ptal_port_t;
22580 + ')
22581 +
22582 + allow $1 ptal_port_t:tcp_socket name_bind;
22583 +
22584 +')
22585 +
22586 +########################################
22587 +## <summary>
22588 +## Bind UDP sockets to the ptal port.
22589 +## </summary>
22590 +## <param name="domain">
22591 +## <summary>
22592 +## Domain allowed access.
22593 +## </summary>
22594 +## </param>
22595 +## <infoflow type="none"/>
22596 +#
22597 +interface(`corenet_udp_bind_ptal_port',`
22598 + gen_require(`
22599 + type ptal_port_t;
22600 + ')
22601 +
22602 + allow $1 ptal_port_t:udp_socket name_bind;
22603 +
22604 +')
22605 +
22606 +########################################
22607 +## <summary>
22608 +## Make a TCP connection to the ptal port.
22609 +## </summary>
22610 +## <param name="domain">
22611 +## <summary>
22612 +## Domain allowed access.
22613 +## </summary>
22614 +## </param>
22615 +#
22616 +interface(`corenet_tcp_connect_ptal_port',`
22617 + gen_require(`
22618 + type ptal_port_t;
22619 + ')
22620 +
22621 + allow $1 ptal_port_t:tcp_socket name_connect;
22622 +')
22623 +
22624 +
22625 +########################################
22626 +## <summary>
22627 +## Send ptal_client packets.
22628 +## </summary>
22629 +## <param name="domain">
22630 +## <summary>
22631 +## Domain allowed access.
22632 +## </summary>
22633 +## </param>
22634 +## <infoflow type="write" weight="10"/>
22635 +#
22636 +interface(`corenet_send_ptal_client_packets',`
22637 + gen_require(`
22638 + type ptal_client_packet_t;
22639 + ')
22640 +
22641 + allow $1 ptal_client_packet_t:packet send;
22642 +')
22643 +
22644 +########################################
22645 +## <summary>
22646 +## Do not audit attempts to send ptal_client packets.
22647 +## </summary>
22648 +## <param name="domain">
22649 +## <summary>
22650 +## Domain to not audit.
22651 +## </summary>
22652 +## </param>
22653 +## <infoflow type="none"/>
22654 +#
22655 +interface(`corenet_dontaudit_send_ptal_client_packets',`
22656 + gen_require(`
22657 + type ptal_client_packet_t;
22658 + ')
22659 +
22660 + dontaudit $1 ptal_client_packet_t:packet send;
22661 +')
22662 +
22663 +########################################
22664 +## <summary>
22665 +## Receive ptal_client packets.
22666 +## </summary>
22667 +## <param name="domain">
22668 +## <summary>
22669 +## Domain allowed access.
22670 +## </summary>
22671 +## </param>
22672 +## <infoflow type="read" weight="10"/>
22673 +#
22674 +interface(`corenet_receive_ptal_client_packets',`
22675 + gen_require(`
22676 + type ptal_client_packet_t;
22677 + ')
22678 +
22679 + allow $1 ptal_client_packet_t:packet recv;
22680 +')
22681 +
22682 +########################################
22683 +## <summary>
22684 +## Do not audit attempts to receive ptal_client packets.
22685 +## </summary>
22686 +## <param name="domain">
22687 +## <summary>
22688 +## Domain allowed access.
22689 +## </summary>
22690 +## </param>
22691 +## <infoflow type="none"/>
22692 +#
22693 +interface(`corenet_dontaudit_receive_ptal_client_packets',`
22694 + gen_require(`
22695 + type ptal_client_packet_t;
22696 + ')
22697 +
22698 + dontaudit $1 ptal_client_packet_t:packet recv;
22699 +')
22700 +
22701 +########################################
22702 +## <summary>
22703 +## Send and receive ptal_client packets.
22704 +## </summary>
22705 +## <param name="domain">
22706 +## <summary>
22707 +## Domain allowed access.
22708 +## </summary>
22709 +## </param>
22710 +## <infoflow type="both" weight="10"/>
22711 +#
22712 +interface(`corenet_sendrecv_ptal_client_packets',`
22713 + corenet_send_ptal_client_packets($1)
22714 + corenet_receive_ptal_client_packets($1)
22715 +')
22716 +
22717 +########################################
22718 +## <summary>
22719 +## Do not audit attempts to send and receive ptal_client packets.
22720 +## </summary>
22721 +## <param name="domain">
22722 +## <summary>
22723 +## Domain to not audit.
22724 +## </summary>
22725 +## </param>
22726 +## <infoflow type="none"/>
22727 +#
22728 +interface(`corenet_dontaudit_sendrecv_ptal_client_packets',`
22729 + corenet_dontaudit_send_ptal_client_packets($1)
22730 + corenet_dontaudit_receive_ptal_client_packets($1)
22731 +')
22732 +
22733 +########################################
22734 +## <summary>
22735 +## Relabel packets to ptal_client the packet type.
22736 +## </summary>
22737 +## <param name="domain">
22738 +## <summary>
22739 +## Domain allowed access.
22740 +## </summary>
22741 +## </param>
22742 +#
22743 +interface(`corenet_relabelto_ptal_client_packets',`
22744 + gen_require(`
22745 + type ptal_client_packet_t;
22746 + ')
22747 +
22748 + allow $1 ptal_client_packet_t:packet relabelto;
22749 +')
22750 +
22751 +
22752 +########################################
22753 +## <summary>
22754 +## Send ptal_server packets.
22755 +## </summary>
22756 +## <param name="domain">
22757 +## <summary>
22758 +## Domain allowed access.
22759 +## </summary>
22760 +## </param>
22761 +## <infoflow type="write" weight="10"/>
22762 +#
22763 +interface(`corenet_send_ptal_server_packets',`
22764 + gen_require(`
22765 + type ptal_server_packet_t;
22766 + ')
22767 +
22768 + allow $1 ptal_server_packet_t:packet send;
22769 +')
22770 +
22771 +########################################
22772 +## <summary>
22773 +## Do not audit attempts to send ptal_server packets.
22774 +## </summary>
22775 +## <param name="domain">
22776 +## <summary>
22777 +## Domain to not audit.
22778 +## </summary>
22779 +## </param>
22780 +## <infoflow type="none"/>
22781 +#
22782 +interface(`corenet_dontaudit_send_ptal_server_packets',`
22783 + gen_require(`
22784 + type ptal_server_packet_t;
22785 + ')
22786 +
22787 + dontaudit $1 ptal_server_packet_t:packet send;
22788 +')
22789 +
22790 +########################################
22791 +## <summary>
22792 +## Receive ptal_server packets.
22793 +## </summary>
22794 +## <param name="domain">
22795 +## <summary>
22796 +## Domain allowed access.
22797 +## </summary>
22798 +## </param>
22799 +## <infoflow type="read" weight="10"/>
22800 +#
22801 +interface(`corenet_receive_ptal_server_packets',`
22802 + gen_require(`
22803 + type ptal_server_packet_t;
22804 + ')
22805 +
22806 + allow $1 ptal_server_packet_t:packet recv;
22807 +')
22808 +
22809 +########################################
22810 +## <summary>
22811 +## Do not audit attempts to receive ptal_server packets.
22812 +## </summary>
22813 +## <param name="domain">
22814 +## <summary>
22815 +## Domain allowed access.
22816 +## </summary>
22817 +## </param>
22818 +## <infoflow type="none"/>
22819 +#
22820 +interface(`corenet_dontaudit_receive_ptal_server_packets',`
22821 + gen_require(`
22822 + type ptal_server_packet_t;
22823 + ')
22824 +
22825 + dontaudit $1 ptal_server_packet_t:packet recv;
22826 +')
22827 +
22828 +########################################
22829 +## <summary>
22830 +## Send and receive ptal_server packets.
22831 +## </summary>
22832 +## <param name="domain">
22833 +## <summary>
22834 +## Domain allowed access.
22835 +## </summary>
22836 +## </param>
22837 +## <infoflow type="both" weight="10"/>
22838 +#
22839 +interface(`corenet_sendrecv_ptal_server_packets',`
22840 + corenet_send_ptal_server_packets($1)
22841 + corenet_receive_ptal_server_packets($1)
22842 +')
22843 +
22844 +########################################
22845 +## <summary>
22846 +## Do not audit attempts to send and receive ptal_server packets.
22847 +## </summary>
22848 +## <param name="domain">
22849 +## <summary>
22850 +## Domain to not audit.
22851 +## </summary>
22852 +## </param>
22853 +## <infoflow type="none"/>
22854 +#
22855 +interface(`corenet_dontaudit_sendrecv_ptal_server_packets',`
22856 + corenet_dontaudit_send_ptal_server_packets($1)
22857 + corenet_dontaudit_receive_ptal_server_packets($1)
22858 +')
22859 +
22860 +########################################
22861 +## <summary>
22862 +## Relabel packets to ptal_server the packet type.
22863 +## </summary>
22864 +## <param name="domain">
22865 +## <summary>
22866 +## Domain allowed access.
22867 +## </summary>
22868 +## </param>
22869 +#
22870 +interface(`corenet_relabelto_ptal_server_packets',`
22871 + gen_require(`
22872 + type ptal_server_packet_t;
22873 + ')
22874 +
22875 + allow $1 ptal_server_packet_t:packet relabelto;
22876 +')
22877 +
22878 +
22879 +
22880 +
22881 +########################################
22882 +## <summary>
22883 +## Send and receive TCP traffic on the pulseaudio port.
22884 +## </summary>
22885 +## <param name="domain">
22886 +## <summary>
22887 +## Domain allowed access.
22888 +## </summary>
22889 +## </param>
22890 +## <infoflow type="both" weight="10"/>
22891 +#
22892 +interface(`corenet_tcp_sendrecv_pulseaudio_port',`
22893 + gen_require(`
22894 + type pulseaudio_port_t;
22895 + ')
22896 +
22897 + allow $1 pulseaudio_port_t:tcp_socket { send_msg recv_msg };
22898 +')
22899 +
22900 +########################################
22901 +## <summary>
22902 +## Send UDP traffic on the pulseaudio port.
22903 +## </summary>
22904 +## <param name="domain">
22905 +## <summary>
22906 +## Domain allowed access.
22907 +## </summary>
22908 +## </param>
22909 +## <infoflow type="write" weight="10"/>
22910 +#
22911 +interface(`corenet_udp_send_pulseaudio_port',`
22912 + gen_require(`
22913 + type pulseaudio_port_t;
22914 + ')
22915 +
22916 + allow $1 pulseaudio_port_t:udp_socket send_msg;
22917 +')
22918 +
22919 +########################################
22920 +## <summary>
22921 +## Do not audit attempts to send UDP traffic on the pulseaudio port.
22922 +## </summary>
22923 +## <param name="domain">
22924 +## <summary>
22925 +## Domain to not audit.
22926 +## </summary>
22927 +## </param>
22928 +## <infoflow type="none"/>
22929 +#
22930 +interface(`corenet_dontaudit_udp_send_pulseaudio_port',`
22931 + gen_require(`
22932 + type pulseaudio_port_t;
22933 + ')
22934 +
22935 + dontaudit $1 pulseaudio_port_t:udp_socket send_msg;
22936 +')
22937 +
22938 +########################################
22939 +## <summary>
22940 +## Receive UDP traffic on the pulseaudio port.
22941 +## </summary>
22942 +## <param name="domain">
22943 +## <summary>
22944 +## Domain allowed access.
22945 +## </summary>
22946 +## </param>
22947 +## <infoflow type="read" weight="10"/>
22948 +#
22949 +interface(`corenet_udp_receive_pulseaudio_port',`
22950 + gen_require(`
22951 + type pulseaudio_port_t;
22952 + ')
22953 +
22954 + allow $1 pulseaudio_port_t:udp_socket recv_msg;
22955 +')
22956 +
22957 +########################################
22958 +## <summary>
22959 +## Do not audit attempts to receive UDP traffic on the pulseaudio port.
22960 +## </summary>
22961 +## <param name="domain">
22962 +## <summary>
22963 +## Domain to not audit.
22964 +## </summary>
22965 +## </param>
22966 +## <infoflow type="none"/>
22967 +#
22968 +interface(`corenet_dontaudit_udp_receive_pulseaudio_port',`
22969 + gen_require(`
22970 + type pulseaudio_port_t;
22971 + ')
22972 +
22973 + dontaudit $1 pulseaudio_port_t:udp_socket recv_msg;
22974 +')
22975 +
22976 +########################################
22977 +## <summary>
22978 +## Send and receive UDP traffic on the pulseaudio port.
22979 +## </summary>
22980 +## <param name="domain">
22981 +## <summary>
22982 +## Domain allowed access.
22983 +## </summary>
22984 +## </param>
22985 +## <infoflow type="both" weight="10"/>
22986 +#
22987 +interface(`corenet_udp_sendrecv_pulseaudio_port',`
22988 + corenet_udp_send_pulseaudio_port($1)
22989 + corenet_udp_receive_pulseaudio_port($1)
22990 +')
22991 +
22992 +########################################
22993 +## <summary>
22994 +## Do not audit attempts to send and receive
22995 +## UDP traffic on the pulseaudio port.
22996 ## </summary>
22997 ## <param name="domain">
22998 ## <summary>
22999 @@ -66188,14 +69289,14 @@ interface(`corenet_udp_sendrecv_presence_port',`
23000 ## </param>
23001 ## <infoflow type="none"/>
23002 #
23003 -interface(`corenet_dontaudit_udp_sendrecv_presence_port',`
23004 - corenet_dontaudit_udp_send_presence_port($1)
23005 - corenet_dontaudit_udp_receive_presence_port($1)
23006 +interface(`corenet_dontaudit_udp_sendrecv_pulseaudio_port',`
23007 + corenet_dontaudit_udp_send_pulseaudio_port($1)
23008 + corenet_dontaudit_udp_receive_pulseaudio_port($1)
23009 ')
23010
23011 ########################################
23012 ## <summary>
23013 -## Bind TCP sockets to the presence port.
23014 +## Bind TCP sockets to the pulseaudio port.
23015 ## </summary>
23016 ## <param name="domain">
23017 ## <summary>
23018 @@ -66204,18 +69305,18 @@ interface(`corenet_dontaudit_udp_sendrecv_presence_port',`
23019 ## </param>
23020 ## <infoflow type="none"/>
23021 #
23022 -interface(`corenet_tcp_bind_presence_port',`
23023 +interface(`corenet_tcp_bind_pulseaudio_port',`
23024 gen_require(`
23025 - type presence_port_t;
23026 + type pulseaudio_port_t;
23027 ')
23028
23029 - allow $1 presence_port_t:tcp_socket name_bind;
23030 - allow $1 self:capability net_bind_service;
23031 + allow $1 pulseaudio_port_t:tcp_socket name_bind;
23032 +
23033 ')
23034
23035 ########################################
23036 ## <summary>
23037 -## Bind UDP sockets to the presence port.
23038 +## Bind UDP sockets to the pulseaudio port.
23039 ## </summary>
23040 ## <param name="domain">
23041 ## <summary>
23042 @@ -66224,18 +69325,18 @@ interface(`corenet_tcp_bind_presence_port',`
23043 ## </param>
23044 ## <infoflow type="none"/>
23045 #
23046 -interface(`corenet_udp_bind_presence_port',`
23047 +interface(`corenet_udp_bind_pulseaudio_port',`
23048 gen_require(`
23049 - type presence_port_t;
23050 + type pulseaudio_port_t;
23051 ')
23052
23053 - allow $1 presence_port_t:udp_socket name_bind;
23054 - allow $1 self:capability net_bind_service;
23055 + allow $1 pulseaudio_port_t:udp_socket name_bind;
23056 +
23057 ')
23058
23059 ########################################
23060 ## <summary>
23061 -## Make a TCP connection to the presence port.
23062 +## Make a TCP connection to the pulseaudio port.
23063 ## </summary>
23064 ## <param name="domain">
23065 ## <summary>
23066 @@ -66243,18 +69344,18 @@ interface(`corenet_udp_bind_presence_port',`
23067 ## </summary>
23068 ## </param>
23069 #
23070 -interface(`corenet_tcp_connect_presence_port',`
23071 +interface(`corenet_tcp_connect_pulseaudio_port',`
23072 gen_require(`
23073 - type presence_port_t;
23074 + type pulseaudio_port_t;
23075 ')
23076
23077 - allow $1 presence_port_t:tcp_socket name_connect;
23078 + allow $1 pulseaudio_port_t:tcp_socket name_connect;
23079 ')
23080
23081
23082 ########################################
23083 ## <summary>
23084 -## Send presence_client packets.
23085 +## Send pulseaudio_client packets.
23086 ## </summary>
23087 ## <param name="domain">
23088 ## <summary>
23089 @@ -66263,17 +69364,17 @@ interface(`corenet_tcp_connect_presence_port',`
23090 ## </param>
23091 ## <infoflow type="write" weight="10"/>
23092 #
23093 -interface(`corenet_send_presence_client_packets',`
23094 +interface(`corenet_send_pulseaudio_client_packets',`
23095 gen_require(`
23096 - type presence_client_packet_t;
23097 + type pulseaudio_client_packet_t;
23098 ')
23099
23100 - allow $1 presence_client_packet_t:packet send;
23101 + allow $1 pulseaudio_client_packet_t:packet send;
23102 ')
23103
23104 ########################################
23105 ## <summary>
23106 -## Do not audit attempts to send presence_client packets.
23107 +## Do not audit attempts to send pulseaudio_client packets.
23108 ## </summary>
23109 ## <param name="domain">
23110 ## <summary>
23111 @@ -66282,17 +69383,17 @@ interface(`corenet_send_presence_client_packets',`
23112 ## </param>
23113 ## <infoflow type="none"/>
23114 #
23115 -interface(`corenet_dontaudit_send_presence_client_packets',`
23116 +interface(`corenet_dontaudit_send_pulseaudio_client_packets',`
23117 gen_require(`
23118 - type presence_client_packet_t;
23119 + type pulseaudio_client_packet_t;
23120 ')
23121
23122 - dontaudit $1 presence_client_packet_t:packet send;
23123 + dontaudit $1 pulseaudio_client_packet_t:packet send;
23124 ')
23125
23126 ########################################
23127 ## <summary>
23128 -## Receive presence_client packets.
23129 +## Receive pulseaudio_client packets.
23130 ## </summary>
23131 ## <param name="domain">
23132 ## <summary>
23133 @@ -66301,17 +69402,17 @@ interface(`corenet_dontaudit_send_presence_client_packets',`
23134 ## </param>
23135 ## <infoflow type="read" weight="10"/>
23136 #
23137 -interface(`corenet_receive_presence_client_packets',`
23138 +interface(`corenet_receive_pulseaudio_client_packets',`
23139 gen_require(`
23140 - type presence_client_packet_t;
23141 + type pulseaudio_client_packet_t;
23142 ')
23143
23144 - allow $1 presence_client_packet_t:packet recv;
23145 + allow $1 pulseaudio_client_packet_t:packet recv;
23146 ')
23147
23148 ########################################
23149 ## <summary>
23150 -## Do not audit attempts to receive presence_client packets.
23151 +## Do not audit attempts to receive pulseaudio_client packets.
23152 ## </summary>
23153 ## <param name="domain">
23154 ## <summary>
23155 @@ -66320,17 +69421,17 @@ interface(`corenet_receive_presence_client_packets',`
23156 ## </param>
23157 ## <infoflow type="none"/>
23158 #
23159 -interface(`corenet_dontaudit_receive_presence_client_packets',`
23160 +interface(`corenet_dontaudit_receive_pulseaudio_client_packets',`
23161 gen_require(`
23162 - type presence_client_packet_t;
23163 + type pulseaudio_client_packet_t;
23164 ')
23165
23166 - dontaudit $1 presence_client_packet_t:packet recv;
23167 + dontaudit $1 pulseaudio_client_packet_t:packet recv;
23168 ')
23169
23170 ########################################
23171 ## <summary>
23172 -## Send and receive presence_client packets.
23173 +## Send and receive pulseaudio_client packets.
23174 ## </summary>
23175 ## <param name="domain">
23176 ## <summary>
23177 @@ -66339,14 +69440,14 @@ interface(`corenet_dontaudit_receive_presence_client_packets',`
23178 ## </param>
23179 ## <infoflow type="both" weight="10"/>
23180 #
23181 -interface(`corenet_sendrecv_presence_client_packets',`
23182 - corenet_send_presence_client_packets($1)
23183 - corenet_receive_presence_client_packets($1)
23184 +interface(`corenet_sendrecv_pulseaudio_client_packets',`
23185 + corenet_send_pulseaudio_client_packets($1)
23186 + corenet_receive_pulseaudio_client_packets($1)
23187 ')
23188
23189 ########################################
23190 ## <summary>
23191 -## Do not audit attempts to send and receive presence_client packets.
23192 +## Do not audit attempts to send and receive pulseaudio_client packets.
23193 ## </summary>
23194 ## <param name="domain">
23195 ## <summary>
23196 @@ -66355,14 +69456,14 @@ interface(`corenet_sendrecv_presence_client_packets',`
23197 ## </param>
23198 ## <infoflow type="none"/>
23199 #
23200 -interface(`corenet_dontaudit_sendrecv_presence_client_packets',`
23201 - corenet_dontaudit_send_presence_client_packets($1)
23202 - corenet_dontaudit_receive_presence_client_packets($1)
23203 +interface(`corenet_dontaudit_sendrecv_pulseaudio_client_packets',`
23204 + corenet_dontaudit_send_pulseaudio_client_packets($1)
23205 + corenet_dontaudit_receive_pulseaudio_client_packets($1)
23206 ')
23207
23208 ########################################
23209 ## <summary>
23210 -## Relabel packets to presence_client the packet type.
23211 +## Relabel packets to pulseaudio_client the packet type.
23212 ## </summary>
23213 ## <param name="domain">
23214 ## <summary>
23215 @@ -66370,18 +69471,18 @@ interface(`corenet_dontaudit_sendrecv_presence_client_packets',`
23216 ## </summary>
23217 ## </param>
23218 #
23219 -interface(`corenet_relabelto_presence_client_packets',`
23220 +interface(`corenet_relabelto_pulseaudio_client_packets',`
23221 gen_require(`
23222 - type presence_client_packet_t;
23223 + type pulseaudio_client_packet_t;
23224 ')
23225
23226 - allow $1 presence_client_packet_t:packet relabelto;
23227 + allow $1 pulseaudio_client_packet_t:packet relabelto;
23228 ')
23229
23230
23231 ########################################
23232 ## <summary>
23233 -## Send presence_server packets.
23234 +## Send pulseaudio_server packets.
23235 ## </summary>
23236 ## <param name="domain">
23237 ## <summary>
23238 @@ -66390,17 +69491,17 @@ interface(`corenet_relabelto_presence_client_packets',`
23239 ## </param>
23240 ## <infoflow type="write" weight="10"/>
23241 #
23242 -interface(`corenet_send_presence_server_packets',`
23243 +interface(`corenet_send_pulseaudio_server_packets',`
23244 gen_require(`
23245 - type presence_server_packet_t;
23246 + type pulseaudio_server_packet_t;
23247 ')
23248
23249 - allow $1 presence_server_packet_t:packet send;
23250 + allow $1 pulseaudio_server_packet_t:packet send;
23251 ')
23252
23253 ########################################
23254 ## <summary>
23255 -## Do not audit attempts to send presence_server packets.
23256 +## Do not audit attempts to send pulseaudio_server packets.
23257 ## </summary>
23258 ## <param name="domain">
23259 ## <summary>
23260 @@ -66409,17 +69510,17 @@ interface(`corenet_send_presence_server_packets',`
23261 ## </param>
23262 ## <infoflow type="none"/>
23263 #
23264 -interface(`corenet_dontaudit_send_presence_server_packets',`
23265 +interface(`corenet_dontaudit_send_pulseaudio_server_packets',`
23266 gen_require(`
23267 - type presence_server_packet_t;
23268 + type pulseaudio_server_packet_t;
23269 ')
23270
23271 - dontaudit $1 presence_server_packet_t:packet send;
23272 + dontaudit $1 pulseaudio_server_packet_t:packet send;
23273 ')
23274
23275 ########################################
23276 ## <summary>
23277 -## Receive presence_server packets.
23278 +## Receive pulseaudio_server packets.
23279 ## </summary>
23280 ## <param name="domain">
23281 ## <summary>
23282 @@ -66428,17 +69529,17 @@ interface(`corenet_dontaudit_send_presence_server_packets',`
23283 ## </param>
23284 ## <infoflow type="read" weight="10"/>
23285 #
23286 -interface(`corenet_receive_presence_server_packets',`
23287 +interface(`corenet_receive_pulseaudio_server_packets',`
23288 gen_require(`
23289 - type presence_server_packet_t;
23290 + type pulseaudio_server_packet_t;
23291 ')
23292
23293 - allow $1 presence_server_packet_t:packet recv;
23294 + allow $1 pulseaudio_server_packet_t:packet recv;
23295 ')
23296
23297 ########################################
23298 ## <summary>
23299 -## Do not audit attempts to receive presence_server packets.
23300 +## Do not audit attempts to receive pulseaudio_server packets.
23301 ## </summary>
23302 ## <param name="domain">
23303 ## <summary>
23304 @@ -66447,17 +69548,17 @@ interface(`corenet_receive_presence_server_packets',`
23305 ## </param>
23306 ## <infoflow type="none"/>
23307 #
23308 -interface(`corenet_dontaudit_receive_presence_server_packets',`
23309 +interface(`corenet_dontaudit_receive_pulseaudio_server_packets',`
23310 gen_require(`
23311 - type presence_server_packet_t;
23312 + type pulseaudio_server_packet_t;
23313 ')
23314
23315 - dontaudit $1 presence_server_packet_t:packet recv;
23316 + dontaudit $1 pulseaudio_server_packet_t:packet recv;
23317 ')
23318
23319 ########################################
23320 ## <summary>
23321 -## Send and receive presence_server packets.
23322 +## Send and receive pulseaudio_server packets.
23323 ## </summary>
23324 ## <param name="domain">
23325 ## <summary>
23326 @@ -66466,14 +69567,14 @@ interface(`corenet_dontaudit_receive_presence_server_packets',`
23327 ## </param>
23328 ## <infoflow type="both" weight="10"/>
23329 #
23330 -interface(`corenet_sendrecv_presence_server_packets',`
23331 - corenet_send_presence_server_packets($1)
23332 - corenet_receive_presence_server_packets($1)
23333 +interface(`corenet_sendrecv_pulseaudio_server_packets',`
23334 + corenet_send_pulseaudio_server_packets($1)
23335 + corenet_receive_pulseaudio_server_packets($1)
23336 ')
23337
23338 ########################################
23339 ## <summary>
23340 -## Do not audit attempts to send and receive presence_server packets.
23341 +## Do not audit attempts to send and receive pulseaudio_server packets.
23342 ## </summary>
23343 ## <param name="domain">
23344 ## <summary>
23345 @@ -66482,14 +69583,14 @@ interface(`corenet_sendrecv_presence_server_packets',`
23346 ## </param>
23347 ## <infoflow type="none"/>
23348 #
23349 -interface(`corenet_dontaudit_sendrecv_presence_server_packets',`
23350 - corenet_dontaudit_send_presence_server_packets($1)
23351 - corenet_dontaudit_receive_presence_server_packets($1)
23352 +interface(`corenet_dontaudit_sendrecv_pulseaudio_server_packets',`
23353 + corenet_dontaudit_send_pulseaudio_server_packets($1)
23354 + corenet_dontaudit_receive_pulseaudio_server_packets($1)
23355 ')
23356
23357 ########################################
23358 ## <summary>
23359 -## Relabel packets to presence_server the packet type.
23360 +## Relabel packets to pulseaudio_server the packet type.
23361 ## </summary>
23362 ## <param name="domain">
23363 ## <summary>
23364 @@ -66497,12 +69598,12 @@ interface(`corenet_dontaudit_sendrecv_presence_server_packets',`
23365 ## </summary>
23366 ## </param>
23367 #
23368 -interface(`corenet_relabelto_presence_server_packets',`
23369 +interface(`corenet_relabelto_pulseaudio_server_packets',`
23370 gen_require(`
23371 - type presence_server_packet_t;
23372 + type pulseaudio_server_packet_t;
23373 ')
23374
23375 - allow $1 presence_server_packet_t:packet relabelto;
23376 + allow $1 pulseaudio_server_packet_t:packet relabelto;
23377 ')
23378
23379
23380 @@ -66510,7 +69611,7 @@ interface(`corenet_relabelto_presence_server_packets',`
23381
23382 ########################################
23383 ## <summary>
23384 -## Send and receive TCP traffic on the printer port.
23385 +## Send and receive TCP traffic on the puppet port.
23386 ## </summary>
23387 ## <param name="domain">
23388 ## <summary>
23389 @@ -66519,17 +69620,17 @@ interface(`corenet_relabelto_presence_server_packets',`
23390 ## </param>
23391 ## <infoflow type="both" weight="10"/>
23392 #
23393 -interface(`corenet_tcp_sendrecv_printer_port',`
23394 +interface(`corenet_tcp_sendrecv_puppet_port',`
23395 gen_require(`
23396 - type printer_port_t;
23397 + type puppet_port_t;
23398 ')
23399
23400 - allow $1 printer_port_t:tcp_socket { send_msg recv_msg };
23401 + allow $1 puppet_port_t:tcp_socket { send_msg recv_msg };
23402 ')
23403
23404 ########################################
23405 ## <summary>
23406 -## Send UDP traffic on the printer port.
23407 +## Send UDP traffic on the puppet port.
23408 ## </summary>
23409 ## <param name="domain">
23410 ## <summary>
23411 @@ -66538,17 +69639,17 @@ interface(`corenet_tcp_sendrecv_printer_port',`
23412 ## </param>
23413 ## <infoflow type="write" weight="10"/>
23414 #
23415 -interface(`corenet_udp_send_printer_port',`
23416 +interface(`corenet_udp_send_puppet_port',`
23417 gen_require(`
23418 - type printer_port_t;
23419 + type puppet_port_t;
23420 ')
23421
23422 - allow $1 printer_port_t:udp_socket send_msg;
23423 + allow $1 puppet_port_t:udp_socket send_msg;
23424 ')
23425
23426 ########################################
23427 ## <summary>
23428 -## Do not audit attempts to send UDP traffic on the printer port.
23429 +## Do not audit attempts to send UDP traffic on the puppet port.
23430 ## </summary>
23431 ## <param name="domain">
23432 ## <summary>
23433 @@ -66557,17 +69658,17 @@ interface(`corenet_udp_send_printer_port',`
23434 ## </param>
23435 ## <infoflow type="none"/>
23436 #
23437 -interface(`corenet_dontaudit_udp_send_printer_port',`
23438 +interface(`corenet_dontaudit_udp_send_puppet_port',`
23439 gen_require(`
23440 - type printer_port_t;
23441 + type puppet_port_t;
23442 ')
23443
23444 - dontaudit $1 printer_port_t:udp_socket send_msg;
23445 + dontaudit $1 puppet_port_t:udp_socket send_msg;
23446 ')
23447
23448 ########################################
23449 ## <summary>
23450 -## Receive UDP traffic on the printer port.
23451 +## Receive UDP traffic on the puppet port.
23452 ## </summary>
23453 ## <param name="domain">
23454 ## <summary>
23455 @@ -66576,17 +69677,17 @@ interface(`corenet_dontaudit_udp_send_printer_port',`
23456 ## </param>
23457 ## <infoflow type="read" weight="10"/>
23458 #
23459 -interface(`corenet_udp_receive_printer_port',`
23460 +interface(`corenet_udp_receive_puppet_port',`
23461 gen_require(`
23462 - type printer_port_t;
23463 + type puppet_port_t;
23464 ')
23465
23466 - allow $1 printer_port_t:udp_socket recv_msg;
23467 + allow $1 puppet_port_t:udp_socket recv_msg;
23468 ')
23469
23470 ########################################
23471 ## <summary>
23472 -## Do not audit attempts to receive UDP traffic on the printer port.
23473 +## Do not audit attempts to receive UDP traffic on the puppet port.
23474 ## </summary>
23475 ## <param name="domain">
23476 ## <summary>
23477 @@ -66595,17 +69696,17 @@ interface(`corenet_udp_receive_printer_port',`
23478 ## </param>
23479 ## <infoflow type="none"/>
23480 #
23481 -interface(`corenet_dontaudit_udp_receive_printer_port',`
23482 +interface(`corenet_dontaudit_udp_receive_puppet_port',`
23483 gen_require(`
23484 - type printer_port_t;
23485 + type puppet_port_t;
23486 ')
23487
23488 - dontaudit $1 printer_port_t:udp_socket recv_msg;
23489 + dontaudit $1 puppet_port_t:udp_socket recv_msg;
23490 ')
23491
23492 ########################################
23493 ## <summary>
23494 -## Send and receive UDP traffic on the printer port.
23495 +## Send and receive UDP traffic on the puppet port.
23496 ## </summary>
23497 ## <param name="domain">
23498 ## <summary>
23499 @@ -66614,15 +69715,15 @@ interface(`corenet_dontaudit_udp_receive_printer_port',`
23500 ## </param>
23501 ## <infoflow type="both" weight="10"/>
23502 #
23503 -interface(`corenet_udp_sendrecv_printer_port',`
23504 - corenet_udp_send_printer_port($1)
23505 - corenet_udp_receive_printer_port($1)
23506 +interface(`corenet_udp_sendrecv_puppet_port',`
23507 + corenet_udp_send_puppet_port($1)
23508 + corenet_udp_receive_puppet_port($1)
23509 ')
23510
23511 ########################################
23512 ## <summary>
23513 ## Do not audit attempts to send and receive
23514 -## UDP traffic on the printer port.
23515 +## UDP traffic on the puppet port.
23516 ## </summary>
23517 ## <param name="domain">
23518 ## <summary>
23519 @@ -66631,14 +69732,14 @@ interface(`corenet_udp_sendrecv_printer_port',`
23520 ## </param>
23521 ## <infoflow type="none"/>
23522 #
23523 -interface(`corenet_dontaudit_udp_sendrecv_printer_port',`
23524 - corenet_dontaudit_udp_send_printer_port($1)
23525 - corenet_dontaudit_udp_receive_printer_port($1)
23526 +interface(`corenet_dontaudit_udp_sendrecv_puppet_port',`
23527 + corenet_dontaudit_udp_send_puppet_port($1)
23528 + corenet_dontaudit_udp_receive_puppet_port($1)
23529 ')
23530
23531 ########################################
23532 ## <summary>
23533 -## Bind TCP sockets to the printer port.
23534 +## Bind TCP sockets to the puppet port.
23535 ## </summary>
23536 ## <param name="domain">
23537 ## <summary>
23538 @@ -66647,18 +69748,18 @@ interface(`corenet_dontaudit_udp_sendrecv_printer_port',`
23539 ## </param>
23540 ## <infoflow type="none"/>
23541 #
23542 -interface(`corenet_tcp_bind_printer_port',`
23543 +interface(`corenet_tcp_bind_puppet_port',`
23544 gen_require(`
23545 - type printer_port_t;
23546 + type puppet_port_t;
23547 ')
23548
23549 - allow $1 printer_port_t:tcp_socket name_bind;
23550 - allow $1 self:capability net_bind_service;
23551 + allow $1 puppet_port_t:tcp_socket name_bind;
23552 +
23553 ')
23554
23555 ########################################
23556 ## <summary>
23557 -## Bind UDP sockets to the printer port.
23558 +## Bind UDP sockets to the puppet port.
23559 ## </summary>
23560 ## <param name="domain">
23561 ## <summary>
23562 @@ -66667,18 +69768,18 @@ interface(`corenet_tcp_bind_printer_port',`
23563 ## </param>
23564 ## <infoflow type="none"/>
23565 #
23566 -interface(`corenet_udp_bind_printer_port',`
23567 +interface(`corenet_udp_bind_puppet_port',`
23568 gen_require(`
23569 - type printer_port_t;
23570 + type puppet_port_t;
23571 ')
23572
23573 - allow $1 printer_port_t:udp_socket name_bind;
23574 - allow $1 self:capability net_bind_service;
23575 + allow $1 puppet_port_t:udp_socket name_bind;
23576 +
23577 ')
23578
23579 ########################################
23580 ## <summary>
23581 -## Make a TCP connection to the printer port.
23582 +## Make a TCP connection to the puppet port.
23583 ## </summary>
23584 ## <param name="domain">
23585 ## <summary>
23586 @@ -66686,18 +69787,18 @@ interface(`corenet_udp_bind_printer_port',`
23587 ## </summary>
23588 ## </param>
23589 #
23590 -interface(`corenet_tcp_connect_printer_port',`
23591 +interface(`corenet_tcp_connect_puppet_port',`
23592 gen_require(`
23593 - type printer_port_t;
23594 + type puppet_port_t;
23595 ')
23596
23597 - allow $1 printer_port_t:tcp_socket name_connect;
23598 + allow $1 puppet_port_t:tcp_socket name_connect;
23599 ')
23600
23601
23602 ########################################
23603 ## <summary>
23604 -## Send printer_client packets.
23605 +## Send puppet_client packets.
23606 ## </summary>
23607 ## <param name="domain">
23608 ## <summary>
23609 @@ -66706,17 +69807,17 @@ interface(`corenet_tcp_connect_printer_port',`
23610 ## </param>
23611 ## <infoflow type="write" weight="10"/>
23612 #
23613 -interface(`corenet_send_printer_client_packets',`
23614 +interface(`corenet_send_puppet_client_packets',`
23615 gen_require(`
23616 - type printer_client_packet_t;
23617 + type puppet_client_packet_t;
23618 ')
23619
23620 - allow $1 printer_client_packet_t:packet send;
23621 + allow $1 puppet_client_packet_t:packet send;
23622 ')
23623
23624 ########################################
23625 ## <summary>
23626 -## Do not audit attempts to send printer_client packets.
23627 +## Do not audit attempts to send puppet_client packets.
23628 ## </summary>
23629 ## <param name="domain">
23630 ## <summary>
23631 @@ -66725,17 +69826,17 @@ interface(`corenet_send_printer_client_packets',`
23632 ## </param>
23633 ## <infoflow type="none"/>
23634 #
23635 -interface(`corenet_dontaudit_send_printer_client_packets',`
23636 +interface(`corenet_dontaudit_send_puppet_client_packets',`
23637 gen_require(`
23638 - type printer_client_packet_t;
23639 + type puppet_client_packet_t;
23640 ')
23641
23642 - dontaudit $1 printer_client_packet_t:packet send;
23643 + dontaudit $1 puppet_client_packet_t:packet send;
23644 ')
23645
23646 ########################################
23647 ## <summary>
23648 -## Receive printer_client packets.
23649 +## Receive puppet_client packets.
23650 ## </summary>
23651 ## <param name="domain">
23652 ## <summary>
23653 @@ -66744,17 +69845,17 @@ interface(`corenet_dontaudit_send_printer_client_packets',`
23654 ## </param>
23655 ## <infoflow type="read" weight="10"/>
23656 #
23657 -interface(`corenet_receive_printer_client_packets',`
23658 +interface(`corenet_receive_puppet_client_packets',`
23659 gen_require(`
23660 - type printer_client_packet_t;
23661 + type puppet_client_packet_t;
23662 ')
23663
23664 - allow $1 printer_client_packet_t:packet recv;
23665 + allow $1 puppet_client_packet_t:packet recv;
23666 ')
23667
23668 ########################################
23669 ## <summary>
23670 -## Do not audit attempts to receive printer_client packets.
23671 +## Do not audit attempts to receive puppet_client packets.
23672 ## </summary>
23673 ## <param name="domain">
23674 ## <summary>
23675 @@ -66763,17 +69864,17 @@ interface(`corenet_receive_printer_client_packets',`
23676 ## </param>
23677 ## <infoflow type="none"/>
23678 #
23679 -interface(`corenet_dontaudit_receive_printer_client_packets',`
23680 +interface(`corenet_dontaudit_receive_puppet_client_packets',`
23681 gen_require(`
23682 - type printer_client_packet_t;
23683 + type puppet_client_packet_t;
23684 ')
23685
23686 - dontaudit $1 printer_client_packet_t:packet recv;
23687 + dontaudit $1 puppet_client_packet_t:packet recv;
23688 ')
23689
23690 ########################################
23691 ## <summary>
23692 -## Send and receive printer_client packets.
23693 +## Send and receive puppet_client packets.
23694 ## </summary>
23695 ## <param name="domain">
23696 ## <summary>
23697 @@ -66782,14 +69883,14 @@ interface(`corenet_dontaudit_receive_printer_client_packets',`
23698 ## </param>
23699 ## <infoflow type="both" weight="10"/>
23700 #
23701 -interface(`corenet_sendrecv_printer_client_packets',`
23702 - corenet_send_printer_client_packets($1)
23703 - corenet_receive_printer_client_packets($1)
23704 +interface(`corenet_sendrecv_puppet_client_packets',`
23705 + corenet_send_puppet_client_packets($1)
23706 + corenet_receive_puppet_client_packets($1)
23707 ')
23708
23709 ########################################
23710 ## <summary>
23711 -## Do not audit attempts to send and receive printer_client packets.
23712 +## Do not audit attempts to send and receive puppet_client packets.
23713 ## </summary>
23714 ## <param name="domain">
23715 ## <summary>
23716 @@ -66798,14 +69899,14 @@ interface(`corenet_sendrecv_printer_client_packets',`
23717 ## </param>
23718 ## <infoflow type="none"/>
23719 #
23720 -interface(`corenet_dontaudit_sendrecv_printer_client_packets',`
23721 - corenet_dontaudit_send_printer_client_packets($1)
23722 - corenet_dontaudit_receive_printer_client_packets($1)
23723 +interface(`corenet_dontaudit_sendrecv_puppet_client_packets',`
23724 + corenet_dontaudit_send_puppet_client_packets($1)
23725 + corenet_dontaudit_receive_puppet_client_packets($1)
23726 ')
23727
23728 ########################################
23729 ## <summary>
23730 -## Relabel packets to printer_client the packet type.
23731 +## Relabel packets to puppet_client the packet type.
23732 ## </summary>
23733 ## <param name="domain">
23734 ## <summary>
23735 @@ -66813,18 +69914,18 @@ interface(`corenet_dontaudit_sendrecv_printer_client_packets',`
23736 ## </summary>
23737 ## </param>
23738 #
23739 -interface(`corenet_relabelto_printer_client_packets',`
23740 +interface(`corenet_relabelto_puppet_client_packets',`
23741 gen_require(`
23742 - type printer_client_packet_t;
23743 + type puppet_client_packet_t;
23744 ')
23745
23746 - allow $1 printer_client_packet_t:packet relabelto;
23747 + allow $1 puppet_client_packet_t:packet relabelto;
23748 ')
23749
23750
23751 ########################################
23752 ## <summary>
23753 -## Send printer_server packets.
23754 +## Send puppet_server packets.
23755 ## </summary>
23756 ## <param name="domain">
23757 ## <summary>
23758 @@ -66833,17 +69934,17 @@ interface(`corenet_relabelto_printer_client_packets',`
23759 ## </param>
23760 ## <infoflow type="write" weight="10"/>
23761 #
23762 -interface(`corenet_send_printer_server_packets',`
23763 +interface(`corenet_send_puppet_server_packets',`
23764 gen_require(`
23765 - type printer_server_packet_t;
23766 + type puppet_server_packet_t;
23767 ')
23768
23769 - allow $1 printer_server_packet_t:packet send;
23770 + allow $1 puppet_server_packet_t:packet send;
23771 ')
23772
23773 ########################################
23774 ## <summary>
23775 -## Do not audit attempts to send printer_server packets.
23776 +## Do not audit attempts to send puppet_server packets.
23777 ## </summary>
23778 ## <param name="domain">
23779 ## <summary>
23780 @@ -66852,17 +69953,17 @@ interface(`corenet_send_printer_server_packets',`
23781 ## </param>
23782 ## <infoflow type="none"/>
23783 #
23784 -interface(`corenet_dontaudit_send_printer_server_packets',`
23785 +interface(`corenet_dontaudit_send_puppet_server_packets',`
23786 gen_require(`
23787 - type printer_server_packet_t;
23788 + type puppet_server_packet_t;
23789 ')
23790
23791 - dontaudit $1 printer_server_packet_t:packet send;
23792 + dontaudit $1 puppet_server_packet_t:packet send;
23793 ')
23794
23795 ########################################
23796 ## <summary>
23797 -## Receive printer_server packets.
23798 +## Receive puppet_server packets.
23799 ## </summary>
23800 ## <param name="domain">
23801 ## <summary>
23802 @@ -66871,17 +69972,17 @@ interface(`corenet_dontaudit_send_printer_server_packets',`
23803 ## </param>
23804 ## <infoflow type="read" weight="10"/>
23805 #
23806 -interface(`corenet_receive_printer_server_packets',`
23807 +interface(`corenet_receive_puppet_server_packets',`
23808 gen_require(`
23809 - type printer_server_packet_t;
23810 + type puppet_server_packet_t;
23811 ')
23812
23813 - allow $1 printer_server_packet_t:packet recv;
23814 + allow $1 puppet_server_packet_t:packet recv;
23815 ')
23816
23817 ########################################
23818 ## <summary>
23819 -## Do not audit attempts to receive printer_server packets.
23820 +## Do not audit attempts to receive puppet_server packets.
23821 ## </summary>
23822 ## <param name="domain">
23823 ## <summary>
23824 @@ -66890,17 +69991,17 @@ interface(`corenet_receive_printer_server_packets',`
23825 ## </param>
23826 ## <infoflow type="none"/>
23827 #
23828 -interface(`corenet_dontaudit_receive_printer_server_packets',`
23829 +interface(`corenet_dontaudit_receive_puppet_server_packets',`
23830 gen_require(`
23831 - type printer_server_packet_t;
23832 + type puppet_server_packet_t;
23833 ')
23834
23835 - dontaudit $1 printer_server_packet_t:packet recv;
23836 + dontaudit $1 puppet_server_packet_t:packet recv;
23837 ')
23838
23839 ########################################
23840 ## <summary>
23841 -## Send and receive printer_server packets.
23842 +## Send and receive puppet_server packets.
23843 ## </summary>
23844 ## <param name="domain">
23845 ## <summary>
23846 @@ -66909,14 +70010,14 @@ interface(`corenet_dontaudit_receive_printer_server_packets',`
23847 ## </param>
23848 ## <infoflow type="both" weight="10"/>
23849 #
23850 -interface(`corenet_sendrecv_printer_server_packets',`
23851 - corenet_send_printer_server_packets($1)
23852 - corenet_receive_printer_server_packets($1)
23853 +interface(`corenet_sendrecv_puppet_server_packets',`
23854 + corenet_send_puppet_server_packets($1)
23855 + corenet_receive_puppet_server_packets($1)
23856 ')
23857
23858 ########################################
23859 ## <summary>
23860 -## Do not audit attempts to send and receive printer_server packets.
23861 +## Do not audit attempts to send and receive puppet_server packets.
23862 ## </summary>
23863 ## <param name="domain">
23864 ## <summary>
23865 @@ -66925,14 +70026,14 @@ interface(`corenet_sendrecv_printer_server_packets',`
23866 ## </param>
23867 ## <infoflow type="none"/>
23868 #
23869 -interface(`corenet_dontaudit_sendrecv_printer_server_packets',`
23870 - corenet_dontaudit_send_printer_server_packets($1)
23871 - corenet_dontaudit_receive_printer_server_packets($1)
23872 +interface(`corenet_dontaudit_sendrecv_puppet_server_packets',`
23873 + corenet_dontaudit_send_puppet_server_packets($1)
23874 + corenet_dontaudit_receive_puppet_server_packets($1)
23875 ')
23876
23877 ########################################
23878 ## <summary>
23879 -## Relabel packets to printer_server the packet type.
23880 +## Relabel packets to puppet_server the packet type.
23881 ## </summary>
23882 ## <param name="domain">
23883 ## <summary>
23884 @@ -66940,12 +70041,12 @@ interface(`corenet_dontaudit_sendrecv_printer_server_packets',`
23885 ## </summary>
23886 ## </param>
23887 #
23888 -interface(`corenet_relabelto_printer_server_packets',`
23889 +interface(`corenet_relabelto_puppet_server_packets',`
23890 gen_require(`
23891 - type printer_server_packet_t;
23892 + type puppet_server_packet_t;
23893 ')
23894
23895 - allow $1 printer_server_packet_t:packet relabelto;
23896 + allow $1 puppet_server_packet_t:packet relabelto;
23897 ')
23898
23899
23900 @@ -66953,7 +70054,7 @@ interface(`corenet_relabelto_printer_server_packets',`
23901
23902 ########################################
23903 ## <summary>
23904 -## Send and receive TCP traffic on the ptal port.
23905 +## Send and receive TCP traffic on the puppetclient port.
23906 ## </summary>
23907 ## <param name="domain">
23908 ## <summary>
23909 @@ -66962,17 +70063,17 @@ interface(`corenet_relabelto_printer_server_packets',`
23910 ## </param>
23911 ## <infoflow type="both" weight="10"/>
23912 #
23913 -interface(`corenet_tcp_sendrecv_ptal_port',`
23914 +interface(`corenet_tcp_sendrecv_puppetclient_port',`
23915 gen_require(`
23916 - type ptal_port_t;
23917 + type puppetclient_port_t;
23918 ')
23919
23920 - allow $1 ptal_port_t:tcp_socket { send_msg recv_msg };
23921 + allow $1 puppetclient_port_t:tcp_socket { send_msg recv_msg };
23922 ')
23923
23924 ########################################
23925 ## <summary>
23926 -## Send UDP traffic on the ptal port.
23927 +## Send UDP traffic on the puppetclient port.
23928 ## </summary>
23929 ## <param name="domain">
23930 ## <summary>
23931 @@ -66981,17 +70082,17 @@ interface(`corenet_tcp_sendrecv_ptal_port',`
23932 ## </param>
23933 ## <infoflow type="write" weight="10"/>
23934 #
23935 -interface(`corenet_udp_send_ptal_port',`
23936 +interface(`corenet_udp_send_puppetclient_port',`
23937 gen_require(`
23938 - type ptal_port_t;
23939 + type puppetclient_port_t;
23940 ')
23941
23942 - allow $1 ptal_port_t:udp_socket send_msg;
23943 + allow $1 puppetclient_port_t:udp_socket send_msg;
23944 ')
23945
23946 ########################################
23947 ## <summary>
23948 -## Do not audit attempts to send UDP traffic on the ptal port.
23949 +## Do not audit attempts to send UDP traffic on the puppetclient port.
23950 ## </summary>
23951 ## <param name="domain">
23952 ## <summary>
23953 @@ -67000,17 +70101,17 @@ interface(`corenet_udp_send_ptal_port',`
23954 ## </param>
23955 ## <infoflow type="none"/>
23956 #
23957 -interface(`corenet_dontaudit_udp_send_ptal_port',`
23958 +interface(`corenet_dontaudit_udp_send_puppetclient_port',`
23959 gen_require(`
23960 - type ptal_port_t;
23961 + type puppetclient_port_t;
23962 ')
23963
23964 - dontaudit $1 ptal_port_t:udp_socket send_msg;
23965 + dontaudit $1 puppetclient_port_t:udp_socket send_msg;
23966 ')
23967
23968 ########################################
23969 ## <summary>
23970 -## Receive UDP traffic on the ptal port.
23971 +## Receive UDP traffic on the puppetclient port.
23972 ## </summary>
23973 ## <param name="domain">
23974 ## <summary>
23975 @@ -67019,17 +70120,17 @@ interface(`corenet_dontaudit_udp_send_ptal_port',`
23976 ## </param>
23977 ## <infoflow type="read" weight="10"/>
23978 #
23979 -interface(`corenet_udp_receive_ptal_port',`
23980 +interface(`corenet_udp_receive_puppetclient_port',`
23981 gen_require(`
23982 - type ptal_port_t;
23983 + type puppetclient_port_t;
23984 ')
23985
23986 - allow $1 ptal_port_t:udp_socket recv_msg;
23987 + allow $1 puppetclient_port_t:udp_socket recv_msg;
23988 ')
23989
23990 ########################################
23991 ## <summary>
23992 -## Do not audit attempts to receive UDP traffic on the ptal port.
23993 +## Do not audit attempts to receive UDP traffic on the puppetclient port.
23994 ## </summary>
23995 ## <param name="domain">
23996 ## <summary>
23997 @@ -67038,17 +70139,17 @@ interface(`corenet_udp_receive_ptal_port',`
23998 ## </param>
23999 ## <infoflow type="none"/>
24000 #
24001 -interface(`corenet_dontaudit_udp_receive_ptal_port',`
24002 +interface(`corenet_dontaudit_udp_receive_puppetclient_port',`
24003 gen_require(`
24004 - type ptal_port_t;
24005 + type puppetclient_port_t;
24006 ')
24007
24008 - dontaudit $1 ptal_port_t:udp_socket recv_msg;
24009 + dontaudit $1 puppetclient_port_t:udp_socket recv_msg;
24010 ')
24011
24012 ########################################
24013 ## <summary>
24014 -## Send and receive UDP traffic on the ptal port.
24015 +## Send and receive UDP traffic on the puppetclient port.
24016 ## </summary>
24017 ## <param name="domain">
24018 ## <summary>
24019 @@ -67057,15 +70158,15 @@ interface(`corenet_dontaudit_udp_receive_ptal_port',`
24020 ## </param>
24021 ## <infoflow type="both" weight="10"/>
24022 #
24023 -interface(`corenet_udp_sendrecv_ptal_port',`
24024 - corenet_udp_send_ptal_port($1)
24025 - corenet_udp_receive_ptal_port($1)
24026 +interface(`corenet_udp_sendrecv_puppetclient_port',`
24027 + corenet_udp_send_puppetclient_port($1)
24028 + corenet_udp_receive_puppetclient_port($1)
24029 ')
24030
24031 ########################################
24032 ## <summary>
24033 ## Do not audit attempts to send and receive
24034 -## UDP traffic on the ptal port.
24035 +## UDP traffic on the puppetclient port.
24036 ## </summary>
24037 ## <param name="domain">
24038 ## <summary>
24039 @@ -67074,14 +70175,14 @@ interface(`corenet_udp_sendrecv_ptal_port',`
24040 ## </param>
24041 ## <infoflow type="none"/>
24042 #
24043 -interface(`corenet_dontaudit_udp_sendrecv_ptal_port',`
24044 - corenet_dontaudit_udp_send_ptal_port($1)
24045 - corenet_dontaudit_udp_receive_ptal_port($1)
24046 +interface(`corenet_dontaudit_udp_sendrecv_puppetclient_port',`
24047 + corenet_dontaudit_udp_send_puppetclient_port($1)
24048 + corenet_dontaudit_udp_receive_puppetclient_port($1)
24049 ')
24050
24051 ########################################
24052 ## <summary>
24053 -## Bind TCP sockets to the ptal port.
24054 +## Bind TCP sockets to the puppetclient port.
24055 ## </summary>
24056 ## <param name="domain">
24057 ## <summary>
24058 @@ -67090,18 +70191,18 @@ interface(`corenet_dontaudit_udp_sendrecv_ptal_port',`
24059 ## </param>
24060 ## <infoflow type="none"/>
24061 #
24062 -interface(`corenet_tcp_bind_ptal_port',`
24063 +interface(`corenet_tcp_bind_puppetclient_port',`
24064 gen_require(`
24065 - type ptal_port_t;
24066 + type puppetclient_port_t;
24067 ')
24068
24069 - allow $1 ptal_port_t:tcp_socket name_bind;
24070 + allow $1 puppetclient_port_t:tcp_socket name_bind;
24071
24072 ')
24073
24074 ########################################
24075 ## <summary>
24076 -## Bind UDP sockets to the ptal port.
24077 +## Bind UDP sockets to the puppetclient port.
24078 ## </summary>
24079 ## <param name="domain">
24080 ## <summary>
24081 @@ -67110,18 +70211,18 @@ interface(`corenet_tcp_bind_ptal_port',`
24082 ## </param>
24083 ## <infoflow type="none"/>
24084 #
24085 -interface(`corenet_udp_bind_ptal_port',`
24086 +interface(`corenet_udp_bind_puppetclient_port',`
24087 gen_require(`
24088 - type ptal_port_t;
24089 + type puppetclient_port_t;
24090 ')
24091
24092 - allow $1 ptal_port_t:udp_socket name_bind;
24093 + allow $1 puppetclient_port_t:udp_socket name_bind;
24094
24095 ')
24096
24097 ########################################
24098 ## <summary>
24099 -## Make a TCP connection to the ptal port.
24100 +## Make a TCP connection to the puppetclient port.
24101 ## </summary>
24102 ## <param name="domain">
24103 ## <summary>
24104 @@ -67129,18 +70230,18 @@ interface(`corenet_udp_bind_ptal_port',`
24105 ## </summary>
24106 ## </param>
24107 #
24108 -interface(`corenet_tcp_connect_ptal_port',`
24109 +interface(`corenet_tcp_connect_puppetclient_port',`
24110 gen_require(`
24111 - type ptal_port_t;
24112 + type puppetclient_port_t;
24113 ')
24114
24115 - allow $1 ptal_port_t:tcp_socket name_connect;
24116 + allow $1 puppetclient_port_t:tcp_socket name_connect;
24117 ')
24118
24119
24120 ########################################
24121 ## <summary>
24122 -## Send ptal_client packets.
24123 +## Send puppetclient_client packets.
24124 ## </summary>
24125 ## <param name="domain">
24126 ## <summary>
24127 @@ -67149,17 +70250,17 @@ interface(`corenet_tcp_connect_ptal_port',`
24128 ## </param>
24129 ## <infoflow type="write" weight="10"/>
24130 #
24131 -interface(`corenet_send_ptal_client_packets',`
24132 +interface(`corenet_send_puppetclient_client_packets',`
24133 gen_require(`
24134 - type ptal_client_packet_t;
24135 + type puppetclient_client_packet_t;
24136 ')
24137
24138 - allow $1 ptal_client_packet_t:packet send;
24139 + allow $1 puppetclient_client_packet_t:packet send;
24140 ')
24141
24142 ########################################
24143 ## <summary>
24144 -## Do not audit attempts to send ptal_client packets.
24145 +## Do not audit attempts to send puppetclient_client packets.
24146 ## </summary>
24147 ## <param name="domain">
24148 ## <summary>
24149 @@ -67168,17 +70269,17 @@ interface(`corenet_send_ptal_client_packets',`
24150 ## </param>
24151 ## <infoflow type="none"/>
24152 #
24153 -interface(`corenet_dontaudit_send_ptal_client_packets',`
24154 +interface(`corenet_dontaudit_send_puppetclient_client_packets',`
24155 gen_require(`
24156 - type ptal_client_packet_t;
24157 + type puppetclient_client_packet_t;
24158 ')
24159
24160 - dontaudit $1 ptal_client_packet_t:packet send;
24161 + dontaudit $1 puppetclient_client_packet_t:packet send;
24162 ')
24163
24164 ########################################
24165 ## <summary>
24166 -## Receive ptal_client packets.
24167 +## Receive puppetclient_client packets.
24168 ## </summary>
24169 ## <param name="domain">
24170 ## <summary>
24171 @@ -67187,17 +70288,17 @@ interface(`corenet_dontaudit_send_ptal_client_packets',`
24172 ## </param>
24173 ## <infoflow type="read" weight="10"/>
24174 #
24175 -interface(`corenet_receive_ptal_client_packets',`
24176 +interface(`corenet_receive_puppetclient_client_packets',`
24177 gen_require(`
24178 - type ptal_client_packet_t;
24179 + type puppetclient_client_packet_t;
24180 ')
24181
24182 - allow $1 ptal_client_packet_t:packet recv;
24183 + allow $1 puppetclient_client_packet_t:packet recv;
24184 ')
24185
24186 ########################################
24187 ## <summary>
24188 -## Do not audit attempts to receive ptal_client packets.
24189 +## Do not audit attempts to receive puppetclient_client packets.
24190 ## </summary>
24191 ## <param name="domain">
24192 ## <summary>
24193 @@ -67206,17 +70307,17 @@ interface(`corenet_receive_ptal_client_packets',`
24194 ## </param>
24195 ## <infoflow type="none"/>
24196 #
24197 -interface(`corenet_dontaudit_receive_ptal_client_packets',`
24198 +interface(`corenet_dontaudit_receive_puppetclient_client_packets',`
24199 gen_require(`
24200 - type ptal_client_packet_t;
24201 + type puppetclient_client_packet_t;
24202 ')
24203
24204 - dontaudit $1 ptal_client_packet_t:packet recv;
24205 + dontaudit $1 puppetclient_client_packet_t:packet recv;
24206 ')
24207
24208 ########################################
24209 ## <summary>
24210 -## Send and receive ptal_client packets.
24211 +## Send and receive puppetclient_client packets.
24212 ## </summary>
24213 ## <param name="domain">
24214 ## <summary>
24215 @@ -67225,14 +70326,14 @@ interface(`corenet_dontaudit_receive_ptal_client_packets',`
24216 ## </param>
24217 ## <infoflow type="both" weight="10"/>
24218 #
24219 -interface(`corenet_sendrecv_ptal_client_packets',`
24220 - corenet_send_ptal_client_packets($1)
24221 - corenet_receive_ptal_client_packets($1)
24222 +interface(`corenet_sendrecv_puppetclient_client_packets',`
24223 + corenet_send_puppetclient_client_packets($1)
24224 + corenet_receive_puppetclient_client_packets($1)
24225 ')
24226
24227 ########################################
24228 ## <summary>
24229 -## Do not audit attempts to send and receive ptal_client packets.
24230 +## Do not audit attempts to send and receive puppetclient_client packets.
24231 ## </summary>
24232 ## <param name="domain">
24233 ## <summary>
24234 @@ -67241,14 +70342,14 @@ interface(`corenet_sendrecv_ptal_client_packets',`
24235 ## </param>
24236 ## <infoflow type="none"/>
24237 #
24238 -interface(`corenet_dontaudit_sendrecv_ptal_client_packets',`
24239 - corenet_dontaudit_send_ptal_client_packets($1)
24240 - corenet_dontaudit_receive_ptal_client_packets($1)
24241 +interface(`corenet_dontaudit_sendrecv_puppetclient_client_packets',`
24242 + corenet_dontaudit_send_puppetclient_client_packets($1)
24243 + corenet_dontaudit_receive_puppetclient_client_packets($1)
24244 ')
24245
24246 ########################################
24247 ## <summary>
24248 -## Relabel packets to ptal_client the packet type.
24249 +## Relabel packets to puppetclient_client the packet type.
24250 ## </summary>
24251 ## <param name="domain">
24252 ## <summary>
24253 @@ -67256,18 +70357,18 @@ interface(`corenet_dontaudit_sendrecv_ptal_client_packets',`
24254 ## </summary>
24255 ## </param>
24256 #
24257 -interface(`corenet_relabelto_ptal_client_packets',`
24258 +interface(`corenet_relabelto_puppetclient_client_packets',`
24259 gen_require(`
24260 - type ptal_client_packet_t;
24261 + type puppetclient_client_packet_t;
24262 ')
24263
24264 - allow $1 ptal_client_packet_t:packet relabelto;
24265 + allow $1 puppetclient_client_packet_t:packet relabelto;
24266 ')
24267
24268
24269 ########################################
24270 ## <summary>
24271 -## Send ptal_server packets.
24272 +## Send puppetclient_server packets.
24273 ## </summary>
24274 ## <param name="domain">
24275 ## <summary>
24276 @@ -67276,17 +70377,17 @@ interface(`corenet_relabelto_ptal_client_packets',`
24277 ## </param>
24278 ## <infoflow type="write" weight="10"/>
24279 #
24280 -interface(`corenet_send_ptal_server_packets',`
24281 +interface(`corenet_send_puppetclient_server_packets',`
24282 gen_require(`
24283 - type ptal_server_packet_t;
24284 + type puppetclient_server_packet_t;
24285 ')
24286
24287 - allow $1 ptal_server_packet_t:packet send;
24288 + allow $1 puppetclient_server_packet_t:packet send;
24289 ')
24290
24291 ########################################
24292 ## <summary>
24293 -## Do not audit attempts to send ptal_server packets.
24294 +## Do not audit attempts to send puppetclient_server packets.
24295 ## </summary>
24296 ## <param name="domain">
24297 ## <summary>
24298 @@ -67295,17 +70396,17 @@ interface(`corenet_send_ptal_server_packets',`
24299 ## </param>
24300 ## <infoflow type="none"/>
24301 #
24302 -interface(`corenet_dontaudit_send_ptal_server_packets',`
24303 +interface(`corenet_dontaudit_send_puppetclient_server_packets',`
24304 gen_require(`
24305 - type ptal_server_packet_t;
24306 + type puppetclient_server_packet_t;
24307 ')
24308
24309 - dontaudit $1 ptal_server_packet_t:packet send;
24310 + dontaudit $1 puppetclient_server_packet_t:packet send;
24311 ')
24312
24313 ########################################
24314 ## <summary>
24315 -## Receive ptal_server packets.
24316 +## Receive puppetclient_server packets.
24317 ## </summary>
24318 ## <param name="domain">
24319 ## <summary>
24320 @@ -67314,17 +70415,17 @@ interface(`corenet_dontaudit_send_ptal_server_packets',`
24321 ## </param>
24322 ## <infoflow type="read" weight="10"/>
24323 #
24324 -interface(`corenet_receive_ptal_server_packets',`
24325 +interface(`corenet_receive_puppetclient_server_packets',`
24326 gen_require(`
24327 - type ptal_server_packet_t;
24328 + type puppetclient_server_packet_t;
24329 ')
24330
24331 - allow $1 ptal_server_packet_t:packet recv;
24332 + allow $1 puppetclient_server_packet_t:packet recv;
24333 ')
24334
24335 ########################################
24336 ## <summary>
24337 -## Do not audit attempts to receive ptal_server packets.
24338 +## Do not audit attempts to receive puppetclient_server packets.
24339 ## </summary>
24340 ## <param name="domain">
24341 ## <summary>
24342 @@ -67333,17 +70434,17 @@ interface(`corenet_receive_ptal_server_packets',`
24343 ## </param>
24344 ## <infoflow type="none"/>
24345 #
24346 -interface(`corenet_dontaudit_receive_ptal_server_packets',`
24347 +interface(`corenet_dontaudit_receive_puppetclient_server_packets',`
24348 gen_require(`
24349 - type ptal_server_packet_t;
24350 + type puppetclient_server_packet_t;
24351 ')
24352
24353 - dontaudit $1 ptal_server_packet_t:packet recv;
24354 + dontaudit $1 puppetclient_server_packet_t:packet recv;
24355 ')
24356
24357 ########################################
24358 ## <summary>
24359 -## Send and receive ptal_server packets.
24360 +## Send and receive puppetclient_server packets.
24361 ## </summary>
24362 ## <param name="domain">
24363 ## <summary>
24364 @@ -67352,14 +70453,14 @@ interface(`corenet_dontaudit_receive_ptal_server_packets',`
24365 ## </param>
24366 ## <infoflow type="both" weight="10"/>
24367 #
24368 -interface(`corenet_sendrecv_ptal_server_packets',`
24369 - corenet_send_ptal_server_packets($1)
24370 - corenet_receive_ptal_server_packets($1)
24371 +interface(`corenet_sendrecv_puppetclient_server_packets',`
24372 + corenet_send_puppetclient_server_packets($1)
24373 + corenet_receive_puppetclient_server_packets($1)
24374 ')
24375
24376 ########################################
24377 ## <summary>
24378 -## Do not audit attempts to send and receive ptal_server packets.
24379 +## Do not audit attempts to send and receive puppetclient_server packets.
24380 ## </summary>
24381 ## <param name="domain">
24382 ## <summary>
24383 @@ -67368,14 +70469,14 @@ interface(`corenet_sendrecv_ptal_server_packets',`
24384 ## </param>
24385 ## <infoflow type="none"/>
24386 #
24387 -interface(`corenet_dontaudit_sendrecv_ptal_server_packets',`
24388 - corenet_dontaudit_send_ptal_server_packets($1)
24389 - corenet_dontaudit_receive_ptal_server_packets($1)
24390 +interface(`corenet_dontaudit_sendrecv_puppetclient_server_packets',`
24391 + corenet_dontaudit_send_puppetclient_server_packets($1)
24392 + corenet_dontaudit_receive_puppetclient_server_packets($1)
24393 ')
24394
24395 ########################################
24396 ## <summary>
24397 -## Relabel packets to ptal_server the packet type.
24398 +## Relabel packets to puppetclient_server the packet type.
24399 ## </summary>
24400 ## <param name="domain">
24401 ## <summary>
24402 @@ -67383,12 +70484,12 @@ interface(`corenet_dontaudit_sendrecv_ptal_server_packets',`
24403 ## </summary>
24404 ## </param>
24405 #
24406 -interface(`corenet_relabelto_ptal_server_packets',`
24407 +interface(`corenet_relabelto_puppetclient_server_packets',`
24408 gen_require(`
24409 - type ptal_server_packet_t;
24410 + type puppetclient_server_packet_t;
24411 ')
24412
24413 - allow $1 ptal_server_packet_t:packet relabelto;
24414 + allow $1 puppetclient_server_packet_t:packet relabelto;
24415 ')
24416
24417
24418 @@ -67396,7 +70497,7 @@ interface(`corenet_relabelto_ptal_server_packets',`
24419
24420 ########################################
24421 ## <summary>
24422 -## Send and receive TCP traffic on the pulseaudio port.
24423 +## Send and receive TCP traffic on the pxe port.
24424 ## </summary>
24425 ## <param name="domain">
24426 ## <summary>
24427 @@ -67405,17 +70506,17 @@ interface(`corenet_relabelto_ptal_server_packets',`
24428 ## </param>
24429 ## <infoflow type="both" weight="10"/>
24430 #
24431 -interface(`corenet_tcp_sendrecv_pulseaudio_port',`
24432 +interface(`corenet_tcp_sendrecv_pxe_port',`
24433 gen_require(`
24434 - type pulseaudio_port_t;
24435 + type pxe_port_t;
24436 ')
24437
24438 - allow $1 pulseaudio_port_t:tcp_socket { send_msg recv_msg };
24439 + allow $1 pxe_port_t:tcp_socket { send_msg recv_msg };
24440 ')
24441
24442 ########################################
24443 ## <summary>
24444 -## Send UDP traffic on the pulseaudio port.
24445 +## Send UDP traffic on the pxe port.
24446 ## </summary>
24447 ## <param name="domain">
24448 ## <summary>
24449 @@ -67424,17 +70525,17 @@ interface(`corenet_tcp_sendrecv_pulseaudio_port',`
24450 ## </param>
24451 ## <infoflow type="write" weight="10"/>
24452 #
24453 -interface(`corenet_udp_send_pulseaudio_port',`
24454 +interface(`corenet_udp_send_pxe_port',`
24455 gen_require(`
24456 - type pulseaudio_port_t;
24457 + type pxe_port_t;
24458 ')
24459
24460 - allow $1 pulseaudio_port_t:udp_socket send_msg;
24461 + allow $1 pxe_port_t:udp_socket send_msg;
24462 ')
24463
24464 ########################################
24465 ## <summary>
24466 -## Do not audit attempts to send UDP traffic on the pulseaudio port.
24467 +## Do not audit attempts to send UDP traffic on the pxe port.
24468 ## </summary>
24469 ## <param name="domain">
24470 ## <summary>
24471 @@ -67443,17 +70544,17 @@ interface(`corenet_udp_send_pulseaudio_port',`
24472 ## </param>
24473 ## <infoflow type="none"/>
24474 #
24475 -interface(`corenet_dontaudit_udp_send_pulseaudio_port',`
24476 +interface(`corenet_dontaudit_udp_send_pxe_port',`
24477 gen_require(`
24478 - type pulseaudio_port_t;
24479 + type pxe_port_t;
24480 ')
24481
24482 - dontaudit $1 pulseaudio_port_t:udp_socket send_msg;
24483 + dontaudit $1 pxe_port_t:udp_socket send_msg;
24484 ')
24485
24486 ########################################
24487 ## <summary>
24488 -## Receive UDP traffic on the pulseaudio port.
24489 +## Receive UDP traffic on the pxe port.
24490 ## </summary>
24491 ## <param name="domain">
24492 ## <summary>
24493 @@ -67462,17 +70563,17 @@ interface(`corenet_dontaudit_udp_send_pulseaudio_port',`
24494 ## </param>
24495 ## <infoflow type="read" weight="10"/>
24496 #
24497 -interface(`corenet_udp_receive_pulseaudio_port',`
24498 +interface(`corenet_udp_receive_pxe_port',`
24499 gen_require(`
24500 - type pulseaudio_port_t;
24501 + type pxe_port_t;
24502 ')
24503
24504 - allow $1 pulseaudio_port_t:udp_socket recv_msg;
24505 + allow $1 pxe_port_t:udp_socket recv_msg;
24506 ')
24507
24508 ########################################
24509 ## <summary>
24510 -## Do not audit attempts to receive UDP traffic on the pulseaudio port.
24511 +## Do not audit attempts to receive UDP traffic on the pxe port.
24512 ## </summary>
24513 ## <param name="domain">
24514 ## <summary>
24515 @@ -67481,17 +70582,17 @@ interface(`corenet_udp_receive_pulseaudio_port',`
24516 ## </param>
24517 ## <infoflow type="none"/>
24518 #
24519 -interface(`corenet_dontaudit_udp_receive_pulseaudio_port',`
24520 +interface(`corenet_dontaudit_udp_receive_pxe_port',`
24521 gen_require(`
24522 - type pulseaudio_port_t;
24523 + type pxe_port_t;
24524 ')
24525
24526 - dontaudit $1 pulseaudio_port_t:udp_socket recv_msg;
24527 + dontaudit $1 pxe_port_t:udp_socket recv_msg;
24528 ')
24529
24530 ########################################
24531 ## <summary>
24532 -## Send and receive UDP traffic on the pulseaudio port.
24533 +## Send and receive UDP traffic on the pxe port.
24534 ## </summary>
24535 ## <param name="domain">
24536 ## <summary>
24537 @@ -67500,15 +70601,15 @@ interface(`corenet_dontaudit_udp_receive_pulseaudio_port',`
24538 ## </param>
24539 ## <infoflow type="both" weight="10"/>
24540 #
24541 -interface(`corenet_udp_sendrecv_pulseaudio_port',`
24542 - corenet_udp_send_pulseaudio_port($1)
24543 - corenet_udp_receive_pulseaudio_port($1)
24544 +interface(`corenet_udp_sendrecv_pxe_port',`
24545 + corenet_udp_send_pxe_port($1)
24546 + corenet_udp_receive_pxe_port($1)
24547 ')
24548
24549 ########################################
24550 ## <summary>
24551 ## Do not audit attempts to send and receive
24552 -## UDP traffic on the pulseaudio port.
24553 +## UDP traffic on the pxe port.
24554 ## </summary>
24555 ## <param name="domain">
24556 ## <summary>
24557 @@ -67517,14 +70618,14 @@ interface(`corenet_udp_sendrecv_pulseaudio_port',`
24558 ## </param>
24559 ## <infoflow type="none"/>
24560 #
24561 -interface(`corenet_dontaudit_udp_sendrecv_pulseaudio_port',`
24562 - corenet_dontaudit_udp_send_pulseaudio_port($1)
24563 - corenet_dontaudit_udp_receive_pulseaudio_port($1)
24564 +interface(`corenet_dontaudit_udp_sendrecv_pxe_port',`
24565 + corenet_dontaudit_udp_send_pxe_port($1)
24566 + corenet_dontaudit_udp_receive_pxe_port($1)
24567 ')
24568
24569 ########################################
24570 ## <summary>
24571 -## Bind TCP sockets to the pulseaudio port.
24572 +## Bind TCP sockets to the pxe port.
24573 ## </summary>
24574 ## <param name="domain">
24575 ## <summary>
24576 @@ -67533,18 +70634,18 @@ interface(`corenet_dontaudit_udp_sendrecv_pulseaudio_port',`
24577 ## </param>
24578 ## <infoflow type="none"/>
24579 #
24580 -interface(`corenet_tcp_bind_pulseaudio_port',`
24581 +interface(`corenet_tcp_bind_pxe_port',`
24582 gen_require(`
24583 - type pulseaudio_port_t;
24584 + type pxe_port_t;
24585 ')
24586
24587 - allow $1 pulseaudio_port_t:tcp_socket name_bind;
24588 + allow $1 pxe_port_t:tcp_socket name_bind;
24589
24590 ')
24591
24592 ########################################
24593 ## <summary>
24594 -## Bind UDP sockets to the pulseaudio port.
24595 +## Bind UDP sockets to the pxe port.
24596 ## </summary>
24597 ## <param name="domain">
24598 ## <summary>
24599 @@ -67553,18 +70654,18 @@ interface(`corenet_tcp_bind_pulseaudio_port',`
24600 ## </param>
24601 ## <infoflow type="none"/>
24602 #
24603 -interface(`corenet_udp_bind_pulseaudio_port',`
24604 +interface(`corenet_udp_bind_pxe_port',`
24605 gen_require(`
24606 - type pulseaudio_port_t;
24607 + type pxe_port_t;
24608 ')
24609
24610 - allow $1 pulseaudio_port_t:udp_socket name_bind;
24611 + allow $1 pxe_port_t:udp_socket name_bind;
24612
24613 ')
24614
24615 ########################################
24616 ## <summary>
24617 -## Make a TCP connection to the pulseaudio port.
24618 +## Make a TCP connection to the pxe port.
24619 ## </summary>
24620 ## <param name="domain">
24621 ## <summary>
24622 @@ -67572,18 +70673,18 @@ interface(`corenet_udp_bind_pulseaudio_port',`
24623 ## </summary>
24624 ## </param>
24625 #
24626 -interface(`corenet_tcp_connect_pulseaudio_port',`
24627 +interface(`corenet_tcp_connect_pxe_port',`
24628 gen_require(`
24629 - type pulseaudio_port_t;
24630 + type pxe_port_t;
24631 ')
24632
24633 - allow $1 pulseaudio_port_t:tcp_socket name_connect;
24634 + allow $1 pxe_port_t:tcp_socket name_connect;
24635 ')
24636
24637
24638 ########################################
24639 ## <summary>
24640 -## Send pulseaudio_client packets.
24641 +## Send pxe_client packets.
24642 ## </summary>
24643 ## <param name="domain">
24644 ## <summary>
24645 @@ -67592,17 +70693,17 @@ interface(`corenet_tcp_connect_pulseaudio_port',`
24646 ## </param>
24647 ## <infoflow type="write" weight="10"/>
24648 #
24649 -interface(`corenet_send_pulseaudio_client_packets',`
24650 +interface(`corenet_send_pxe_client_packets',`
24651 gen_require(`
24652 - type pulseaudio_client_packet_t;
24653 + type pxe_client_packet_t;
24654 ')
24655
24656 - allow $1 pulseaudio_client_packet_t:packet send;
24657 + allow $1 pxe_client_packet_t:packet send;
24658 ')
24659
24660 ########################################
24661 ## <summary>
24662 -## Do not audit attempts to send pulseaudio_client packets.
24663 +## Do not audit attempts to send pxe_client packets.
24664 ## </summary>
24665 ## <param name="domain">
24666 ## <summary>
24667 @@ -67611,17 +70712,17 @@ interface(`corenet_send_pulseaudio_client_packets',`
24668 ## </param>
24669 ## <infoflow type="none"/>
24670 #
24671 -interface(`corenet_dontaudit_send_pulseaudio_client_packets',`
24672 +interface(`corenet_dontaudit_send_pxe_client_packets',`
24673 gen_require(`
24674 - type pulseaudio_client_packet_t;
24675 + type pxe_client_packet_t;
24676 ')
24677
24678 - dontaudit $1 pulseaudio_client_packet_t:packet send;
24679 + dontaudit $1 pxe_client_packet_t:packet send;
24680 ')
24681
24682 ########################################
24683 ## <summary>
24684 -## Receive pulseaudio_client packets.
24685 +## Receive pxe_client packets.
24686 ## </summary>
24687 ## <param name="domain">
24688 ## <summary>
24689 @@ -67630,17 +70731,17 @@ interface(`corenet_dontaudit_send_pulseaudio_client_packets',`
24690 ## </param>
24691 ## <infoflow type="read" weight="10"/>
24692 #
24693 -interface(`corenet_receive_pulseaudio_client_packets',`
24694 +interface(`corenet_receive_pxe_client_packets',`
24695 gen_require(`
24696 - type pulseaudio_client_packet_t;
24697 + type pxe_client_packet_t;
24698 ')
24699
24700 - allow $1 pulseaudio_client_packet_t:packet recv;
24701 + allow $1 pxe_client_packet_t:packet recv;
24702 ')
24703
24704 ########################################
24705 ## <summary>
24706 -## Do not audit attempts to receive pulseaudio_client packets.
24707 +## Do not audit attempts to receive pxe_client packets.
24708 ## </summary>
24709 ## <param name="domain">
24710 ## <summary>
24711 @@ -67649,17 +70750,17 @@ interface(`corenet_receive_pulseaudio_client_packets',`
24712 ## </param>
24713 ## <infoflow type="none"/>
24714 #
24715 -interface(`corenet_dontaudit_receive_pulseaudio_client_packets',`
24716 +interface(`corenet_dontaudit_receive_pxe_client_packets',`
24717 gen_require(`
24718 - type pulseaudio_client_packet_t;
24719 + type pxe_client_packet_t;
24720 ')
24721
24722 - dontaudit $1 pulseaudio_client_packet_t:packet recv;
24723 + dontaudit $1 pxe_client_packet_t:packet recv;
24724 ')
24725
24726 ########################################
24727 ## <summary>
24728 -## Send and receive pulseaudio_client packets.
24729 +## Send and receive pxe_client packets.
24730 ## </summary>
24731 ## <param name="domain">
24732 ## <summary>
24733 @@ -67668,14 +70769,14 @@ interface(`corenet_dontaudit_receive_pulseaudio_client_packets',`
24734 ## </param>
24735 ## <infoflow type="both" weight="10"/>
24736 #
24737 -interface(`corenet_sendrecv_pulseaudio_client_packets',`
24738 - corenet_send_pulseaudio_client_packets($1)
24739 - corenet_receive_pulseaudio_client_packets($1)
24740 +interface(`corenet_sendrecv_pxe_client_packets',`
24741 + corenet_send_pxe_client_packets($1)
24742 + corenet_receive_pxe_client_packets($1)
24743 ')
24744
24745 ########################################
24746 ## <summary>
24747 -## Do not audit attempts to send and receive pulseaudio_client packets.
24748 +## Do not audit attempts to send and receive pxe_client packets.
24749 ## </summary>
24750 ## <param name="domain">
24751 ## <summary>
24752 @@ -67684,14 +70785,14 @@ interface(`corenet_sendrecv_pulseaudio_client_packets',`
24753 ## </param>
24754 ## <infoflow type="none"/>
24755 #
24756 -interface(`corenet_dontaudit_sendrecv_pulseaudio_client_packets',`
24757 - corenet_dontaudit_send_pulseaudio_client_packets($1)
24758 - corenet_dontaudit_receive_pulseaudio_client_packets($1)
24759 +interface(`corenet_dontaudit_sendrecv_pxe_client_packets',`
24760 + corenet_dontaudit_send_pxe_client_packets($1)
24761 + corenet_dontaudit_receive_pxe_client_packets($1)
24762 ')
24763
24764 ########################################
24765 ## <summary>
24766 -## Relabel packets to pulseaudio_client the packet type.
24767 +## Relabel packets to pxe_client the packet type.
24768 ## </summary>
24769 ## <param name="domain">
24770 ## <summary>
24771 @@ -67699,18 +70800,18 @@ interface(`corenet_dontaudit_sendrecv_pulseaudio_client_packets',`
24772 ## </summary>
24773 ## </param>
24774 #
24775 -interface(`corenet_relabelto_pulseaudio_client_packets',`
24776 +interface(`corenet_relabelto_pxe_client_packets',`
24777 gen_require(`
24778 - type pulseaudio_client_packet_t;
24779 + type pxe_client_packet_t;
24780 ')
24781
24782 - allow $1 pulseaudio_client_packet_t:packet relabelto;
24783 + allow $1 pxe_client_packet_t:packet relabelto;
24784 ')
24785
24786
24787 ########################################
24788 ## <summary>
24789 -## Send pulseaudio_server packets.
24790 +## Send pxe_server packets.
24791 ## </summary>
24792 ## <param name="domain">
24793 ## <summary>
24794 @@ -67719,17 +70820,17 @@ interface(`corenet_relabelto_pulseaudio_client_packets',`
24795 ## </param>
24796 ## <infoflow type="write" weight="10"/>
24797 #
24798 -interface(`corenet_send_pulseaudio_server_packets',`
24799 +interface(`corenet_send_pxe_server_packets',`
24800 gen_require(`
24801 - type pulseaudio_server_packet_t;
24802 + type pxe_server_packet_t;
24803 ')
24804
24805 - allow $1 pulseaudio_server_packet_t:packet send;
24806 + allow $1 pxe_server_packet_t:packet send;
24807 ')
24808
24809 ########################################
24810 ## <summary>
24811 -## Do not audit attempts to send pulseaudio_server packets.
24812 +## Do not audit attempts to send pxe_server packets.
24813 ## </summary>
24814 ## <param name="domain">
24815 ## <summary>
24816 @@ -67738,17 +70839,17 @@ interface(`corenet_send_pulseaudio_server_packets',`
24817 ## </param>
24818 ## <infoflow type="none"/>
24819 #
24820 -interface(`corenet_dontaudit_send_pulseaudio_server_packets',`
24821 +interface(`corenet_dontaudit_send_pxe_server_packets',`
24822 gen_require(`
24823 - type pulseaudio_server_packet_t;
24824 + type pxe_server_packet_t;
24825 ')
24826
24827 - dontaudit $1 pulseaudio_server_packet_t:packet send;
24828 + dontaudit $1 pxe_server_packet_t:packet send;
24829 ')
24830
24831 ########################################
24832 ## <summary>
24833 -## Receive pulseaudio_server packets.
24834 +## Receive pxe_server packets.
24835 ## </summary>
24836 ## <param name="domain">
24837 ## <summary>
24838 @@ -67757,17 +70858,17 @@ interface(`corenet_dontaudit_send_pulseaudio_server_packets',`
24839 ## </param>
24840 ## <infoflow type="read" weight="10"/>
24841 #
24842 -interface(`corenet_receive_pulseaudio_server_packets',`
24843 +interface(`corenet_receive_pxe_server_packets',`
24844 gen_require(`
24845 - type pulseaudio_server_packet_t;
24846 + type pxe_server_packet_t;
24847 ')
24848
24849 - allow $1 pulseaudio_server_packet_t:packet recv;
24850 + allow $1 pxe_server_packet_t:packet recv;
24851 ')
24852
24853 ########################################
24854 ## <summary>
24855 -## Do not audit attempts to receive pulseaudio_server packets.
24856 +## Do not audit attempts to receive pxe_server packets.
24857 ## </summary>
24858 ## <param name="domain">
24859 ## <summary>
24860 @@ -67776,17 +70877,17 @@ interface(`corenet_receive_pulseaudio_server_packets',`
24861 ## </param>
24862 ## <infoflow type="none"/>
24863 #
24864 -interface(`corenet_dontaudit_receive_pulseaudio_server_packets',`
24865 +interface(`corenet_dontaudit_receive_pxe_server_packets',`
24866 gen_require(`
24867 - type pulseaudio_server_packet_t;
24868 + type pxe_server_packet_t;
24869 ')
24870
24871 - dontaudit $1 pulseaudio_server_packet_t:packet recv;
24872 + dontaudit $1 pxe_server_packet_t:packet recv;
24873 ')
24874
24875 ########################################
24876 ## <summary>
24877 -## Send and receive pulseaudio_server packets.
24878 +## Send and receive pxe_server packets.
24879 ## </summary>
24880 ## <param name="domain">
24881 ## <summary>
24882 @@ -67795,14 +70896,14 @@ interface(`corenet_dontaudit_receive_pulseaudio_server_packets',`
24883 ## </param>
24884 ## <infoflow type="both" weight="10"/>
24885 #
24886 -interface(`corenet_sendrecv_pulseaudio_server_packets',`
24887 - corenet_send_pulseaudio_server_packets($1)
24888 - corenet_receive_pulseaudio_server_packets($1)
24889 +interface(`corenet_sendrecv_pxe_server_packets',`
24890 + corenet_send_pxe_server_packets($1)
24891 + corenet_receive_pxe_server_packets($1)
24892 ')
24893
24894 ########################################
24895 ## <summary>
24896 -## Do not audit attempts to send and receive pulseaudio_server packets.
24897 +## Do not audit attempts to send and receive pxe_server packets.
24898 ## </summary>
24899 ## <param name="domain">
24900 ## <summary>
24901 @@ -67811,14 +70912,14 @@ interface(`corenet_sendrecv_pulseaudio_server_packets',`
24902 ## </param>
24903 ## <infoflow type="none"/>
24904 #
24905 -interface(`corenet_dontaudit_sendrecv_pulseaudio_server_packets',`
24906 - corenet_dontaudit_send_pulseaudio_server_packets($1)
24907 - corenet_dontaudit_receive_pulseaudio_server_packets($1)
24908 +interface(`corenet_dontaudit_sendrecv_pxe_server_packets',`
24909 + corenet_dontaudit_send_pxe_server_packets($1)
24910 + corenet_dontaudit_receive_pxe_server_packets($1)
24911 ')
24912
24913 ########################################
24914 ## <summary>
24915 -## Relabel packets to pulseaudio_server the packet type.
24916 +## Relabel packets to pxe_server the packet type.
24917 ## </summary>
24918 ## <param name="domain">
24919 ## <summary>
24920 @@ -67826,12 +70927,12 @@ interface(`corenet_dontaudit_sendrecv_pulseaudio_server_packets',`
24921 ## </summary>
24922 ## </param>
24923 #
24924 -interface(`corenet_relabelto_pulseaudio_server_packets',`
24925 +interface(`corenet_relabelto_pxe_server_packets',`
24926 gen_require(`
24927 - type pulseaudio_server_packet_t;
24928 + type pxe_server_packet_t;
24929 ')
24930
24931 - allow $1 pulseaudio_server_packet_t:packet relabelto;
24932 + allow $1 pxe_server_packet_t:packet relabelto;
24933 ')
24934
24935
24936 @@ -67839,7 +70940,7 @@ interface(`corenet_relabelto_pulseaudio_server_packets',`
24937
24938 ########################################
24939 ## <summary>
24940 -## Send and receive TCP traffic on the puppet port.
24941 +## Send and receive TCP traffic on the pyzor port.
24942 ## </summary>
24943 ## <param name="domain">
24944 ## <summary>
24945 @@ -67848,17 +70949,17 @@ interface(`corenet_relabelto_pulseaudio_server_packets',`
24946 ## </param>
24947 ## <infoflow type="both" weight="10"/>
24948 #
24949 -interface(`corenet_tcp_sendrecv_puppet_port',`
24950 +interface(`corenet_tcp_sendrecv_pyzor_port',`
24951 gen_require(`
24952 - type puppet_port_t;
24953 + type pyzor_port_t;
24954 ')
24955
24956 - allow $1 puppet_port_t:tcp_socket { send_msg recv_msg };
24957 + allow $1 pyzor_port_t:tcp_socket { send_msg recv_msg };
24958 ')
24959
24960 ########################################
24961 ## <summary>
24962 -## Send UDP traffic on the puppet port.
24963 +## Send UDP traffic on the pyzor port.
24964 ## </summary>
24965 ## <param name="domain">
24966 ## <summary>
24967 @@ -67867,17 +70968,17 @@ interface(`corenet_tcp_sendrecv_puppet_port',`
24968 ## </param>
24969 ## <infoflow type="write" weight="10"/>
24970 #
24971 -interface(`corenet_udp_send_puppet_port',`
24972 +interface(`corenet_udp_send_pyzor_port',`
24973 gen_require(`
24974 - type puppet_port_t;
24975 + type pyzor_port_t;
24976 ')
24977
24978 - allow $1 puppet_port_t:udp_socket send_msg;
24979 + allow $1 pyzor_port_t:udp_socket send_msg;
24980 ')
24981
24982 ########################################
24983 ## <summary>
24984 -## Do not audit attempts to send UDP traffic on the puppet port.
24985 +## Do not audit attempts to send UDP traffic on the pyzor port.
24986 ## </summary>
24987 ## <param name="domain">
24988 ## <summary>
24989 @@ -67886,17 +70987,17 @@ interface(`corenet_udp_send_puppet_port',`
24990 ## </param>
24991 ## <infoflow type="none"/>
24992 #
24993 -interface(`corenet_dontaudit_udp_send_puppet_port',`
24994 +interface(`corenet_dontaudit_udp_send_pyzor_port',`
24995 gen_require(`
24996 - type puppet_port_t;
24997 + type pyzor_port_t;
24998 ')
24999
25000 - dontaudit $1 puppet_port_t:udp_socket send_msg;
25001 + dontaudit $1 pyzor_port_t:udp_socket send_msg;
25002 ')
25003
25004 ########################################
25005 ## <summary>
25006 -## Receive UDP traffic on the puppet port.
25007 +## Receive UDP traffic on the pyzor port.
25008 ## </summary>
25009 ## <param name="domain">
25010 ## <summary>
25011 @@ -67905,17 +71006,17 @@ interface(`corenet_dontaudit_udp_send_puppet_port',`
25012 ## </param>
25013 ## <infoflow type="read" weight="10"/>
25014 #
25015 -interface(`corenet_udp_receive_puppet_port',`
25016 +interface(`corenet_udp_receive_pyzor_port',`
25017 gen_require(`
25018 - type puppet_port_t;
25019 + type pyzor_port_t;
25020 ')
25021
25022 - allow $1 puppet_port_t:udp_socket recv_msg;
25023 + allow $1 pyzor_port_t:udp_socket recv_msg;
25024 ')
25025
25026 ########################################
25027 ## <summary>
25028 -## Do not audit attempts to receive UDP traffic on the puppet port.
25029 +## Do not audit attempts to receive UDP traffic on the pyzor port.
25030 ## </summary>
25031 ## <param name="domain">
25032 ## <summary>
25033 @@ -67924,17 +71025,17 @@ interface(`corenet_udp_receive_puppet_port',`
25034 ## </param>
25035 ## <infoflow type="none"/>
25036 #
25037 -interface(`corenet_dontaudit_udp_receive_puppet_port',`
25038 +interface(`corenet_dontaudit_udp_receive_pyzor_port',`
25039 gen_require(`
25040 - type puppet_port_t;
25041 + type pyzor_port_t;
25042 ')
25043
25044 - dontaudit $1 puppet_port_t:udp_socket recv_msg;
25045 + dontaudit $1 pyzor_port_t:udp_socket recv_msg;
25046 ')
25047
25048 ########################################
25049 ## <summary>
25050 -## Send and receive UDP traffic on the puppet port.
25051 +## Send and receive UDP traffic on the pyzor port.
25052 ## </summary>
25053 ## <param name="domain">
25054 ## <summary>
25055 @@ -67943,15 +71044,15 @@ interface(`corenet_dontaudit_udp_receive_puppet_port',`
25056 ## </param>
25057 ## <infoflow type="both" weight="10"/>
25058 #
25059 -interface(`corenet_udp_sendrecv_puppet_port',`
25060 - corenet_udp_send_puppet_port($1)
25061 - corenet_udp_receive_puppet_port($1)
25062 +interface(`corenet_udp_sendrecv_pyzor_port',`
25063 + corenet_udp_send_pyzor_port($1)
25064 + corenet_udp_receive_pyzor_port($1)
25065 ')
25066
25067 ########################################
25068 ## <summary>
25069 ## Do not audit attempts to send and receive
25070 -## UDP traffic on the puppet port.
25071 +## UDP traffic on the pyzor port.
25072 ## </summary>
25073 ## <param name="domain">
25074 ## <summary>
25075 @@ -67960,14 +71061,14 @@ interface(`corenet_udp_sendrecv_puppet_port',`
25076 ## </param>
25077 ## <infoflow type="none"/>
25078 #
25079 -interface(`corenet_dontaudit_udp_sendrecv_puppet_port',`
25080 - corenet_dontaudit_udp_send_puppet_port($1)
25081 - corenet_dontaudit_udp_receive_puppet_port($1)
25082 +interface(`corenet_dontaudit_udp_sendrecv_pyzor_port',`
25083 + corenet_dontaudit_udp_send_pyzor_port($1)
25084 + corenet_dontaudit_udp_receive_pyzor_port($1)
25085 ')
25086
25087 ########################################
25088 ## <summary>
25089 -## Bind TCP sockets to the puppet port.
25090 +## Bind TCP sockets to the pyzor port.
25091 ## </summary>
25092 ## <param name="domain">
25093 ## <summary>
25094 @@ -67976,18 +71077,18 @@ interface(`corenet_dontaudit_udp_sendrecv_puppet_port',`
25095 ## </param>
25096 ## <infoflow type="none"/>
25097 #
25098 -interface(`corenet_tcp_bind_puppet_port',`
25099 +interface(`corenet_tcp_bind_pyzor_port',`
25100 gen_require(`
25101 - type puppet_port_t;
25102 + type pyzor_port_t;
25103 ')
25104
25105 - allow $1 puppet_port_t:tcp_socket name_bind;
25106 + allow $1 pyzor_port_t:tcp_socket name_bind;
25107
25108 ')
25109
25110 ########################################
25111 ## <summary>
25112 -## Bind UDP sockets to the puppet port.
25113 +## Bind UDP sockets to the pyzor port.
25114 ## </summary>
25115 ## <param name="domain">
25116 ## <summary>
25117 @@ -67996,18 +71097,18 @@ interface(`corenet_tcp_bind_puppet_port',`
25118 ## </param>
25119 ## <infoflow type="none"/>
25120 #
25121 -interface(`corenet_udp_bind_puppet_port',`
25122 +interface(`corenet_udp_bind_pyzor_port',`
25123 gen_require(`
25124 - type puppet_port_t;
25125 + type pyzor_port_t;
25126 ')
25127
25128 - allow $1 puppet_port_t:udp_socket name_bind;
25129 + allow $1 pyzor_port_t:udp_socket name_bind;
25130
25131 ')
25132
25133 ########################################
25134 ## <summary>
25135 -## Make a TCP connection to the puppet port.
25136 +## Make a TCP connection to the pyzor port.
25137 ## </summary>
25138 ## <param name="domain">
25139 ## <summary>
25140 @@ -68015,18 +71116,18 @@ interface(`corenet_udp_bind_puppet_port',`
25141 ## </summary>
25142 ## </param>
25143 #
25144 -interface(`corenet_tcp_connect_puppet_port',`
25145 +interface(`corenet_tcp_connect_pyzor_port',`
25146 gen_require(`
25147 - type puppet_port_t;
25148 + type pyzor_port_t;
25149 ')
25150
25151 - allow $1 puppet_port_t:tcp_socket name_connect;
25152 + allow $1 pyzor_port_t:tcp_socket name_connect;
25153 ')
25154
25155
25156 ########################################
25157 ## <summary>
25158 -## Send puppet_client packets.
25159 +## Send pyzor_client packets.
25160 ## </summary>
25161 ## <param name="domain">
25162 ## <summary>
25163 @@ -68035,17 +71136,17 @@ interface(`corenet_tcp_connect_puppet_port',`
25164 ## </param>
25165 ## <infoflow type="write" weight="10"/>
25166 #
25167 -interface(`corenet_send_puppet_client_packets',`
25168 +interface(`corenet_send_pyzor_client_packets',`
25169 gen_require(`
25170 - type puppet_client_packet_t;
25171 + type pyzor_client_packet_t;
25172 ')
25173
25174 - allow $1 puppet_client_packet_t:packet send;
25175 + allow $1 pyzor_client_packet_t:packet send;
25176 ')
25177
25178 ########################################
25179 ## <summary>
25180 -## Do not audit attempts to send puppet_client packets.
25181 +## Do not audit attempts to send pyzor_client packets.
25182 ## </summary>
25183 ## <param name="domain">
25184 ## <summary>
25185 @@ -68054,17 +71155,17 @@ interface(`corenet_send_puppet_client_packets',`
25186 ## </param>
25187 ## <infoflow type="none"/>
25188 #
25189 -interface(`corenet_dontaudit_send_puppet_client_packets',`
25190 +interface(`corenet_dontaudit_send_pyzor_client_packets',`
25191 gen_require(`
25192 - type puppet_client_packet_t;
25193 + type pyzor_client_packet_t;
25194 ')
25195
25196 - dontaudit $1 puppet_client_packet_t:packet send;
25197 + dontaudit $1 pyzor_client_packet_t:packet send;
25198 ')
25199
25200 ########################################
25201 ## <summary>
25202 -## Receive puppet_client packets.
25203 +## Receive pyzor_client packets.
25204 ## </summary>
25205 ## <param name="domain">
25206 ## <summary>
25207 @@ -68073,17 +71174,17 @@ interface(`corenet_dontaudit_send_puppet_client_packets',`
25208 ## </param>
25209 ## <infoflow type="read" weight="10"/>
25210 #
25211 -interface(`corenet_receive_puppet_client_packets',`
25212 +interface(`corenet_receive_pyzor_client_packets',`
25213 gen_require(`
25214 - type puppet_client_packet_t;
25215 + type pyzor_client_packet_t;
25216 ')
25217
25218 - allow $1 puppet_client_packet_t:packet recv;
25219 + allow $1 pyzor_client_packet_t:packet recv;
25220 ')
25221
25222 ########################################
25223 ## <summary>
25224 -## Do not audit attempts to receive puppet_client packets.
25225 +## Do not audit attempts to receive pyzor_client packets.
25226 ## </summary>
25227 ## <param name="domain">
25228 ## <summary>
25229 @@ -68092,17 +71193,17 @@ interface(`corenet_receive_puppet_client_packets',`
25230 ## </param>
25231 ## <infoflow type="none"/>
25232 #
25233 -interface(`corenet_dontaudit_receive_puppet_client_packets',`
25234 +interface(`corenet_dontaudit_receive_pyzor_client_packets',`
25235 gen_require(`
25236 - type puppet_client_packet_t;
25237 + type pyzor_client_packet_t;
25238 ')
25239
25240 - dontaudit $1 puppet_client_packet_t:packet recv;
25241 + dontaudit $1 pyzor_client_packet_t:packet recv;
25242 ')
25243
25244 ########################################
25245 ## <summary>
25246 -## Send and receive puppet_client packets.
25247 +## Send and receive pyzor_client packets.
25248 ## </summary>
25249 ## <param name="domain">
25250 ## <summary>
25251 @@ -68111,14 +71212,14 @@ interface(`corenet_dontaudit_receive_puppet_client_packets',`
25252 ## </param>
25253 ## <infoflow type="both" weight="10"/>
25254 #
25255 -interface(`corenet_sendrecv_puppet_client_packets',`
25256 - corenet_send_puppet_client_packets($1)
25257 - corenet_receive_puppet_client_packets($1)
25258 +interface(`corenet_sendrecv_pyzor_client_packets',`
25259 + corenet_send_pyzor_client_packets($1)
25260 + corenet_receive_pyzor_client_packets($1)
25261 ')
25262
25263 ########################################
25264 ## <summary>
25265 -## Do not audit attempts to send and receive puppet_client packets.
25266 +## Do not audit attempts to send and receive pyzor_client packets.
25267 ## </summary>
25268 ## <param name="domain">
25269 ## <summary>
25270 @@ -68127,14 +71228,14 @@ interface(`corenet_sendrecv_puppet_client_packets',`
25271 ## </param>
25272 ## <infoflow type="none"/>
25273 #
25274 -interface(`corenet_dontaudit_sendrecv_puppet_client_packets',`
25275 - corenet_dontaudit_send_puppet_client_packets($1)
25276 - corenet_dontaudit_receive_puppet_client_packets($1)
25277 +interface(`corenet_dontaudit_sendrecv_pyzor_client_packets',`
25278 + corenet_dontaudit_send_pyzor_client_packets($1)
25279 + corenet_dontaudit_receive_pyzor_client_packets($1)
25280 ')
25281
25282 ########################################
25283 ## <summary>
25284 -## Relabel packets to puppet_client the packet type.
25285 +## Relabel packets to pyzor_client the packet type.
25286 ## </summary>
25287 ## <param name="domain">
25288 ## <summary>
25289 @@ -68142,18 +71243,18 @@ interface(`corenet_dontaudit_sendrecv_puppet_client_packets',`
25290 ## </summary>
25291 ## </param>
25292 #
25293 -interface(`corenet_relabelto_puppet_client_packets',`
25294 +interface(`corenet_relabelto_pyzor_client_packets',`
25295 gen_require(`
25296 - type puppet_client_packet_t;
25297 + type pyzor_client_packet_t;
25298 ')
25299
25300 - allow $1 puppet_client_packet_t:packet relabelto;
25301 + allow $1 pyzor_client_packet_t:packet relabelto;
25302 ')
25303
25304
25305 ########################################
25306 ## <summary>
25307 -## Send puppet_server packets.
25308 +## Send pyzor_server packets.
25309 ## </summary>
25310 ## <param name="domain">
25311 ## <summary>
25312 @@ -68162,17 +71263,17 @@ interface(`corenet_relabelto_puppet_client_packets',`
25313 ## </param>
25314 ## <infoflow type="write" weight="10"/>
25315 #
25316 -interface(`corenet_send_puppet_server_packets',`
25317 +interface(`corenet_send_pyzor_server_packets',`
25318 gen_require(`
25319 - type puppet_server_packet_t;
25320 + type pyzor_server_packet_t;
25321 ')
25322
25323 - allow $1 puppet_server_packet_t:packet send;
25324 + allow $1 pyzor_server_packet_t:packet send;
25325 ')
25326
25327 ########################################
25328 ## <summary>
25329 -## Do not audit attempts to send puppet_server packets.
25330 +## Do not audit attempts to send pyzor_server packets.
25331 ## </summary>
25332 ## <param name="domain">
25333 ## <summary>
25334 @@ -68181,17 +71282,17 @@ interface(`corenet_send_puppet_server_packets',`
25335 ## </param>
25336 ## <infoflow type="none"/>
25337 #
25338 -interface(`corenet_dontaudit_send_puppet_server_packets',`
25339 +interface(`corenet_dontaudit_send_pyzor_server_packets',`
25340 gen_require(`
25341 - type puppet_server_packet_t;
25342 + type pyzor_server_packet_t;
25343 ')
25344
25345 - dontaudit $1 puppet_server_packet_t:packet send;
25346 + dontaudit $1 pyzor_server_packet_t:packet send;
25347 ')
25348
25349 ########################################
25350 ## <summary>
25351 -## Receive puppet_server packets.
25352 +## Receive pyzor_server packets.
25353 ## </summary>
25354 ## <param name="domain">
25355 ## <summary>
25356 @@ -68200,17 +71301,17 @@ interface(`corenet_dontaudit_send_puppet_server_packets',`
25357 ## </param>
25358 ## <infoflow type="read" weight="10"/>
25359 #
25360 -interface(`corenet_receive_puppet_server_packets',`
25361 +interface(`corenet_receive_pyzor_server_packets',`
25362 gen_require(`
25363 - type puppet_server_packet_t;
25364 + type pyzor_server_packet_t;
25365 ')
25366
25367 - allow $1 puppet_server_packet_t:packet recv;
25368 + allow $1 pyzor_server_packet_t:packet recv;
25369 ')
25370
25371 ########################################
25372 ## <summary>
25373 -## Do not audit attempts to receive puppet_server packets.
25374 +## Do not audit attempts to receive pyzor_server packets.
25375 ## </summary>
25376 ## <param name="domain">
25377 ## <summary>
25378 @@ -68219,17 +71320,17 @@ interface(`corenet_receive_puppet_server_packets',`
25379 ## </param>
25380 ## <infoflow type="none"/>
25381 #
25382 -interface(`corenet_dontaudit_receive_puppet_server_packets',`
25383 +interface(`corenet_dontaudit_receive_pyzor_server_packets',`
25384 gen_require(`
25385 - type puppet_server_packet_t;
25386 + type pyzor_server_packet_t;
25387 ')
25388
25389 - dontaudit $1 puppet_server_packet_t:packet recv;
25390 + dontaudit $1 pyzor_server_packet_t:packet recv;
25391 ')
25392
25393 ########################################
25394 ## <summary>
25395 -## Send and receive puppet_server packets.
25396 +## Send and receive pyzor_server packets.
25397 ## </summary>
25398 ## <param name="domain">
25399 ## <summary>
25400 @@ -68238,14 +71339,14 @@ interface(`corenet_dontaudit_receive_puppet_server_packets',`
25401 ## </param>
25402 ## <infoflow type="both" weight="10"/>
25403 #
25404 -interface(`corenet_sendrecv_puppet_server_packets',`
25405 - corenet_send_puppet_server_packets($1)
25406 - corenet_receive_puppet_server_packets($1)
25407 +interface(`corenet_sendrecv_pyzor_server_packets',`
25408 + corenet_send_pyzor_server_packets($1)
25409 + corenet_receive_pyzor_server_packets($1)
25410 ')
25411
25412 ########################################
25413 ## <summary>
25414 -## Do not audit attempts to send and receive puppet_server packets.
25415 +## Do not audit attempts to send and receive pyzor_server packets.
25416 ## </summary>
25417 ## <param name="domain">
25418 ## <summary>
25419 @@ -68254,14 +71355,14 @@ interface(`corenet_sendrecv_puppet_server_packets',`
25420 ## </param>
25421 ## <infoflow type="none"/>
25422 #
25423 -interface(`corenet_dontaudit_sendrecv_puppet_server_packets',`
25424 - corenet_dontaudit_send_puppet_server_packets($1)
25425 - corenet_dontaudit_receive_puppet_server_packets($1)
25426 +interface(`corenet_dontaudit_sendrecv_pyzor_server_packets',`
25427 + corenet_dontaudit_send_pyzor_server_packets($1)
25428 + corenet_dontaudit_receive_pyzor_server_packets($1)
25429 ')
25430
25431 ########################################
25432 ## <summary>
25433 -## Relabel packets to puppet_server the packet type.
25434 +## Relabel packets to pyzor_server the packet type.
25435 ## </summary>
25436 ## <param name="domain">
25437 ## <summary>
25438 @@ -68269,12 +71370,12 @@ interface(`corenet_dontaudit_sendrecv_puppet_server_packets',`
25439 ## </summary>
25440 ## </param>
25441 #
25442 -interface(`corenet_relabelto_puppet_server_packets',`
25443 +interface(`corenet_relabelto_pyzor_server_packets',`
25444 gen_require(`
25445 - type puppet_server_packet_t;
25446 + type pyzor_server_packet_t;
25447 ')
25448
25449 - allow $1 puppet_server_packet_t:packet relabelto;
25450 + allow $1 pyzor_server_packet_t:packet relabelto;
25451 ')
25452
25453
25454 @@ -68282,7 +71383,7 @@ interface(`corenet_relabelto_puppet_server_packets',`
25455
25456 ########################################
25457 ## <summary>
25458 -## Send and receive TCP traffic on the puppetclient port.
25459 +## Send and receive TCP traffic on the radacct port.
25460 ## </summary>
25461 ## <param name="domain">
25462 ## <summary>
25463 @@ -68291,17 +71392,17 @@ interface(`corenet_relabelto_puppet_server_packets',`
25464 ## </param>
25465 ## <infoflow type="both" weight="10"/>
25466 #
25467 -interface(`corenet_tcp_sendrecv_puppetclient_port',`
25468 +interface(`corenet_tcp_sendrecv_radacct_port',`
25469 gen_require(`
25470 - type puppetclient_port_t;
25471 + type radacct_port_t;
25472 ')
25473
25474 - allow $1 puppetclient_port_t:tcp_socket { send_msg recv_msg };
25475 + allow $1 radacct_port_t:tcp_socket { send_msg recv_msg };
25476 ')
25477
25478 ########################################
25479 ## <summary>
25480 -## Send UDP traffic on the puppetclient port.
25481 +## Send UDP traffic on the radacct port.
25482 ## </summary>
25483 ## <param name="domain">
25484 ## <summary>
25485 @@ -68310,17 +71411,17 @@ interface(`corenet_tcp_sendrecv_puppetclient_port',`
25486 ## </param>
25487 ## <infoflow type="write" weight="10"/>
25488 #
25489 -interface(`corenet_udp_send_puppetclient_port',`
25490 +interface(`corenet_udp_send_radacct_port',`
25491 gen_require(`
25492 - type puppetclient_port_t;
25493 + type radacct_port_t;
25494 ')
25495
25496 - allow $1 puppetclient_port_t:udp_socket send_msg;
25497 + allow $1 radacct_port_t:udp_socket send_msg;
25498 ')
25499
25500 ########################################
25501 ## <summary>
25502 -## Do not audit attempts to send UDP traffic on the puppetclient port.
25503 +## Do not audit attempts to send UDP traffic on the radacct port.
25504 ## </summary>
25505 ## <param name="domain">
25506 ## <summary>
25507 @@ -68329,17 +71430,17 @@ interface(`corenet_udp_send_puppetclient_port',`
25508 ## </param>
25509 ## <infoflow type="none"/>
25510 #
25511 -interface(`corenet_dontaudit_udp_send_puppetclient_port',`
25512 +interface(`corenet_dontaudit_udp_send_radacct_port',`
25513 gen_require(`
25514 - type puppetclient_port_t;
25515 + type radacct_port_t;
25516 ')
25517
25518 - dontaudit $1 puppetclient_port_t:udp_socket send_msg;
25519 + dontaudit $1 radacct_port_t:udp_socket send_msg;
25520 ')
25521
25522 ########################################
25523 ## <summary>
25524 -## Receive UDP traffic on the puppetclient port.
25525 +## Receive UDP traffic on the radacct port.
25526 ## </summary>
25527 ## <param name="domain">
25528 ## <summary>
25529 @@ -68348,17 +71449,17 @@ interface(`corenet_dontaudit_udp_send_puppetclient_port',`
25530 ## </param>
25531 ## <infoflow type="read" weight="10"/>
25532 #
25533 -interface(`corenet_udp_receive_puppetclient_port',`
25534 +interface(`corenet_udp_receive_radacct_port',`
25535 gen_require(`
25536 - type puppetclient_port_t;
25537 + type radacct_port_t;
25538 ')
25539
25540 - allow $1 puppetclient_port_t:udp_socket recv_msg;
25541 + allow $1 radacct_port_t:udp_socket recv_msg;
25542 ')
25543
25544 ########################################
25545 ## <summary>
25546 -## Do not audit attempts to receive UDP traffic on the puppetclient port.
25547 +## Do not audit attempts to receive UDP traffic on the radacct port.
25548 ## </summary>
25549 ## <param name="domain">
25550 ## <summary>
25551 @@ -68367,17 +71468,17 @@ interface(`corenet_udp_receive_puppetclient_port',`
25552 ## </param>
25553 ## <infoflow type="none"/>
25554 #
25555 -interface(`corenet_dontaudit_udp_receive_puppetclient_port',`
25556 +interface(`corenet_dontaudit_udp_receive_radacct_port',`
25557 gen_require(`
25558 - type puppetclient_port_t;
25559 + type radacct_port_t;
25560 ')
25561
25562 - dontaudit $1 puppetclient_port_t:udp_socket recv_msg;
25563 + dontaudit $1 radacct_port_t:udp_socket recv_msg;
25564 ')
25565
25566 ########################################
25567 ## <summary>
25568 -## Send and receive UDP traffic on the puppetclient port.
25569 +## Send and receive UDP traffic on the radacct port.
25570 ## </summary>
25571 ## <param name="domain">
25572 ## <summary>
25573 @@ -68386,15 +71487,15 @@ interface(`corenet_dontaudit_udp_receive_puppetclient_port',`
25574 ## </param>
25575 ## <infoflow type="both" weight="10"/>
25576 #
25577 -interface(`corenet_udp_sendrecv_puppetclient_port',`
25578 - corenet_udp_send_puppetclient_port($1)
25579 - corenet_udp_receive_puppetclient_port($1)
25580 +interface(`corenet_udp_sendrecv_radacct_port',`
25581 + corenet_udp_send_radacct_port($1)
25582 + corenet_udp_receive_radacct_port($1)
25583 ')
25584
25585 ########################################
25586 ## <summary>
25587 ## Do not audit attempts to send and receive
25588 -## UDP traffic on the puppetclient port.
25589 +## UDP traffic on the radacct port.
25590 ## </summary>
25591 ## <param name="domain">
25592 ## <summary>
25593 @@ -68403,14 +71504,14 @@ interface(`corenet_udp_sendrecv_puppetclient_port',`
25594 ## </param>
25595 ## <infoflow type="none"/>
25596 #
25597 -interface(`corenet_dontaudit_udp_sendrecv_puppetclient_port',`
25598 - corenet_dontaudit_udp_send_puppetclient_port($1)
25599 - corenet_dontaudit_udp_receive_puppetclient_port($1)
25600 +interface(`corenet_dontaudit_udp_sendrecv_radacct_port',`
25601 + corenet_dontaudit_udp_send_radacct_port($1)
25602 + corenet_dontaudit_udp_receive_radacct_port($1)
25603 ')
25604
25605 ########################################
25606 ## <summary>
25607 -## Bind TCP sockets to the puppetclient port.
25608 +## Bind TCP sockets to the radacct port.
25609 ## </summary>
25610 ## <param name="domain">
25611 ## <summary>
25612 @@ -68419,18 +71520,18 @@ interface(`corenet_dontaudit_udp_sendrecv_puppetclient_port',`
25613 ## </param>
25614 ## <infoflow type="none"/>
25615 #
25616 -interface(`corenet_tcp_bind_puppetclient_port',`
25617 +interface(`corenet_tcp_bind_radacct_port',`
25618 gen_require(`
25619 - type puppetclient_port_t;
25620 + type radacct_port_t;
25621 ')
25622
25623 - allow $1 puppetclient_port_t:tcp_socket name_bind;
25624 + allow $1 radacct_port_t:tcp_socket name_bind;
25625
25626 ')
25627
25628 ########################################
25629 ## <summary>
25630 -## Bind UDP sockets to the puppetclient port.
25631 +## Bind UDP sockets to the radacct port.
25632 ## </summary>
25633 ## <param name="domain">
25634 ## <summary>
25635 @@ -68439,18 +71540,18 @@ interface(`corenet_tcp_bind_puppetclient_port',`
25636 ## </param>
25637 ## <infoflow type="none"/>
25638 #
25639 -interface(`corenet_udp_bind_puppetclient_port',`
25640 +interface(`corenet_udp_bind_radacct_port',`
25641 gen_require(`
25642 - type puppetclient_port_t;
25643 + type radacct_port_t;
25644 ')
25645
25646 - allow $1 puppetclient_port_t:udp_socket name_bind;
25647 + allow $1 radacct_port_t:udp_socket name_bind;
25648
25649 ')
25650
25651 ########################################
25652 ## <summary>
25653 -## Make a TCP connection to the puppetclient port.
25654 +## Make a TCP connection to the radacct port.
25655 ## </summary>
25656 ## <param name="domain">
25657 ## <summary>
25658 @@ -68458,18 +71559,18 @@ interface(`corenet_udp_bind_puppetclient_port',`
25659 ## </summary>
25660 ## </param>
25661 #
25662 -interface(`corenet_tcp_connect_puppetclient_port',`
25663 +interface(`corenet_tcp_connect_radacct_port',`
25664 gen_require(`
25665 - type puppetclient_port_t;
25666 + type radacct_port_t;
25667 ')
25668
25669 - allow $1 puppetclient_port_t:tcp_socket name_connect;
25670 + allow $1 radacct_port_t:tcp_socket name_connect;
25671 ')
25672
25673
25674 ########################################
25675 ## <summary>
25676 -## Send puppetclient_client packets.
25677 +## Send radacct_client packets.
25678 ## </summary>
25679 ## <param name="domain">
25680 ## <summary>
25681 @@ -68478,17 +71579,17 @@ interface(`corenet_tcp_connect_puppetclient_port',`
25682 ## </param>
25683 ## <infoflow type="write" weight="10"/>
25684 #
25685 -interface(`corenet_send_puppetclient_client_packets',`
25686 +interface(`corenet_send_radacct_client_packets',`
25687 gen_require(`
25688 - type puppetclient_client_packet_t;
25689 + type radacct_client_packet_t;
25690 ')
25691
25692 - allow $1 puppetclient_client_packet_t:packet send;
25693 + allow $1 radacct_client_packet_t:packet send;
25694 ')
25695
25696 ########################################
25697 ## <summary>
25698 -## Do not audit attempts to send puppetclient_client packets.
25699 +## Do not audit attempts to send radacct_client packets.
25700 ## </summary>
25701 ## <param name="domain">
25702 ## <summary>
25703 @@ -68497,17 +71598,17 @@ interface(`corenet_send_puppetclient_client_packets',`
25704 ## </param>
25705 ## <infoflow type="none"/>
25706 #
25707 -interface(`corenet_dontaudit_send_puppetclient_client_packets',`
25708 +interface(`corenet_dontaudit_send_radacct_client_packets',`
25709 gen_require(`
25710 - type puppetclient_client_packet_t;
25711 + type radacct_client_packet_t;
25712 ')
25713
25714 - dontaudit $1 puppetclient_client_packet_t:packet send;
25715 + dontaudit $1 radacct_client_packet_t:packet send;
25716 ')
25717
25718 ########################################
25719 ## <summary>
25720 -## Receive puppetclient_client packets.
25721 +## Receive radacct_client packets.
25722 ## </summary>
25723 ## <param name="domain">
25724 ## <summary>
25725 @@ -68516,17 +71617,17 @@ interface(`corenet_dontaudit_send_puppetclient_client_packets',`
25726 ## </param>
25727 ## <infoflow type="read" weight="10"/>
25728 #
25729 -interface(`corenet_receive_puppetclient_client_packets',`
25730 +interface(`corenet_receive_radacct_client_packets',`
25731 gen_require(`
25732 - type puppetclient_client_packet_t;
25733 + type radacct_client_packet_t;
25734 ')
25735
25736 - allow $1 puppetclient_client_packet_t:packet recv;
25737 + allow $1 radacct_client_packet_t:packet recv;
25738 ')
25739
25740 ########################################
25741 ## <summary>
25742 -## Do not audit attempts to receive puppetclient_client packets.
25743 +## Do not audit attempts to receive radacct_client packets.
25744 ## </summary>
25745 ## <param name="domain">
25746 ## <summary>
25747 @@ -68535,17 +71636,17 @@ interface(`corenet_receive_puppetclient_client_packets',`
25748 ## </param>
25749 ## <infoflow type="none"/>
25750 #
25751 -interface(`corenet_dontaudit_receive_puppetclient_client_packets',`
25752 +interface(`corenet_dontaudit_receive_radacct_client_packets',`
25753 gen_require(`
25754 - type puppetclient_client_packet_t;
25755 + type radacct_client_packet_t;
25756 ')
25757
25758 - dontaudit $1 puppetclient_client_packet_t:packet recv;
25759 + dontaudit $1 radacct_client_packet_t:packet recv;
25760 ')
25761
25762 ########################################
25763 ## <summary>
25764 -## Send and receive puppetclient_client packets.
25765 +## Send and receive radacct_client packets.
25766 ## </summary>
25767 ## <param name="domain">
25768 ## <summary>
25769 @@ -68554,14 +71655,14 @@ interface(`corenet_dontaudit_receive_puppetclient_client_packets',`
25770 ## </param>
25771 ## <infoflow type="both" weight="10"/>
25772 #
25773 -interface(`corenet_sendrecv_puppetclient_client_packets',`
25774 - corenet_send_puppetclient_client_packets($1)
25775 - corenet_receive_puppetclient_client_packets($1)
25776 +interface(`corenet_sendrecv_radacct_client_packets',`
25777 + corenet_send_radacct_client_packets($1)
25778 + corenet_receive_radacct_client_packets($1)
25779 ')
25780
25781 ########################################
25782 ## <summary>
25783 -## Do not audit attempts to send and receive puppetclient_client packets.
25784 +## Do not audit attempts to send and receive radacct_client packets.
25785 ## </summary>
25786 ## <param name="domain">
25787 ## <summary>
25788 @@ -68570,14 +71671,14 @@ interface(`corenet_sendrecv_puppetclient_client_packets',`
25789 ## </param>
25790 ## <infoflow type="none"/>
25791 #
25792 -interface(`corenet_dontaudit_sendrecv_puppetclient_client_packets',`
25793 - corenet_dontaudit_send_puppetclient_client_packets($1)
25794 - corenet_dontaudit_receive_puppetclient_client_packets($1)
25795 +interface(`corenet_dontaudit_sendrecv_radacct_client_packets',`
25796 + corenet_dontaudit_send_radacct_client_packets($1)
25797 + corenet_dontaudit_receive_radacct_client_packets($1)
25798 ')
25799
25800 ########################################
25801 ## <summary>
25802 -## Relabel packets to puppetclient_client the packet type.
25803 +## Relabel packets to radacct_client the packet type.
25804 ## </summary>
25805 ## <param name="domain">
25806 ## <summary>
25807 @@ -68585,18 +71686,18 @@ interface(`corenet_dontaudit_sendrecv_puppetclient_client_packets',`
25808 ## </summary>
25809 ## </param>
25810 #
25811 -interface(`corenet_relabelto_puppetclient_client_packets',`
25812 +interface(`corenet_relabelto_radacct_client_packets',`
25813 gen_require(`
25814 - type puppetclient_client_packet_t;
25815 + type radacct_client_packet_t;
25816 ')
25817
25818 - allow $1 puppetclient_client_packet_t:packet relabelto;
25819 + allow $1 radacct_client_packet_t:packet relabelto;
25820 ')
25821
25822
25823 ########################################
25824 ## <summary>
25825 -## Send puppetclient_server packets.
25826 +## Send radacct_server packets.
25827 ## </summary>
25828 ## <param name="domain">
25829 ## <summary>
25830 @@ -68605,17 +71706,17 @@ interface(`corenet_relabelto_puppetclient_client_packets',`
25831 ## </param>
25832 ## <infoflow type="write" weight="10"/>
25833 #
25834 -interface(`corenet_send_puppetclient_server_packets',`
25835 +interface(`corenet_send_radacct_server_packets',`
25836 gen_require(`
25837 - type puppetclient_server_packet_t;
25838 + type radacct_server_packet_t;
25839 ')
25840
25841 - allow $1 puppetclient_server_packet_t:packet send;
25842 + allow $1 radacct_server_packet_t:packet send;
25843 ')
25844
25845 ########################################
25846 ## <summary>
25847 -## Do not audit attempts to send puppetclient_server packets.
25848 +## Do not audit attempts to send radacct_server packets.
25849 ## </summary>
25850 ## <param name="domain">
25851 ## <summary>
25852 @@ -68624,17 +71725,17 @@ interface(`corenet_send_puppetclient_server_packets',`
25853 ## </param>
25854 ## <infoflow type="none"/>
25855 #
25856 -interface(`corenet_dontaudit_send_puppetclient_server_packets',`
25857 +interface(`corenet_dontaudit_send_radacct_server_packets',`
25858 gen_require(`
25859 - type puppetclient_server_packet_t;
25860 + type radacct_server_packet_t;
25861 ')
25862
25863 - dontaudit $1 puppetclient_server_packet_t:packet send;
25864 + dontaudit $1 radacct_server_packet_t:packet send;
25865 ')
25866
25867 ########################################
25868 ## <summary>
25869 -## Receive puppetclient_server packets.
25870 +## Receive radacct_server packets.
25871 ## </summary>
25872 ## <param name="domain">
25873 ## <summary>
25874 @@ -68643,17 +71744,17 @@ interface(`corenet_dontaudit_send_puppetclient_server_packets',`
25875 ## </param>
25876 ## <infoflow type="read" weight="10"/>
25877 #
25878 -interface(`corenet_receive_puppetclient_server_packets',`
25879 +interface(`corenet_receive_radacct_server_packets',`
25880 gen_require(`
25881 - type puppetclient_server_packet_t;
25882 + type radacct_server_packet_t;
25883 ')
25884
25885 - allow $1 puppetclient_server_packet_t:packet recv;
25886 + allow $1 radacct_server_packet_t:packet recv;
25887 ')
25888
25889 ########################################
25890 ## <summary>
25891 -## Do not audit attempts to receive puppetclient_server packets.
25892 +## Do not audit attempts to receive radacct_server packets.
25893 ## </summary>
25894 ## <param name="domain">
25895 ## <summary>
25896 @@ -68662,17 +71763,17 @@ interface(`corenet_receive_puppetclient_server_packets',`
25897 ## </param>
25898 ## <infoflow type="none"/>
25899 #
25900 -interface(`corenet_dontaudit_receive_puppetclient_server_packets',`
25901 +interface(`corenet_dontaudit_receive_radacct_server_packets',`
25902 gen_require(`
25903 - type puppetclient_server_packet_t;
25904 + type radacct_server_packet_t;
25905 ')
25906
25907 - dontaudit $1 puppetclient_server_packet_t:packet recv;
25908 + dontaudit $1 radacct_server_packet_t:packet recv;
25909 ')
25910
25911 ########################################
25912 ## <summary>
25913 -## Send and receive puppetclient_server packets.
25914 +## Send and receive radacct_server packets.
25915 ## </summary>
25916 ## <param name="domain">
25917 ## <summary>
25918 @@ -68681,14 +71782,14 @@ interface(`corenet_dontaudit_receive_puppetclient_server_packets',`
25919 ## </param>
25920 ## <infoflow type="both" weight="10"/>
25921 #
25922 -interface(`corenet_sendrecv_puppetclient_server_packets',`
25923 - corenet_send_puppetclient_server_packets($1)
25924 - corenet_receive_puppetclient_server_packets($1)
25925 +interface(`corenet_sendrecv_radacct_server_packets',`
25926 + corenet_send_radacct_server_packets($1)
25927 + corenet_receive_radacct_server_packets($1)
25928 ')
25929
25930 ########################################
25931 ## <summary>
25932 -## Do not audit attempts to send and receive puppetclient_server packets.
25933 +## Do not audit attempts to send and receive radacct_server packets.
25934 ## </summary>
25935 ## <param name="domain">
25936 ## <summary>
25937 @@ -68697,14 +71798,14 @@ interface(`corenet_sendrecv_puppetclient_server_packets',`
25938 ## </param>
25939 ## <infoflow type="none"/>
25940 #
25941 -interface(`corenet_dontaudit_sendrecv_puppetclient_server_packets',`
25942 - corenet_dontaudit_send_puppetclient_server_packets($1)
25943 - corenet_dontaudit_receive_puppetclient_server_packets($1)
25944 +interface(`corenet_dontaudit_sendrecv_radacct_server_packets',`
25945 + corenet_dontaudit_send_radacct_server_packets($1)
25946 + corenet_dontaudit_receive_radacct_server_packets($1)
25947 ')
25948
25949 ########################################
25950 ## <summary>
25951 -## Relabel packets to puppetclient_server the packet type.
25952 +## Relabel packets to radacct_server the packet type.
25953 ## </summary>
25954 ## <param name="domain">
25955 ## <summary>
25956 @@ -68712,12 +71813,12 @@ interface(`corenet_dontaudit_sendrecv_puppetclient_server_packets',`
25957 ## </summary>
25958 ## </param>
25959 #
25960 -interface(`corenet_relabelto_puppetclient_server_packets',`
25961 +interface(`corenet_relabelto_radacct_server_packets',`
25962 gen_require(`
25963 - type puppetclient_server_packet_t;
25964 + type radacct_server_packet_t;
25965 ')
25966
25967 - allow $1 puppetclient_server_packet_t:packet relabelto;
25968 + allow $1 radacct_server_packet_t:packet relabelto;
25969 ')
25970
25971
25972 @@ -68725,7 +71826,7 @@ interface(`corenet_relabelto_puppetclient_server_packets',`
25973
25974 ########################################
25975 ## <summary>
25976 -## Send and receive TCP traffic on the pxe port.
25977 +## Send and receive TCP traffic on the radius port.
25978 ## </summary>
25979 ## <param name="domain">
25980 ## <summary>
25981 @@ -68734,17 +71835,17 @@ interface(`corenet_relabelto_puppetclient_server_packets',`
25982 ## </param>
25983 ## <infoflow type="both" weight="10"/>
25984 #
25985 -interface(`corenet_tcp_sendrecv_pxe_port',`
25986 +interface(`corenet_tcp_sendrecv_radius_port',`
25987 gen_require(`
25988 - type pxe_port_t;
25989 + type radius_port_t;
25990 ')
25991
25992 - allow $1 pxe_port_t:tcp_socket { send_msg recv_msg };
25993 + allow $1 radius_port_t:tcp_socket { send_msg recv_msg };
25994 ')
25995
25996 ########################################
25997 ## <summary>
25998 -## Send UDP traffic on the pxe port.
25999 +## Send UDP traffic on the radius port.
26000 ## </summary>
26001 ## <param name="domain">
26002 ## <summary>
26003 @@ -68753,17 +71854,17 @@ interface(`corenet_tcp_sendrecv_pxe_port',`
26004 ## </param>
26005 ## <infoflow type="write" weight="10"/>
26006 #
26007 -interface(`corenet_udp_send_pxe_port',`
26008 +interface(`corenet_udp_send_radius_port',`
26009 gen_require(`
26010 - type pxe_port_t;
26011 + type radius_port_t;
26012 ')
26013
26014 - allow $1 pxe_port_t:udp_socket send_msg;
26015 + allow $1 radius_port_t:udp_socket send_msg;
26016 ')
26017
26018 ########################################
26019 ## <summary>
26020 -## Do not audit attempts to send UDP traffic on the pxe port.
26021 +## Do not audit attempts to send UDP traffic on the radius port.
26022 ## </summary>
26023 ## <param name="domain">
26024 ## <summary>
26025 @@ -68772,17 +71873,17 @@ interface(`corenet_udp_send_pxe_port',`
26026 ## </param>
26027 ## <infoflow type="none"/>
26028 #
26029 -interface(`corenet_dontaudit_udp_send_pxe_port',`
26030 +interface(`corenet_dontaudit_udp_send_radius_port',`
26031 gen_require(`
26032 - type pxe_port_t;
26033 + type radius_port_t;
26034 ')
26035
26036 - dontaudit $1 pxe_port_t:udp_socket send_msg;
26037 + dontaudit $1 radius_port_t:udp_socket send_msg;
26038 ')
26039
26040 ########################################
26041 ## <summary>
26042 -## Receive UDP traffic on the pxe port.
26043 +## Receive UDP traffic on the radius port.
26044 ## </summary>
26045 ## <param name="domain">
26046 ## <summary>
26047 @@ -68791,17 +71892,17 @@ interface(`corenet_dontaudit_udp_send_pxe_port',`
26048 ## </param>
26049 ## <infoflow type="read" weight="10"/>
26050 #
26051 -interface(`corenet_udp_receive_pxe_port',`
26052 +interface(`corenet_udp_receive_radius_port',`
26053 gen_require(`
26054 - type pxe_port_t;
26055 + type radius_port_t;
26056 ')
26057
26058 - allow $1 pxe_port_t:udp_socket recv_msg;
26059 + allow $1 radius_port_t:udp_socket recv_msg;
26060 ')
26061
26062 ########################################
26063 ## <summary>
26064 -## Do not audit attempts to receive UDP traffic on the pxe port.
26065 +## Do not audit attempts to receive UDP traffic on the radius port.
26066 ## </summary>
26067 ## <param name="domain">
26068 ## <summary>
26069 @@ -68810,17 +71911,17 @@ interface(`corenet_udp_receive_pxe_port',`
26070 ## </param>
26071 ## <infoflow type="none"/>
26072 #
26073 -interface(`corenet_dontaudit_udp_receive_pxe_port',`
26074 +interface(`corenet_dontaudit_udp_receive_radius_port',`
26075 gen_require(`
26076 - type pxe_port_t;
26077 + type radius_port_t;
26078 ')
26079
26080 - dontaudit $1 pxe_port_t:udp_socket recv_msg;
26081 + dontaudit $1 radius_port_t:udp_socket recv_msg;
26082 ')
26083
26084 ########################################
26085 ## <summary>
26086 -## Send and receive UDP traffic on the pxe port.
26087 +## Send and receive UDP traffic on the radius port.
26088 ## </summary>
26089 ## <param name="domain">
26090 ## <summary>
26091 @@ -68829,15 +71930,15 @@ interface(`corenet_dontaudit_udp_receive_pxe_port',`
26092 ## </param>
26093 ## <infoflow type="both" weight="10"/>
26094 #
26095 -interface(`corenet_udp_sendrecv_pxe_port',`
26096 - corenet_udp_send_pxe_port($1)
26097 - corenet_udp_receive_pxe_port($1)
26098 +interface(`corenet_udp_sendrecv_radius_port',`
26099 + corenet_udp_send_radius_port($1)
26100 + corenet_udp_receive_radius_port($1)
26101 ')
26102
26103 ########################################
26104 ## <summary>
26105 ## Do not audit attempts to send and receive
26106 -## UDP traffic on the pxe port.
26107 +## UDP traffic on the radius port.
26108 ## </summary>
26109 ## <param name="domain">
26110 ## <summary>
26111 @@ -68846,14 +71947,14 @@ interface(`corenet_udp_sendrecv_pxe_port',`
26112 ## </param>
26113 ## <infoflow type="none"/>
26114 #
26115 -interface(`corenet_dontaudit_udp_sendrecv_pxe_port',`
26116 - corenet_dontaudit_udp_send_pxe_port($1)
26117 - corenet_dontaudit_udp_receive_pxe_port($1)
26118 +interface(`corenet_dontaudit_udp_sendrecv_radius_port',`
26119 + corenet_dontaudit_udp_send_radius_port($1)
26120 + corenet_dontaudit_udp_receive_radius_port($1)
26121 ')
26122
26123 ########################################
26124 ## <summary>
26125 -## Bind TCP sockets to the pxe port.
26126 +## Bind TCP sockets to the radius port.
26127 ## </summary>
26128 ## <param name="domain">
26129 ## <summary>
26130 @@ -68862,18 +71963,18 @@ interface(`corenet_dontaudit_udp_sendrecv_pxe_port',`
26131 ## </param>
26132 ## <infoflow type="none"/>
26133 #
26134 -interface(`corenet_tcp_bind_pxe_port',`
26135 +interface(`corenet_tcp_bind_radius_port',`
26136 gen_require(`
26137 - type pxe_port_t;
26138 + type radius_port_t;
26139 ')
26140
26141 - allow $1 pxe_port_t:tcp_socket name_bind;
26142 + allow $1 radius_port_t:tcp_socket name_bind;
26143
26144 ')
26145
26146 ########################################
26147 ## <summary>
26148 -## Bind UDP sockets to the pxe port.
26149 +## Bind UDP sockets to the radius port.
26150 ## </summary>
26151 ## <param name="domain">
26152 ## <summary>
26153 @@ -68882,18 +71983,18 @@ interface(`corenet_tcp_bind_pxe_port',`
26154 ## </param>
26155 ## <infoflow type="none"/>
26156 #
26157 -interface(`corenet_udp_bind_pxe_port',`
26158 +interface(`corenet_udp_bind_radius_port',`
26159 gen_require(`
26160 - type pxe_port_t;
26161 + type radius_port_t;
26162 ')
26163
26164 - allow $1 pxe_port_t:udp_socket name_bind;
26165 + allow $1 radius_port_t:udp_socket name_bind;
26166
26167 ')
26168
26169 ########################################
26170 ## <summary>
26171 -## Make a TCP connection to the pxe port.
26172 +## Make a TCP connection to the radius port.
26173 ## </summary>
26174 ## <param name="domain">
26175 ## <summary>
26176 @@ -68901,18 +72002,18 @@ interface(`corenet_udp_bind_pxe_port',`
26177 ## </summary>
26178 ## </param>
26179 #
26180 -interface(`corenet_tcp_connect_pxe_port',`
26181 +interface(`corenet_tcp_connect_radius_port',`
26182 gen_require(`
26183 - type pxe_port_t;
26184 + type radius_port_t;
26185 ')
26186
26187 - allow $1 pxe_port_t:tcp_socket name_connect;
26188 + allow $1 radius_port_t:tcp_socket name_connect;
26189 ')
26190
26191
26192 ########################################
26193 ## <summary>
26194 -## Send pxe_client packets.
26195 +## Send radius_client packets.
26196 ## </summary>
26197 ## <param name="domain">
26198 ## <summary>
26199 @@ -68921,17 +72022,17 @@ interface(`corenet_tcp_connect_pxe_port',`
26200 ## </param>
26201 ## <infoflow type="write" weight="10"/>
26202 #
26203 -interface(`corenet_send_pxe_client_packets',`
26204 +interface(`corenet_send_radius_client_packets',`
26205 gen_require(`
26206 - type pxe_client_packet_t;
26207 + type radius_client_packet_t;
26208 ')
26209
26210 - allow $1 pxe_client_packet_t:packet send;
26211 + allow $1 radius_client_packet_t:packet send;
26212 ')
26213
26214 ########################################
26215 ## <summary>
26216 -## Do not audit attempts to send pxe_client packets.
26217 +## Do not audit attempts to send radius_client packets.
26218 ## </summary>
26219 ## <param name="domain">
26220 ## <summary>
26221 @@ -68940,17 +72041,17 @@ interface(`corenet_send_pxe_client_packets',`
26222 ## </param>
26223 ## <infoflow type="none"/>
26224 #
26225 -interface(`corenet_dontaudit_send_pxe_client_packets',`
26226 +interface(`corenet_dontaudit_send_radius_client_packets',`
26227 gen_require(`
26228 - type pxe_client_packet_t;
26229 + type radius_client_packet_t;
26230 ')
26231
26232 - dontaudit $1 pxe_client_packet_t:packet send;
26233 + dontaudit $1 radius_client_packet_t:packet send;
26234 ')
26235
26236 ########################################
26237 ## <summary>
26238 -## Receive pxe_client packets.
26239 +## Receive radius_client packets.
26240 ## </summary>
26241 ## <param name="domain">
26242 ## <summary>
26243 @@ -68959,17 +72060,17 @@ interface(`corenet_dontaudit_send_pxe_client_packets',`
26244 ## </param>
26245 ## <infoflow type="read" weight="10"/>
26246 #
26247 -interface(`corenet_receive_pxe_client_packets',`
26248 +interface(`corenet_receive_radius_client_packets',`
26249 gen_require(`
26250 - type pxe_client_packet_t;
26251 + type radius_client_packet_t;
26252 ')
26253
26254 - allow $1 pxe_client_packet_t:packet recv;
26255 + allow $1 radius_client_packet_t:packet recv;
26256 ')
26257
26258 ########################################
26259 ## <summary>
26260 -## Do not audit attempts to receive pxe_client packets.
26261 +## Do not audit attempts to receive radius_client packets.
26262 ## </summary>
26263 ## <param name="domain">
26264 ## <summary>
26265 @@ -68978,17 +72079,17 @@ interface(`corenet_receive_pxe_client_packets',`
26266 ## </param>
26267 ## <infoflow type="none"/>
26268 #
26269 -interface(`corenet_dontaudit_receive_pxe_client_packets',`
26270 +interface(`corenet_dontaudit_receive_radius_client_packets',`
26271 gen_require(`
26272 - type pxe_client_packet_t;
26273 + type radius_client_packet_t;
26274 ')
26275
26276 - dontaudit $1 pxe_client_packet_t:packet recv;
26277 + dontaudit $1 radius_client_packet_t:packet recv;
26278 ')
26279
26280 ########################################
26281 ## <summary>
26282 -## Send and receive pxe_client packets.
26283 +## Send and receive radius_client packets.
26284 ## </summary>
26285 ## <param name="domain">
26286 ## <summary>
26287 @@ -68997,14 +72098,14 @@ interface(`corenet_dontaudit_receive_pxe_client_packets',`
26288 ## </param>
26289 ## <infoflow type="both" weight="10"/>
26290 #
26291 -interface(`corenet_sendrecv_pxe_client_packets',`
26292 - corenet_send_pxe_client_packets($1)
26293 - corenet_receive_pxe_client_packets($1)
26294 +interface(`corenet_sendrecv_radius_client_packets',`
26295 + corenet_send_radius_client_packets($1)
26296 + corenet_receive_radius_client_packets($1)
26297 ')
26298
26299 ########################################
26300 ## <summary>
26301 -## Do not audit attempts to send and receive pxe_client packets.
26302 +## Do not audit attempts to send and receive radius_client packets.
26303 ## </summary>
26304 ## <param name="domain">
26305 ## <summary>
26306 @@ -69013,14 +72114,14 @@ interface(`corenet_sendrecv_pxe_client_packets',`
26307 ## </param>
26308 ## <infoflow type="none"/>
26309 #
26310 -interface(`corenet_dontaudit_sendrecv_pxe_client_packets',`
26311 - corenet_dontaudit_send_pxe_client_packets($1)
26312 - corenet_dontaudit_receive_pxe_client_packets($1)
26313 +interface(`corenet_dontaudit_sendrecv_radius_client_packets',`
26314 + corenet_dontaudit_send_radius_client_packets($1)
26315 + corenet_dontaudit_receive_radius_client_packets($1)
26316 ')
26317
26318 ########################################
26319 ## <summary>
26320 -## Relabel packets to pxe_client the packet type.
26321 +## Relabel packets to radius_client the packet type.
26322 ## </summary>
26323 ## <param name="domain">
26324 ## <summary>
26325 @@ -69028,18 +72129,18 @@ interface(`corenet_dontaudit_sendrecv_pxe_client_packets',`
26326 ## </summary>
26327 ## </param>
26328 #
26329 -interface(`corenet_relabelto_pxe_client_packets',`
26330 +interface(`corenet_relabelto_radius_client_packets',`
26331 gen_require(`
26332 - type pxe_client_packet_t;
26333 + type radius_client_packet_t;
26334 ')
26335
26336 - allow $1 pxe_client_packet_t:packet relabelto;
26337 + allow $1 radius_client_packet_t:packet relabelto;
26338 ')
26339
26340
26341 ########################################
26342 ## <summary>
26343 -## Send pxe_server packets.
26344 +## Send radius_server packets.
26345 ## </summary>
26346 ## <param name="domain">
26347 ## <summary>
26348 @@ -69048,17 +72149,17 @@ interface(`corenet_relabelto_pxe_client_packets',`
26349 ## </param>
26350 ## <infoflow type="write" weight="10"/>
26351 #
26352 -interface(`corenet_send_pxe_server_packets',`
26353 +interface(`corenet_send_radius_server_packets',`
26354 gen_require(`
26355 - type pxe_server_packet_t;
26356 + type radius_server_packet_t;
26357 ')
26358
26359 - allow $1 pxe_server_packet_t:packet send;
26360 + allow $1 radius_server_packet_t:packet send;
26361 ')
26362
26363 ########################################
26364 ## <summary>
26365 -## Do not audit attempts to send pxe_server packets.
26366 +## Do not audit attempts to send radius_server packets.
26367 ## </summary>
26368 ## <param name="domain">
26369 ## <summary>
26370 @@ -69067,17 +72168,17 @@ interface(`corenet_send_pxe_server_packets',`
26371 ## </param>
26372 ## <infoflow type="none"/>
26373 #
26374 -interface(`corenet_dontaudit_send_pxe_server_packets',`
26375 +interface(`corenet_dontaudit_send_radius_server_packets',`
26376 gen_require(`
26377 - type pxe_server_packet_t;
26378 + type radius_server_packet_t;
26379 ')
26380
26381 - dontaudit $1 pxe_server_packet_t:packet send;
26382 + dontaudit $1 radius_server_packet_t:packet send;
26383 ')
26384
26385 ########################################
26386 ## <summary>
26387 -## Receive pxe_server packets.
26388 +## Receive radius_server packets.
26389 ## </summary>
26390 ## <param name="domain">
26391 ## <summary>
26392 @@ -69086,17 +72187,17 @@ interface(`corenet_dontaudit_send_pxe_server_packets',`
26393 ## </param>
26394 ## <infoflow type="read" weight="10"/>
26395 #
26396 -interface(`corenet_receive_pxe_server_packets',`
26397 +interface(`corenet_receive_radius_server_packets',`
26398 gen_require(`
26399 - type pxe_server_packet_t;
26400 + type radius_server_packet_t;
26401 ')
26402
26403 - allow $1 pxe_server_packet_t:packet recv;
26404 + allow $1 radius_server_packet_t:packet recv;
26405 ')
26406
26407 ########################################
26408 ## <summary>
26409 -## Do not audit attempts to receive pxe_server packets.
26410 +## Do not audit attempts to receive radius_server packets.
26411 ## </summary>
26412 ## <param name="domain">
26413 ## <summary>
26414 @@ -69105,17 +72206,17 @@ interface(`corenet_receive_pxe_server_packets',`
26415 ## </param>
26416 ## <infoflow type="none"/>
26417 #
26418 -interface(`corenet_dontaudit_receive_pxe_server_packets',`
26419 +interface(`corenet_dontaudit_receive_radius_server_packets',`
26420 gen_require(`
26421 - type pxe_server_packet_t;
26422 + type radius_server_packet_t;
26423 ')
26424
26425 - dontaudit $1 pxe_server_packet_t:packet recv;
26426 + dontaudit $1 radius_server_packet_t:packet recv;
26427 ')
26428
26429 ########################################
26430 ## <summary>
26431 -## Send and receive pxe_server packets.
26432 +## Send and receive radius_server packets.
26433 ## </summary>
26434 ## <param name="domain">
26435 ## <summary>
26436 @@ -69124,14 +72225,14 @@ interface(`corenet_dontaudit_receive_pxe_server_packets',`
26437 ## </param>
26438 ## <infoflow type="both" weight="10"/>
26439 #
26440 -interface(`corenet_sendrecv_pxe_server_packets',`
26441 - corenet_send_pxe_server_packets($1)
26442 - corenet_receive_pxe_server_packets($1)
26443 +interface(`corenet_sendrecv_radius_server_packets',`
26444 + corenet_send_radius_server_packets($1)
26445 + corenet_receive_radius_server_packets($1)
26446 ')
26447
26448 ########################################
26449 ## <summary>
26450 -## Do not audit attempts to send and receive pxe_server packets.
26451 +## Do not audit attempts to send and receive radius_server packets.
26452 ## </summary>
26453 ## <param name="domain">
26454 ## <summary>
26455 @@ -69140,14 +72241,14 @@ interface(`corenet_sendrecv_pxe_server_packets',`
26456 ## </param>
26457 ## <infoflow type="none"/>
26458 #
26459 -interface(`corenet_dontaudit_sendrecv_pxe_server_packets',`
26460 - corenet_dontaudit_send_pxe_server_packets($1)
26461 - corenet_dontaudit_receive_pxe_server_packets($1)
26462 +interface(`corenet_dontaudit_sendrecv_radius_server_packets',`
26463 + corenet_dontaudit_send_radius_server_packets($1)
26464 + corenet_dontaudit_receive_radius_server_packets($1)
26465 ')
26466
26467 ########################################
26468 ## <summary>
26469 -## Relabel packets to pxe_server the packet type.
26470 +## Relabel packets to radius_server the packet type.
26471 ## </summary>
26472 ## <param name="domain">
26473 ## <summary>
26474 @@ -69155,12 +72256,12 @@ interface(`corenet_dontaudit_sendrecv_pxe_server_packets',`
26475 ## </summary>
26476 ## </param>
26477 #
26478 -interface(`corenet_relabelto_pxe_server_packets',`
26479 +interface(`corenet_relabelto_radius_server_packets',`
26480 gen_require(`
26481 - type pxe_server_packet_t;
26482 + type radius_server_packet_t;
26483 ')
26484
26485 - allow $1 pxe_server_packet_t:packet relabelto;
26486 + allow $1 radius_server_packet_t:packet relabelto;
26487 ')
26488
26489
26490 @@ -69168,7 +72269,7 @@ interface(`corenet_relabelto_pxe_server_packets',`
26491
26492 ########################################
26493 ## <summary>
26494 -## Send and receive TCP traffic on the pyzor port.
26495 +## Send and receive TCP traffic on the radsec port.
26496 ## </summary>
26497 ## <param name="domain">
26498 ## <summary>
26499 @@ -69177,17 +72278,17 @@ interface(`corenet_relabelto_pxe_server_packets',`
26500 ## </param>
26501 ## <infoflow type="both" weight="10"/>
26502 #
26503 -interface(`corenet_tcp_sendrecv_pyzor_port',`
26504 +interface(`corenet_tcp_sendrecv_radsec_port',`
26505 gen_require(`
26506 - type pyzor_port_t;
26507 + type radsec_port_t;
26508 ')
26509
26510 - allow $1 pyzor_port_t:tcp_socket { send_msg recv_msg };
26511 + allow $1 radsec_port_t:tcp_socket { send_msg recv_msg };
26512 ')
26513
26514 ########################################
26515 ## <summary>
26516 -## Send UDP traffic on the pyzor port.
26517 +## Send UDP traffic on the radsec port.
26518 ## </summary>
26519 ## <param name="domain">
26520 ## <summary>
26521 @@ -69196,17 +72297,17 @@ interface(`corenet_tcp_sendrecv_pyzor_port',`
26522 ## </param>
26523 ## <infoflow type="write" weight="10"/>
26524 #
26525 -interface(`corenet_udp_send_pyzor_port',`
26526 +interface(`corenet_udp_send_radsec_port',`
26527 gen_require(`
26528 - type pyzor_port_t;
26529 + type radsec_port_t;
26530 ')
26531
26532 - allow $1 pyzor_port_t:udp_socket send_msg;
26533 + allow $1 radsec_port_t:udp_socket send_msg;
26534 ')
26535
26536 ########################################
26537 ## <summary>
26538 -## Do not audit attempts to send UDP traffic on the pyzor port.
26539 +## Do not audit attempts to send UDP traffic on the radsec port.
26540 ## </summary>
26541 ## <param name="domain">
26542 ## <summary>
26543 @@ -69215,17 +72316,17 @@ interface(`corenet_udp_send_pyzor_port',`
26544 ## </param>
26545 ## <infoflow type="none"/>
26546 #
26547 -interface(`corenet_dontaudit_udp_send_pyzor_port',`
26548 +interface(`corenet_dontaudit_udp_send_radsec_port',`
26549 gen_require(`
26550 - type pyzor_port_t;
26551 + type radsec_port_t;
26552 ')
26553
26554 - dontaudit $1 pyzor_port_t:udp_socket send_msg;
26555 + dontaudit $1 radsec_port_t:udp_socket send_msg;
26556 ')
26557
26558 ########################################
26559 ## <summary>
26560 -## Receive UDP traffic on the pyzor port.
26561 +## Receive UDP traffic on the radsec port.
26562 ## </summary>
26563 ## <param name="domain">
26564 ## <summary>
26565 @@ -69234,17 +72335,17 @@ interface(`corenet_dontaudit_udp_send_pyzor_port',`
26566 ## </param>
26567 ## <infoflow type="read" weight="10"/>
26568 #
26569 -interface(`corenet_udp_receive_pyzor_port',`
26570 +interface(`corenet_udp_receive_radsec_port',`
26571 gen_require(`
26572 - type pyzor_port_t;
26573 + type radsec_port_t;
26574 ')
26575
26576 - allow $1 pyzor_port_t:udp_socket recv_msg;
26577 + allow $1 radsec_port_t:udp_socket recv_msg;
26578 ')
26579
26580 ########################################
26581 ## <summary>
26582 -## Do not audit attempts to receive UDP traffic on the pyzor port.
26583 +## Do not audit attempts to receive UDP traffic on the radsec port.
26584 ## </summary>
26585 ## <param name="domain">
26586 ## <summary>
26587 @@ -69253,17 +72354,17 @@ interface(`corenet_udp_receive_pyzor_port',`
26588 ## </param>
26589 ## <infoflow type="none"/>
26590 #
26591 -interface(`corenet_dontaudit_udp_receive_pyzor_port',`
26592 +interface(`corenet_dontaudit_udp_receive_radsec_port',`
26593 gen_require(`
26594 - type pyzor_port_t;
26595 + type radsec_port_t;
26596 ')
26597
26598 - dontaudit $1 pyzor_port_t:udp_socket recv_msg;
26599 + dontaudit $1 radsec_port_t:udp_socket recv_msg;
26600 ')
26601
26602 ########################################
26603 ## <summary>
26604 -## Send and receive UDP traffic on the pyzor port.
26605 +## Send and receive UDP traffic on the radsec port.
26606 ## </summary>
26607 ## <param name="domain">
26608 ## <summary>
26609 @@ -69272,15 +72373,15 @@ interface(`corenet_dontaudit_udp_receive_pyzor_port',`
26610 ## </param>
26611 ## <infoflow type="both" weight="10"/>
26612 #
26613 -interface(`corenet_udp_sendrecv_pyzor_port',`
26614 - corenet_udp_send_pyzor_port($1)
26615 - corenet_udp_receive_pyzor_port($1)
26616 +interface(`corenet_udp_sendrecv_radsec_port',`
26617 + corenet_udp_send_radsec_port($1)
26618 + corenet_udp_receive_radsec_port($1)
26619 ')
26620
26621 ########################################
26622 ## <summary>
26623 ## Do not audit attempts to send and receive
26624 -## UDP traffic on the pyzor port.
26625 +## UDP traffic on the radsec port.
26626 ## </summary>
26627 ## <param name="domain">
26628 ## <summary>
26629 @@ -69289,14 +72390,14 @@ interface(`corenet_udp_sendrecv_pyzor_port',`
26630 ## </param>
26631 ## <infoflow type="none"/>
26632 #
26633 -interface(`corenet_dontaudit_udp_sendrecv_pyzor_port',`
26634 - corenet_dontaudit_udp_send_pyzor_port($1)
26635 - corenet_dontaudit_udp_receive_pyzor_port($1)
26636 +interface(`corenet_dontaudit_udp_sendrecv_radsec_port',`
26637 + corenet_dontaudit_udp_send_radsec_port($1)
26638 + corenet_dontaudit_udp_receive_radsec_port($1)
26639 ')
26640
26641 ########################################
26642 ## <summary>
26643 -## Bind TCP sockets to the pyzor port.
26644 +## Bind TCP sockets to the radsec port.
26645 ## </summary>
26646 ## <param name="domain">
26647 ## <summary>
26648 @@ -69305,18 +72406,18 @@ interface(`corenet_dontaudit_udp_sendrecv_pyzor_port',`
26649 ## </param>
26650 ## <infoflow type="none"/>
26651 #
26652 -interface(`corenet_tcp_bind_pyzor_port',`
26653 +interface(`corenet_tcp_bind_radsec_port',`
26654 gen_require(`
26655 - type pyzor_port_t;
26656 + type radsec_port_t;
26657 ')
26658
26659 - allow $1 pyzor_port_t:tcp_socket name_bind;
26660 + allow $1 radsec_port_t:tcp_socket name_bind;
26661
26662 ')
26663
26664 ########################################
26665 ## <summary>
26666 -## Bind UDP sockets to the pyzor port.
26667 +## Bind UDP sockets to the radsec port.
26668 ## </summary>
26669 ## <param name="domain">
26670 ## <summary>
26671 @@ -69325,18 +72426,18 @@ interface(`corenet_tcp_bind_pyzor_port',`
26672 ## </param>
26673 ## <infoflow type="none"/>
26674 #
26675 -interface(`corenet_udp_bind_pyzor_port',`
26676 +interface(`corenet_udp_bind_radsec_port',`
26677 gen_require(`
26678 - type pyzor_port_t;
26679 + type radsec_port_t;
26680 ')
26681
26682 - allow $1 pyzor_port_t:udp_socket name_bind;
26683 + allow $1 radsec_port_t:udp_socket name_bind;
26684
26685 ')
26686
26687 ########################################
26688 ## <summary>
26689 -## Make a TCP connection to the pyzor port.
26690 +## Make a TCP connection to the radsec port.
26691 ## </summary>
26692 ## <param name="domain">
26693 ## <summary>
26694 @@ -69344,18 +72445,18 @@ interface(`corenet_udp_bind_pyzor_port',`
26695 ## </summary>
26696 ## </param>
26697 #
26698 -interface(`corenet_tcp_connect_pyzor_port',`
26699 +interface(`corenet_tcp_connect_radsec_port',`
26700 gen_require(`
26701 - type pyzor_port_t;
26702 + type radsec_port_t;
26703 ')
26704
26705 - allow $1 pyzor_port_t:tcp_socket name_connect;
26706 + allow $1 radsec_port_t:tcp_socket name_connect;
26707 ')
26708
26709
26710 ########################################
26711 ## <summary>
26712 -## Send pyzor_client packets.
26713 +## Send radsec_client packets.
26714 ## </summary>
26715 ## <param name="domain">
26716 ## <summary>
26717 @@ -69364,17 +72465,17 @@ interface(`corenet_tcp_connect_pyzor_port',`
26718 ## </param>
26719 ## <infoflow type="write" weight="10"/>
26720 #
26721 -interface(`corenet_send_pyzor_client_packets',`
26722 +interface(`corenet_send_radsec_client_packets',`
26723 gen_require(`
26724 - type pyzor_client_packet_t;
26725 + type radsec_client_packet_t;
26726 ')
26727
26728 - allow $1 pyzor_client_packet_t:packet send;
26729 + allow $1 radsec_client_packet_t:packet send;
26730 ')
26731
26732 ########################################
26733 ## <summary>
26734 -## Do not audit attempts to send pyzor_client packets.
26735 +## Do not audit attempts to send radsec_client packets.
26736 ## </summary>
26737 ## <param name="domain">
26738 ## <summary>
26739 @@ -69383,17 +72484,17 @@ interface(`corenet_send_pyzor_client_packets',`
26740 ## </param>
26741 ## <infoflow type="none"/>
26742 #
26743 -interface(`corenet_dontaudit_send_pyzor_client_packets',`
26744 +interface(`corenet_dontaudit_send_radsec_client_packets',`
26745 gen_require(`
26746 - type pyzor_client_packet_t;
26747 + type radsec_client_packet_t;
26748 ')
26749
26750 - dontaudit $1 pyzor_client_packet_t:packet send;
26751 + dontaudit $1 radsec_client_packet_t:packet send;
26752 ')
26753
26754 ########################################
26755 ## <summary>
26756 -## Receive pyzor_client packets.
26757 +## Receive radsec_client packets.
26758 ## </summary>
26759 ## <param name="domain">
26760 ## <summary>
26761 @@ -69402,17 +72503,17 @@ interface(`corenet_dontaudit_send_pyzor_client_packets',`
26762 ## </param>
26763 ## <infoflow type="read" weight="10"/>
26764 #
26765 -interface(`corenet_receive_pyzor_client_packets',`
26766 +interface(`corenet_receive_radsec_client_packets',`
26767 gen_require(`
26768 - type pyzor_client_packet_t;
26769 + type radsec_client_packet_t;
26770 ')
26771
26772 - allow $1 pyzor_client_packet_t:packet recv;
26773 + allow $1 radsec_client_packet_t:packet recv;
26774 ')
26775
26776 ########################################
26777 ## <summary>
26778 -## Do not audit attempts to receive pyzor_client packets.
26779 +## Do not audit attempts to receive radsec_client packets.
26780 ## </summary>
26781 ## <param name="domain">
26782 ## <summary>
26783 @@ -69421,17 +72522,17 @@ interface(`corenet_receive_pyzor_client_packets',`
26784 ## </param>
26785 ## <infoflow type="none"/>
26786 #
26787 -interface(`corenet_dontaudit_receive_pyzor_client_packets',`
26788 +interface(`corenet_dontaudit_receive_radsec_client_packets',`
26789 gen_require(`
26790 - type pyzor_client_packet_t;
26791 + type radsec_client_packet_t;
26792 ')
26793
26794 - dontaudit $1 pyzor_client_packet_t:packet recv;
26795 + dontaudit $1 radsec_client_packet_t:packet recv;
26796 ')
26797
26798 ########################################
26799 ## <summary>
26800 -## Send and receive pyzor_client packets.
26801 +## Send and receive radsec_client packets.
26802 ## </summary>
26803 ## <param name="domain">
26804 ## <summary>
26805 @@ -69440,14 +72541,14 @@ interface(`corenet_dontaudit_receive_pyzor_client_packets',`
26806 ## </param>
26807 ## <infoflow type="both" weight="10"/>
26808 #
26809 -interface(`corenet_sendrecv_pyzor_client_packets',`
26810 - corenet_send_pyzor_client_packets($1)
26811 - corenet_receive_pyzor_client_packets($1)
26812 +interface(`corenet_sendrecv_radsec_client_packets',`
26813 + corenet_send_radsec_client_packets($1)
26814 + corenet_receive_radsec_client_packets($1)
26815 ')
26816
26817 ########################################
26818 ## <summary>
26819 -## Do not audit attempts to send and receive pyzor_client packets.
26820 +## Do not audit attempts to send and receive radsec_client packets.
26821 ## </summary>
26822 ## <param name="domain">
26823 ## <summary>
26824 @@ -69456,14 +72557,14 @@ interface(`corenet_sendrecv_pyzor_client_packets',`
26825 ## </param>
26826 ## <infoflow type="none"/>
26827 #
26828 -interface(`corenet_dontaudit_sendrecv_pyzor_client_packets',`
26829 - corenet_dontaudit_send_pyzor_client_packets($1)
26830 - corenet_dontaudit_receive_pyzor_client_packets($1)
26831 +interface(`corenet_dontaudit_sendrecv_radsec_client_packets',`
26832 + corenet_dontaudit_send_radsec_client_packets($1)
26833 + corenet_dontaudit_receive_radsec_client_packets($1)
26834 ')
26835
26836 ########################################
26837 ## <summary>
26838 -## Relabel packets to pyzor_client the packet type.
26839 +## Relabel packets to radsec_client the packet type.
26840 ## </summary>
26841 ## <param name="domain">
26842 ## <summary>
26843 @@ -69471,18 +72572,18 @@ interface(`corenet_dontaudit_sendrecv_pyzor_client_packets',`
26844 ## </summary>
26845 ## </param>
26846 #
26847 -interface(`corenet_relabelto_pyzor_client_packets',`
26848 +interface(`corenet_relabelto_radsec_client_packets',`
26849 gen_require(`
26850 - type pyzor_client_packet_t;
26851 + type radsec_client_packet_t;
26852 ')
26853
26854 - allow $1 pyzor_client_packet_t:packet relabelto;
26855 + allow $1 radsec_client_packet_t:packet relabelto;
26856 ')
26857
26858
26859 ########################################
26860 ## <summary>
26861 -## Send pyzor_server packets.
26862 +## Send radsec_server packets.
26863 ## </summary>
26864 ## <param name="domain">
26865 ## <summary>
26866 @@ -69491,17 +72592,17 @@ interface(`corenet_relabelto_pyzor_client_packets',`
26867 ## </param>
26868 ## <infoflow type="write" weight="10"/>
26869 #
26870 -interface(`corenet_send_pyzor_server_packets',`
26871 +interface(`corenet_send_radsec_server_packets',`
26872 gen_require(`
26873 - type pyzor_server_packet_t;
26874 + type radsec_server_packet_t;
26875 ')
26876
26877 - allow $1 pyzor_server_packet_t:packet send;
26878 + allow $1 radsec_server_packet_t:packet send;
26879 ')
26880
26881 ########################################
26882 ## <summary>
26883 -## Do not audit attempts to send pyzor_server packets.
26884 +## Do not audit attempts to send radsec_server packets.
26885 ## </summary>
26886 ## <param name="domain">
26887 ## <summary>
26888 @@ -69510,17 +72611,17 @@ interface(`corenet_send_pyzor_server_packets',`
26889 ## </param>
26890 ## <infoflow type="none"/>
26891 #
26892 -interface(`corenet_dontaudit_send_pyzor_server_packets',`
26893 +interface(`corenet_dontaudit_send_radsec_server_packets',`
26894 gen_require(`
26895 - type pyzor_server_packet_t;
26896 + type radsec_server_packet_t;
26897 ')
26898
26899 - dontaudit $1 pyzor_server_packet_t:packet send;
26900 + dontaudit $1 radsec_server_packet_t:packet send;
26901 ')
26902
26903 ########################################
26904 ## <summary>
26905 -## Receive pyzor_server packets.
26906 +## Receive radsec_server packets.
26907 ## </summary>
26908 ## <param name="domain">
26909 ## <summary>
26910 @@ -69529,17 +72630,17 @@ interface(`corenet_dontaudit_send_pyzor_server_packets',`
26911 ## </param>
26912 ## <infoflow type="read" weight="10"/>
26913 #
26914 -interface(`corenet_receive_pyzor_server_packets',`
26915 +interface(`corenet_receive_radsec_server_packets',`
26916 gen_require(`
26917 - type pyzor_server_packet_t;
26918 + type radsec_server_packet_t;
26919 ')
26920
26921 - allow $1 pyzor_server_packet_t:packet recv;
26922 + allow $1 radsec_server_packet_t:packet recv;
26923 ')
26924
26925 ########################################
26926 ## <summary>
26927 -## Do not audit attempts to receive pyzor_server packets.
26928 +## Do not audit attempts to receive radsec_server packets.
26929 ## </summary>
26930 ## <param name="domain">
26931 ## <summary>
26932 @@ -69548,17 +72649,17 @@ interface(`corenet_receive_pyzor_server_packets',`
26933 ## </param>
26934 ## <infoflow type="none"/>
26935 #
26936 -interface(`corenet_dontaudit_receive_pyzor_server_packets',`
26937 +interface(`corenet_dontaudit_receive_radsec_server_packets',`
26938 gen_require(`
26939 - type pyzor_server_packet_t;
26940 + type radsec_server_packet_t;
26941 ')
26942
26943 - dontaudit $1 pyzor_server_packet_t:packet recv;
26944 + dontaudit $1 radsec_server_packet_t:packet recv;
26945 ')
26946
26947 ########################################
26948 ## <summary>
26949 -## Send and receive pyzor_server packets.
26950 +## Send and receive radsec_server packets.
26951 ## </summary>
26952 ## <param name="domain">
26953 ## <summary>
26954 @@ -69567,14 +72668,14 @@ interface(`corenet_dontaudit_receive_pyzor_server_packets',`
26955 ## </param>
26956 ## <infoflow type="both" weight="10"/>
26957 #
26958 -interface(`corenet_sendrecv_pyzor_server_packets',`
26959 - corenet_send_pyzor_server_packets($1)
26960 - corenet_receive_pyzor_server_packets($1)
26961 +interface(`corenet_sendrecv_radsec_server_packets',`
26962 + corenet_send_radsec_server_packets($1)
26963 + corenet_receive_radsec_server_packets($1)
26964 ')
26965
26966 ########################################
26967 ## <summary>
26968 -## Do not audit attempts to send and receive pyzor_server packets.
26969 +## Do not audit attempts to send and receive radsec_server packets.
26970 ## </summary>
26971 ## <param name="domain">
26972 ## <summary>
26973 @@ -69583,14 +72684,14 @@ interface(`corenet_sendrecv_pyzor_server_packets',`
26974 ## </param>
26975 ## <infoflow type="none"/>
26976 #
26977 -interface(`corenet_dontaudit_sendrecv_pyzor_server_packets',`
26978 - corenet_dontaudit_send_pyzor_server_packets($1)
26979 - corenet_dontaudit_receive_pyzor_server_packets($1)
26980 +interface(`corenet_dontaudit_sendrecv_radsec_server_packets',`
26981 + corenet_dontaudit_send_radsec_server_packets($1)
26982 + corenet_dontaudit_receive_radsec_server_packets($1)
26983 ')
26984
26985 ########################################
26986 ## <summary>
26987 -## Relabel packets to pyzor_server the packet type.
26988 +## Relabel packets to radsec_server the packet type.
26989 ## </summary>
26990 ## <param name="domain">
26991 ## <summary>
26992 @@ -69598,12 +72699,12 @@ interface(`corenet_dontaudit_sendrecv_pyzor_server_packets',`
26993 ## </summary>
26994 ## </param>
26995 #
26996 -interface(`corenet_relabelto_pyzor_server_packets',`
26997 +interface(`corenet_relabelto_radsec_server_packets',`
26998 gen_require(`
26999 - type pyzor_server_packet_t;
27000 + type radsec_server_packet_t;
27001 ')
27002
27003 - allow $1 pyzor_server_packet_t:packet relabelto;
27004 + allow $1 radsec_server_packet_t:packet relabelto;
27005 ')
27006
27007
27008 @@ -69611,7 +72712,7 @@ interface(`corenet_relabelto_pyzor_server_packets',`
27009
27010 ########################################
27011 ## <summary>
27012 -## Send and receive TCP traffic on the radacct port.
27013 +## Send and receive TCP traffic on the razor port.
27014 ## </summary>
27015 ## <param name="domain">
27016 ## <summary>
27017 @@ -69620,17 +72721,17 @@ interface(`corenet_relabelto_pyzor_server_packets',`
27018 ## </param>
27019 ## <infoflow type="both" weight="10"/>
27020 #
27021 -interface(`corenet_tcp_sendrecv_radacct_port',`
27022 +interface(`corenet_tcp_sendrecv_razor_port',`
27023 gen_require(`
27024 - type radacct_port_t;
27025 + type razor_port_t;
27026 ')
27027
27028 - allow $1 radacct_port_t:tcp_socket { send_msg recv_msg };
27029 + allow $1 razor_port_t:tcp_socket { send_msg recv_msg };
27030 ')
27031
27032 ########################################
27033 ## <summary>
27034 -## Send UDP traffic on the radacct port.
27035 +## Send UDP traffic on the razor port.
27036 ## </summary>
27037 ## <param name="domain">
27038 ## <summary>
27039 @@ -69639,17 +72740,17 @@ interface(`corenet_tcp_sendrecv_radacct_port',`
27040 ## </param>
27041 ## <infoflow type="write" weight="10"/>
27042 #
27043 -interface(`corenet_udp_send_radacct_port',`
27044 +interface(`corenet_udp_send_razor_port',`
27045 gen_require(`
27046 - type radacct_port_t;
27047 + type razor_port_t;
27048 ')
27049
27050 - allow $1 radacct_port_t:udp_socket send_msg;
27051 + allow $1 razor_port_t:udp_socket send_msg;
27052 ')
27053
27054 ########################################
27055 ## <summary>
27056 -## Do not audit attempts to send UDP traffic on the radacct port.
27057 +## Do not audit attempts to send UDP traffic on the razor port.
27058 ## </summary>
27059 ## <param name="domain">
27060 ## <summary>
27061 @@ -69658,17 +72759,17 @@ interface(`corenet_udp_send_radacct_port',`
27062 ## </param>
27063 ## <infoflow type="none"/>
27064 #
27065 -interface(`corenet_dontaudit_udp_send_radacct_port',`
27066 +interface(`corenet_dontaudit_udp_send_razor_port',`
27067 gen_require(`
27068 - type radacct_port_t;
27069 + type razor_port_t;
27070 ')
27071
27072 - dontaudit $1 radacct_port_t:udp_socket send_msg;
27073 + dontaudit $1 razor_port_t:udp_socket send_msg;
27074 ')
27075
27076 ########################################
27077 ## <summary>
27078 -## Receive UDP traffic on the radacct port.
27079 +## Receive UDP traffic on the razor port.
27080 ## </summary>
27081 ## <param name="domain">
27082 ## <summary>
27083 @@ -69677,17 +72778,17 @@ interface(`corenet_dontaudit_udp_send_radacct_port',`
27084 ## </param>
27085 ## <infoflow type="read" weight="10"/>
27086 #
27087 -interface(`corenet_udp_receive_radacct_port',`
27088 +interface(`corenet_udp_receive_razor_port',`
27089 gen_require(`
27090 - type radacct_port_t;
27091 + type razor_port_t;
27092 ')
27093
27094 - allow $1 radacct_port_t:udp_socket recv_msg;
27095 + allow $1 razor_port_t:udp_socket recv_msg;
27096 ')
27097
27098 ########################################
27099 ## <summary>
27100 -## Do not audit attempts to receive UDP traffic on the radacct port.
27101 +## Do not audit attempts to receive UDP traffic on the razor port.
27102 ## </summary>
27103 ## <param name="domain">
27104 ## <summary>
27105 @@ -69696,17 +72797,17 @@ interface(`corenet_udp_receive_radacct_port',`
27106 ## </param>
27107 ## <infoflow type="none"/>
27108 #
27109 -interface(`corenet_dontaudit_udp_receive_radacct_port',`
27110 +interface(`corenet_dontaudit_udp_receive_razor_port',`
27111 gen_require(`
27112 - type radacct_port_t;
27113 + type razor_port_t;
27114 ')
27115
27116 - dontaudit $1 radacct_port_t:udp_socket recv_msg;
27117 + dontaudit $1 razor_port_t:udp_socket recv_msg;
27118 ')
27119
27120 ########################################
27121 ## <summary>
27122 -## Send and receive UDP traffic on the radacct port.
27123 +## Send and receive UDP traffic on the razor port.
27124 ## </summary>
27125 ## <param name="domain">
27126 ## <summary>
27127 @@ -69715,15 +72816,15 @@ interface(`corenet_dontaudit_udp_receive_radacct_port',`
27128 ## </param>
27129 ## <infoflow type="both" weight="10"/>
27130 #
27131 -interface(`corenet_udp_sendrecv_radacct_port',`
27132 - corenet_udp_send_radacct_port($1)
27133 - corenet_udp_receive_radacct_port($1)
27134 +interface(`corenet_udp_sendrecv_razor_port',`
27135 + corenet_udp_send_razor_port($1)
27136 + corenet_udp_receive_razor_port($1)
27137 ')
27138
27139 ########################################
27140 ## <summary>
27141 ## Do not audit attempts to send and receive
27142 -## UDP traffic on the radacct port.
27143 +## UDP traffic on the razor port.
27144 ## </summary>
27145 ## <param name="domain">
27146 ## <summary>
27147 @@ -69732,14 +72833,14 @@ interface(`corenet_udp_sendrecv_radacct_port',`
27148 ## </param>
27149 ## <infoflow type="none"/>
27150 #
27151 -interface(`corenet_dontaudit_udp_sendrecv_radacct_port',`
27152 - corenet_dontaudit_udp_send_radacct_port($1)
27153 - corenet_dontaudit_udp_receive_radacct_port($1)
27154 +interface(`corenet_dontaudit_udp_sendrecv_razor_port',`
27155 + corenet_dontaudit_udp_send_razor_port($1)
27156 + corenet_dontaudit_udp_receive_razor_port($1)
27157 ')
27158
27159 ########################################
27160 ## <summary>
27161 -## Bind TCP sockets to the radacct port.
27162 +## Bind TCP sockets to the razor port.
27163 ## </summary>
27164 ## <param name="domain">
27165 ## <summary>
27166 @@ -69748,18 +72849,18 @@ interface(`corenet_dontaudit_udp_sendrecv_radacct_port',`
27167 ## </param>
27168 ## <infoflow type="none"/>
27169 #
27170 -interface(`corenet_tcp_bind_radacct_port',`
27171 +interface(`corenet_tcp_bind_razor_port',`
27172 gen_require(`
27173 - type radacct_port_t;
27174 + type razor_port_t;
27175 ')
27176
27177 - allow $1 radacct_port_t:tcp_socket name_bind;
27178 + allow $1 razor_port_t:tcp_socket name_bind;
27179
27180 ')
27181
27182 ########################################
27183 ## <summary>
27184 -## Bind UDP sockets to the radacct port.
27185 +## Bind UDP sockets to the razor port.
27186 ## </summary>
27187 ## <param name="domain">
27188 ## <summary>
27189 @@ -69768,18 +72869,18 @@ interface(`corenet_tcp_bind_radacct_port',`
27190 ## </param>
27191 ## <infoflow type="none"/>
27192 #
27193 -interface(`corenet_udp_bind_radacct_port',`
27194 +interface(`corenet_udp_bind_razor_port',`
27195 gen_require(`
27196 - type radacct_port_t;
27197 + type razor_port_t;
27198 ')
27199
27200 - allow $1 radacct_port_t:udp_socket name_bind;
27201 + allow $1 razor_port_t:udp_socket name_bind;
27202
27203 ')
27204
27205 ########################################
27206 ## <summary>
27207 -## Make a TCP connection to the radacct port.
27208 +## Make a TCP connection to the razor port.
27209 ## </summary>
27210 ## <param name="domain">
27211 ## <summary>
27212 @@ -69787,18 +72888,18 @@ interface(`corenet_udp_bind_radacct_port',`
27213 ## </summary>
27214 ## </param>
27215 #
27216 -interface(`corenet_tcp_connect_radacct_port',`
27217 +interface(`corenet_tcp_connect_razor_port',`
27218 gen_require(`
27219 - type radacct_port_t;
27220 + type razor_port_t;
27221 ')
27222
27223 - allow $1 radacct_port_t:tcp_socket name_connect;
27224 + allow $1 razor_port_t:tcp_socket name_connect;
27225 ')
27226
27227
27228 ########################################
27229 ## <summary>
27230 -## Send radacct_client packets.
27231 +## Send razor_client packets.
27232 ## </summary>
27233 ## <param name="domain">
27234 ## <summary>
27235 @@ -69807,17 +72908,17 @@ interface(`corenet_tcp_connect_radacct_port',`
27236 ## </param>
27237 ## <infoflow type="write" weight="10"/>
27238 #
27239 -interface(`corenet_send_radacct_client_packets',`
27240 +interface(`corenet_send_razor_client_packets',`
27241 gen_require(`
27242 - type radacct_client_packet_t;
27243 + type razor_client_packet_t;
27244 ')
27245
27246 - allow $1 radacct_client_packet_t:packet send;
27247 + allow $1 razor_client_packet_t:packet send;
27248 ')
27249
27250 ########################################
27251 ## <summary>
27252 -## Do not audit attempts to send radacct_client packets.
27253 +## Do not audit attempts to send razor_client packets.
27254 ## </summary>
27255 ## <param name="domain">
27256 ## <summary>
27257 @@ -69826,17 +72927,17 @@ interface(`corenet_send_radacct_client_packets',`
27258 ## </param>
27259 ## <infoflow type="none"/>
27260 #
27261 -interface(`corenet_dontaudit_send_radacct_client_packets',`
27262 +interface(`corenet_dontaudit_send_razor_client_packets',`
27263 gen_require(`
27264 - type radacct_client_packet_t;
27265 + type razor_client_packet_t;
27266 ')
27267
27268 - dontaudit $1 radacct_client_packet_t:packet send;
27269 + dontaudit $1 razor_client_packet_t:packet send;
27270 ')
27271
27272 ########################################
27273 ## <summary>
27274 -## Receive radacct_client packets.
27275 +## Receive razor_client packets.
27276 ## </summary>
27277 ## <param name="domain">
27278 ## <summary>
27279 @@ -69845,17 +72946,17 @@ interface(`corenet_dontaudit_send_radacct_client_packets',`
27280 ## </param>
27281 ## <infoflow type="read" weight="10"/>
27282 #
27283 -interface(`corenet_receive_radacct_client_packets',`
27284 +interface(`corenet_receive_razor_client_packets',`
27285 gen_require(`
27286 - type radacct_client_packet_t;
27287 + type razor_client_packet_t;
27288 ')
27289
27290 - allow $1 radacct_client_packet_t:packet recv;
27291 + allow $1 razor_client_packet_t:packet recv;
27292 ')
27293
27294 ########################################
27295 ## <summary>
27296 -## Do not audit attempts to receive radacct_client packets.
27297 +## Do not audit attempts to receive razor_client packets.
27298 ## </summary>
27299 ## <param name="domain">
27300 ## <summary>
27301 @@ -69864,17 +72965,17 @@ interface(`corenet_receive_radacct_client_packets',`
27302 ## </param>
27303 ## <infoflow type="none"/>
27304 #
27305 -interface(`corenet_dontaudit_receive_radacct_client_packets',`
27306 +interface(`corenet_dontaudit_receive_razor_client_packets',`
27307 gen_require(`
27308 - type radacct_client_packet_t;
27309 + type razor_client_packet_t;
27310 ')
27311
27312 - dontaudit $1 radacct_client_packet_t:packet recv;
27313 + dontaudit $1 razor_client_packet_t:packet recv;
27314 ')
27315
27316 ########################################
27317 ## <summary>
27318 -## Send and receive radacct_client packets.
27319 +## Send and receive razor_client packets.
27320 ## </summary>
27321 ## <param name="domain">
27322 ## <summary>
27323 @@ -69883,14 +72984,14 @@ interface(`corenet_dontaudit_receive_radacct_client_packets',`
27324 ## </param>
27325 ## <infoflow type="both" weight="10"/>
27326 #
27327 -interface(`corenet_sendrecv_radacct_client_packets',`
27328 - corenet_send_radacct_client_packets($1)
27329 - corenet_receive_radacct_client_packets($1)
27330 +interface(`corenet_sendrecv_razor_client_packets',`
27331 + corenet_send_razor_client_packets($1)
27332 + corenet_receive_razor_client_packets($1)
27333 ')
27334
27335 ########################################
27336 ## <summary>
27337 -## Do not audit attempts to send and receive radacct_client packets.
27338 +## Do not audit attempts to send and receive razor_client packets.
27339 ## </summary>
27340 ## <param name="domain">
27341 ## <summary>
27342 @@ -69899,14 +73000,14 @@ interface(`corenet_sendrecv_radacct_client_packets',`
27343 ## </param>
27344 ## <infoflow type="none"/>
27345 #
27346 -interface(`corenet_dontaudit_sendrecv_radacct_client_packets',`
27347 - corenet_dontaudit_send_radacct_client_packets($1)
27348 - corenet_dontaudit_receive_radacct_client_packets($1)
27349 +interface(`corenet_dontaudit_sendrecv_razor_client_packets',`
27350 + corenet_dontaudit_send_razor_client_packets($1)
27351 + corenet_dontaudit_receive_razor_client_packets($1)
27352 ')
27353
27354 ########################################
27355 ## <summary>
27356 -## Relabel packets to radacct_client the packet type.
27357 +## Relabel packets to razor_client the packet type.
27358 ## </summary>
27359 ## <param name="domain">
27360 ## <summary>
27361 @@ -69914,18 +73015,18 @@ interface(`corenet_dontaudit_sendrecv_radacct_client_packets',`
27362 ## </summary>
27363 ## </param>
27364 #
27365 -interface(`corenet_relabelto_radacct_client_packets',`
27366 +interface(`corenet_relabelto_razor_client_packets',`
27367 gen_require(`
27368 - type radacct_client_packet_t;
27369 + type razor_client_packet_t;
27370 ')
27371
27372 - allow $1 radacct_client_packet_t:packet relabelto;
27373 + allow $1 razor_client_packet_t:packet relabelto;
27374 ')
27375
27376
27377 ########################################
27378 ## <summary>
27379 -## Send radacct_server packets.
27380 +## Send razor_server packets.
27381 ## </summary>
27382 ## <param name="domain">
27383 ## <summary>
27384 @@ -69934,17 +73035,17 @@ interface(`corenet_relabelto_radacct_client_packets',`
27385 ## </param>
27386 ## <infoflow type="write" weight="10"/>
27387 #
27388 -interface(`corenet_send_radacct_server_packets',`
27389 +interface(`corenet_send_razor_server_packets',`
27390 gen_require(`
27391 - type radacct_server_packet_t;
27392 + type razor_server_packet_t;
27393 ')
27394
27395 - allow $1 radacct_server_packet_t:packet send;
27396 + allow $1 razor_server_packet_t:packet send;
27397 ')
27398
27399 ########################################
27400 ## <summary>
27401 -## Do not audit attempts to send radacct_server packets.
27402 +## Do not audit attempts to send razor_server packets.
27403 ## </summary>
27404 ## <param name="domain">
27405 ## <summary>
27406 @@ -69953,17 +73054,17 @@ interface(`corenet_send_radacct_server_packets',`
27407 ## </param>
27408 ## <infoflow type="none"/>
27409 #
27410 -interface(`corenet_dontaudit_send_radacct_server_packets',`
27411 +interface(`corenet_dontaudit_send_razor_server_packets',`
27412 gen_require(`
27413 - type radacct_server_packet_t;
27414 + type razor_server_packet_t;
27415 ')
27416
27417 - dontaudit $1 radacct_server_packet_t:packet send;
27418 + dontaudit $1 razor_server_packet_t:packet send;
27419 ')
27420
27421 ########################################
27422 ## <summary>
27423 -## Receive radacct_server packets.
27424 +## Receive razor_server packets.
27425 ## </summary>
27426 ## <param name="domain">
27427 ## <summary>
27428 @@ -69972,17 +73073,17 @@ interface(`corenet_dontaudit_send_radacct_server_packets',`
27429 ## </param>
27430 ## <infoflow type="read" weight="10"/>
27431 #
27432 -interface(`corenet_receive_radacct_server_packets',`
27433 +interface(`corenet_receive_razor_server_packets',`
27434 gen_require(`
27435 - type radacct_server_packet_t;
27436 + type razor_server_packet_t;
27437 ')
27438
27439 - allow $1 radacct_server_packet_t:packet recv;
27440 + allow $1 razor_server_packet_t:packet recv;
27441 ')
27442
27443 ########################################
27444 ## <summary>
27445 -## Do not audit attempts to receive radacct_server packets.
27446 +## Do not audit attempts to receive razor_server packets.
27447 ## </summary>
27448 ## <param name="domain">
27449 ## <summary>
27450 @@ -69991,17 +73092,17 @@ interface(`corenet_receive_radacct_server_packets',`
27451 ## </param>
27452 ## <infoflow type="none"/>
27453 #
27454 -interface(`corenet_dontaudit_receive_radacct_server_packets',`
27455 +interface(`corenet_dontaudit_receive_razor_server_packets',`
27456 gen_require(`
27457 - type radacct_server_packet_t;
27458 + type razor_server_packet_t;
27459 ')
27460
27461 - dontaudit $1 radacct_server_packet_t:packet recv;
27462 + dontaudit $1 razor_server_packet_t:packet recv;
27463 ')
27464
27465 ########################################
27466 ## <summary>
27467 -## Send and receive radacct_server packets.
27468 +## Send and receive razor_server packets.
27469 ## </summary>
27470 ## <param name="domain">
27471 ## <summary>
27472 @@ -70010,14 +73111,14 @@ interface(`corenet_dontaudit_receive_radacct_server_packets',`
27473 ## </param>
27474 ## <infoflow type="both" weight="10"/>
27475 #
27476 -interface(`corenet_sendrecv_radacct_server_packets',`
27477 - corenet_send_radacct_server_packets($1)
27478 - corenet_receive_radacct_server_packets($1)
27479 +interface(`corenet_sendrecv_razor_server_packets',`
27480 + corenet_send_razor_server_packets($1)
27481 + corenet_receive_razor_server_packets($1)
27482 ')
27483
27484 ########################################
27485 ## <summary>
27486 -## Do not audit attempts to send and receive radacct_server packets.
27487 +## Do not audit attempts to send and receive razor_server packets.
27488 ## </summary>
27489 ## <param name="domain">
27490 ## <summary>
27491 @@ -70026,14 +73127,14 @@ interface(`corenet_sendrecv_radacct_server_packets',`
27492 ## </param>
27493 ## <infoflow type="none"/>
27494 #
27495 -interface(`corenet_dontaudit_sendrecv_radacct_server_packets',`
27496 - corenet_dontaudit_send_radacct_server_packets($1)
27497 - corenet_dontaudit_receive_radacct_server_packets($1)
27498 +interface(`corenet_dontaudit_sendrecv_razor_server_packets',`
27499 + corenet_dontaudit_send_razor_server_packets($1)
27500 + corenet_dontaudit_receive_razor_server_packets($1)
27501 ')
27502
27503 ########################################
27504 ## <summary>
27505 -## Relabel packets to radacct_server the packet type.
27506 +## Relabel packets to razor_server the packet type.
27507 ## </summary>
27508 ## <param name="domain">
27509 ## <summary>
27510 @@ -70041,12 +73142,12 @@ interface(`corenet_dontaudit_sendrecv_radacct_server_packets',`
27511 ## </summary>
27512 ## </param>
27513 #
27514 -interface(`corenet_relabelto_radacct_server_packets',`
27515 +interface(`corenet_relabelto_razor_server_packets',`
27516 gen_require(`
27517 - type radacct_server_packet_t;
27518 + type razor_server_packet_t;
27519 ')
27520
27521 - allow $1 radacct_server_packet_t:packet relabelto;
27522 + allow $1 razor_server_packet_t:packet relabelto;
27523 ')
27524
27525
27526 @@ -70054,7 +73155,7 @@ interface(`corenet_relabelto_radacct_server_packets',`
27527
27528 ########################################
27529 ## <summary>
27530 -## Send and receive TCP traffic on the radius port.
27531 +## Send and receive TCP traffic on the redis port.
27532 ## </summary>
27533 ## <param name="domain">
27534 ## <summary>
27535 @@ -70063,17 +73164,17 @@ interface(`corenet_relabelto_radacct_server_packets',`
27536 ## </param>
27537 ## <infoflow type="both" weight="10"/>
27538 #
27539 -interface(`corenet_tcp_sendrecv_radius_port',`
27540 +interface(`corenet_tcp_sendrecv_redis_port',`
27541 gen_require(`
27542 - type radius_port_t;
27543 + type redis_port_t;
27544 ')
27545
27546 - allow $1 radius_port_t:tcp_socket { send_msg recv_msg };
27547 + allow $1 redis_port_t:tcp_socket { send_msg recv_msg };
27548 ')
27549
27550 ########################################
27551 ## <summary>
27552 -## Send UDP traffic on the radius port.
27553 +## Send UDP traffic on the redis port.
27554 ## </summary>
27555 ## <param name="domain">
27556 ## <summary>
27557 @@ -70082,17 +73183,17 @@ interface(`corenet_tcp_sendrecv_radius_port',`
27558 ## </param>
27559 ## <infoflow type="write" weight="10"/>
27560 #
27561 -interface(`corenet_udp_send_radius_port',`
27562 +interface(`corenet_udp_send_redis_port',`
27563 gen_require(`
27564 - type radius_port_t;
27565 + type redis_port_t;
27566 ')
27567
27568 - allow $1 radius_port_t:udp_socket send_msg;
27569 + allow $1 redis_port_t:udp_socket send_msg;
27570 ')
27571
27572 ########################################
27573 ## <summary>
27574 -## Do not audit attempts to send UDP traffic on the radius port.
27575 +## Do not audit attempts to send UDP traffic on the redis port.
27576 ## </summary>
27577 ## <param name="domain">
27578 ## <summary>
27579 @@ -70101,17 +73202,17 @@ interface(`corenet_udp_send_radius_port',`
27580 ## </param>
27581 ## <infoflow type="none"/>
27582 #
27583 -interface(`corenet_dontaudit_udp_send_radius_port',`
27584 +interface(`corenet_dontaudit_udp_send_redis_port',`
27585 gen_require(`
27586 - type radius_port_t;
27587 + type redis_port_t;
27588 ')
27589
27590 - dontaudit $1 radius_port_t:udp_socket send_msg;
27591 + dontaudit $1 redis_port_t:udp_socket send_msg;
27592 ')
27593
27594 ########################################
27595 ## <summary>
27596 -## Receive UDP traffic on the radius port.
27597 +## Receive UDP traffic on the redis port.
27598 ## </summary>
27599 ## <param name="domain">
27600 ## <summary>
27601 @@ -70120,17 +73221,17 @@ interface(`corenet_dontaudit_udp_send_radius_port',`
27602 ## </param>
27603 ## <infoflow type="read" weight="10"/>
27604 #
27605 -interface(`corenet_udp_receive_radius_port',`
27606 +interface(`corenet_udp_receive_redis_port',`
27607 gen_require(`
27608 - type radius_port_t;
27609 + type redis_port_t;
27610 ')
27611
27612 - allow $1 radius_port_t:udp_socket recv_msg;
27613 + allow $1 redis_port_t:udp_socket recv_msg;
27614 ')
27615
27616 ########################################
27617 ## <summary>
27618 -## Do not audit attempts to receive UDP traffic on the radius port.
27619 +## Do not audit attempts to receive UDP traffic on the redis port.
27620 ## </summary>
27621 ## <param name="domain">
27622 ## <summary>
27623 @@ -70139,17 +73240,17 @@ interface(`corenet_udp_receive_radius_port',`
27624 ## </param>
27625 ## <infoflow type="none"/>
27626 #
27627 -interface(`corenet_dontaudit_udp_receive_radius_port',`
27628 +interface(`corenet_dontaudit_udp_receive_redis_port',`
27629 gen_require(`
27630 - type radius_port_t;
27631 + type redis_port_t;
27632 ')
27633
27634 - dontaudit $1 radius_port_t:udp_socket recv_msg;
27635 + dontaudit $1 redis_port_t:udp_socket recv_msg;
27636 ')
27637
27638 ########################################
27639 ## <summary>
27640 -## Send and receive UDP traffic on the radius port.
27641 +## Send and receive UDP traffic on the redis port.
27642 ## </summary>
27643 ## <param name="domain">
27644 ## <summary>
27645 @@ -70158,15 +73259,15 @@ interface(`corenet_dontaudit_udp_receive_radius_port',`
27646 ## </param>
27647 ## <infoflow type="both" weight="10"/>
27648 #
27649 -interface(`corenet_udp_sendrecv_radius_port',`
27650 - corenet_udp_send_radius_port($1)
27651 - corenet_udp_receive_radius_port($1)
27652 +interface(`corenet_udp_sendrecv_redis_port',`
27653 + corenet_udp_send_redis_port($1)
27654 + corenet_udp_receive_redis_port($1)
27655 ')
27656
27657 ########################################
27658 ## <summary>
27659 ## Do not audit attempts to send and receive
27660 -## UDP traffic on the radius port.
27661 +## UDP traffic on the redis port.
27662 ## </summary>
27663 ## <param name="domain">
27664 ## <summary>
27665 @@ -70175,14 +73276,14 @@ interface(`corenet_udp_sendrecv_radius_port',`
27666 ## </param>
27667 ## <infoflow type="none"/>
27668 #
27669 -interface(`corenet_dontaudit_udp_sendrecv_radius_port',`
27670 - corenet_dontaudit_udp_send_radius_port($1)
27671 - corenet_dontaudit_udp_receive_radius_port($1)
27672 +interface(`corenet_dontaudit_udp_sendrecv_redis_port',`
27673 + corenet_dontaudit_udp_send_redis_port($1)
27674 + corenet_dontaudit_udp_receive_redis_port($1)
27675 ')
27676
27677 ########################################
27678 ## <summary>
27679 -## Bind TCP sockets to the radius port.
27680 +## Bind TCP sockets to the redis port.
27681 ## </summary>
27682 ## <param name="domain">
27683 ## <summary>
27684 @@ -70191,18 +73292,18 @@ interface(`corenet_dontaudit_udp_sendrecv_radius_port',`
27685 ## </param>
27686 ## <infoflow type="none"/>
27687 #
27688 -interface(`corenet_tcp_bind_radius_port',`
27689 +interface(`corenet_tcp_bind_redis_port',`
27690 gen_require(`
27691 - type radius_port_t;
27692 + type redis_port_t;
27693 ')
27694
27695 - allow $1 radius_port_t:tcp_socket name_bind;
27696 + allow $1 redis_port_t:tcp_socket name_bind;
27697
27698 ')
27699
27700 ########################################
27701 ## <summary>
27702 -## Bind UDP sockets to the radius port.
27703 +## Bind UDP sockets to the redis port.
27704 ## </summary>
27705 ## <param name="domain">
27706 ## <summary>
27707 @@ -70211,18 +73312,18 @@ interface(`corenet_tcp_bind_radius_port',`
27708 ## </param>
27709 ## <infoflow type="none"/>
27710 #
27711 -interface(`corenet_udp_bind_radius_port',`
27712 +interface(`corenet_udp_bind_redis_port',`
27713 gen_require(`
27714 - type radius_port_t;
27715 + type redis_port_t;
27716 ')
27717
27718 - allow $1 radius_port_t:udp_socket name_bind;
27719 + allow $1 redis_port_t:udp_socket name_bind;
27720
27721 ')
27722
27723 ########################################
27724 ## <summary>
27725 -## Make a TCP connection to the radius port.
27726 +## Make a TCP connection to the redis port.
27727 ## </summary>
27728 ## <param name="domain">
27729 ## <summary>
27730 @@ -70230,18 +73331,18 @@ interface(`corenet_udp_bind_radius_port',`
27731 ## </summary>
27732 ## </param>
27733 #
27734 -interface(`corenet_tcp_connect_radius_port',`
27735 +interface(`corenet_tcp_connect_redis_port',`
27736 gen_require(`
27737 - type radius_port_t;
27738 + type redis_port_t;
27739 ')
27740
27741 - allow $1 radius_port_t:tcp_socket name_connect;
27742 + allow $1 redis_port_t:tcp_socket name_connect;
27743 ')
27744
27745
27746 ########################################
27747 ## <summary>
27748 -## Send radius_client packets.
27749 +## Send redis_client packets.
27750 ## </summary>
27751 ## <param name="domain">
27752 ## <summary>
27753 @@ -70250,17 +73351,17 @@ interface(`corenet_tcp_connect_radius_port',`
27754 ## </param>
27755 ## <infoflow type="write" weight="10"/>
27756 #
27757 -interface(`corenet_send_radius_client_packets',`
27758 +interface(`corenet_send_redis_client_packets',`
27759 gen_require(`
27760 - type radius_client_packet_t;
27761 + type redis_client_packet_t;
27762 ')
27763
27764 - allow $1 radius_client_packet_t:packet send;
27765 + allow $1 redis_client_packet_t:packet send;
27766 ')
27767
27768 ########################################
27769 ## <summary>
27770 -## Do not audit attempts to send radius_client packets.
27771 +## Do not audit attempts to send redis_client packets.
27772 ## </summary>
27773 ## <param name="domain">
27774 ## <summary>
27775 @@ -70269,17 +73370,17 @@ interface(`corenet_send_radius_client_packets',`
27776 ## </param>
27777 ## <infoflow type="none"/>
27778 #
27779 -interface(`corenet_dontaudit_send_radius_client_packets',`
27780 +interface(`corenet_dontaudit_send_redis_client_packets',`
27781 gen_require(`
27782 - type radius_client_packet_t;
27783 + type redis_client_packet_t;
27784 ')
27785
27786 - dontaudit $1 radius_client_packet_t:packet send;
27787 + dontaudit $1 redis_client_packet_t:packet send;
27788 ')
27789
27790 ########################################
27791 ## <summary>
27792 -## Receive radius_client packets.
27793 +## Receive redis_client packets.
27794 ## </summary>
27795 ## <param name="domain">
27796 ## <summary>
27797 @@ -70288,17 +73389,17 @@ interface(`corenet_dontaudit_send_radius_client_packets',`
27798 ## </param>
27799 ## <infoflow type="read" weight="10"/>
27800 #
27801 -interface(`corenet_receive_radius_client_packets',`
27802 +interface(`corenet_receive_redis_client_packets',`
27803 gen_require(`
27804 - type radius_client_packet_t;
27805 + type redis_client_packet_t;
27806 ')
27807
27808 - allow $1 radius_client_packet_t:packet recv;
27809 + allow $1 redis_client_packet_t:packet recv;
27810 ')
27811
27812 ########################################
27813 ## <summary>
27814 -## Do not audit attempts to receive radius_client packets.
27815 +## Do not audit attempts to receive redis_client packets.
27816 ## </summary>
27817 ## <param name="domain">
27818 ## <summary>
27819 @@ -70307,17 +73408,17 @@ interface(`corenet_receive_radius_client_packets',`
27820 ## </param>
27821 ## <infoflow type="none"/>
27822 #
27823 -interface(`corenet_dontaudit_receive_radius_client_packets',`
27824 +interface(`corenet_dontaudit_receive_redis_client_packets',`
27825 gen_require(`
27826 - type radius_client_packet_t;
27827 + type redis_client_packet_t;
27828 ')
27829
27830 - dontaudit $1 radius_client_packet_t:packet recv;
27831 + dontaudit $1 redis_client_packet_t:packet recv;
27832 ')
27833
27834 ########################################
27835 ## <summary>
27836 -## Send and receive radius_client packets.
27837 +## Send and receive redis_client packets.
27838 ## </summary>
27839 ## <param name="domain">
27840 ## <summary>
27841 @@ -70326,14 +73427,14 @@ interface(`corenet_dontaudit_receive_radius_client_packets',`
27842 ## </param>
27843 ## <infoflow type="both" weight="10"/>
27844 #
27845 -interface(`corenet_sendrecv_radius_client_packets',`
27846 - corenet_send_radius_client_packets($1)
27847 - corenet_receive_radius_client_packets($1)
27848 +interface(`corenet_sendrecv_redis_client_packets',`
27849 + corenet_send_redis_client_packets($1)
27850 + corenet_receive_redis_client_packets($1)
27851 ')
27852
27853 ########################################
27854 ## <summary>
27855 -## Do not audit attempts to send and receive radius_client packets.
27856 +## Do not audit attempts to send and receive redis_client packets.
27857 ## </summary>
27858 ## <param name="domain">
27859 ## <summary>
27860 @@ -70342,14 +73443,14 @@ interface(`corenet_sendrecv_radius_client_packets',`
27861 ## </param>
27862 ## <infoflow type="none"/>
27863 #
27864 -interface(`corenet_dontaudit_sendrecv_radius_client_packets',`
27865 - corenet_dontaudit_send_radius_client_packets($1)
27866 - corenet_dontaudit_receive_radius_client_packets($1)
27867 +interface(`corenet_dontaudit_sendrecv_redis_client_packets',`
27868 + corenet_dontaudit_send_redis_client_packets($1)
27869 + corenet_dontaudit_receive_redis_client_packets($1)
27870 ')
27871
27872 ########################################
27873 ## <summary>
27874 -## Relabel packets to radius_client the packet type.
27875 +## Relabel packets to redis_client the packet type.
27876 ## </summary>
27877 ## <param name="domain">
27878 ## <summary>
27879 @@ -70357,18 +73458,18 @@ interface(`corenet_dontaudit_sendrecv_radius_client_packets',`
27880 ## </summary>
27881 ## </param>
27882 #
27883 -interface(`corenet_relabelto_radius_client_packets',`
27884 +interface(`corenet_relabelto_redis_client_packets',`
27885 gen_require(`
27886 - type radius_client_packet_t;
27887 + type redis_client_packet_t;
27888 ')
27889
27890 - allow $1 radius_client_packet_t:packet relabelto;
27891 + allow $1 redis_client_packet_t:packet relabelto;
27892 ')
27893
27894
27895 ########################################
27896 ## <summary>
27897 -## Send radius_server packets.
27898 +## Send redis_server packets.
27899 ## </summary>
27900 ## <param name="domain">
27901 ## <summary>
27902 @@ -70377,17 +73478,17 @@ interface(`corenet_relabelto_radius_client_packets',`
27903 ## </param>
27904 ## <infoflow type="write" weight="10"/>
27905 #
27906 -interface(`corenet_send_radius_server_packets',`
27907 +interface(`corenet_send_redis_server_packets',`
27908 gen_require(`
27909 - type radius_server_packet_t;
27910 + type redis_server_packet_t;
27911 ')
27912
27913 - allow $1 radius_server_packet_t:packet send;
27914 + allow $1 redis_server_packet_t:packet send;
27915 ')
27916
27917 ########################################
27918 ## <summary>
27919 -## Do not audit attempts to send radius_server packets.
27920 +## Do not audit attempts to send redis_server packets.
27921 ## </summary>
27922 ## <param name="domain">
27923 ## <summary>
27924 @@ -70396,17 +73497,17 @@ interface(`corenet_send_radius_server_packets',`
27925 ## </param>
27926 ## <infoflow type="none"/>
27927 #
27928 -interface(`corenet_dontaudit_send_radius_server_packets',`
27929 +interface(`corenet_dontaudit_send_redis_server_packets',`
27930 gen_require(`
27931 - type radius_server_packet_t;
27932 + type redis_server_packet_t;
27933 ')
27934
27935 - dontaudit $1 radius_server_packet_t:packet send;
27936 + dontaudit $1 redis_server_packet_t:packet send;
27937 ')
27938
27939 ########################################
27940 ## <summary>
27941 -## Receive radius_server packets.
27942 +## Receive redis_server packets.
27943 ## </summary>
27944 ## <param name="domain">
27945 ## <summary>
27946 @@ -70415,17 +73516,17 @@ interface(`corenet_dontaudit_send_radius_server_packets',`
27947 ## </param>
27948 ## <infoflow type="read" weight="10"/>
27949 #
27950 -interface(`corenet_receive_radius_server_packets',`
27951 +interface(`corenet_receive_redis_server_packets',`
27952 gen_require(`
27953 - type radius_server_packet_t;
27954 + type redis_server_packet_t;
27955 ')
27956
27957 - allow $1 radius_server_packet_t:packet recv;
27958 + allow $1 redis_server_packet_t:packet recv;
27959 ')
27960
27961 ########################################
27962 ## <summary>
27963 -## Do not audit attempts to receive radius_server packets.
27964 +## Do not audit attempts to receive redis_server packets.
27965 ## </summary>
27966 ## <param name="domain">
27967 ## <summary>
27968 @@ -70434,17 +73535,17 @@ interface(`corenet_receive_radius_server_packets',`
27969 ## </param>
27970 ## <infoflow type="none"/>
27971 #
27972 -interface(`corenet_dontaudit_receive_radius_server_packets',`
27973 +interface(`corenet_dontaudit_receive_redis_server_packets',`
27974 gen_require(`
27975 - type radius_server_packet_t;
27976 + type redis_server_packet_t;
27977 ')
27978
27979 - dontaudit $1 radius_server_packet_t:packet recv;
27980 + dontaudit $1 redis_server_packet_t:packet recv;
27981 ')
27982
27983 ########################################
27984 ## <summary>
27985 -## Send and receive radius_server packets.
27986 +## Send and receive redis_server packets.
27987 ## </summary>
27988 ## <param name="domain">
27989 ## <summary>
27990 @@ -70453,14 +73554,14 @@ interface(`corenet_dontaudit_receive_radius_server_packets',`
27991 ## </param>
27992 ## <infoflow type="both" weight="10"/>
27993 #
27994 -interface(`corenet_sendrecv_radius_server_packets',`
27995 - corenet_send_radius_server_packets($1)
27996 - corenet_receive_radius_server_packets($1)
27997 +interface(`corenet_sendrecv_redis_server_packets',`
27998 + corenet_send_redis_server_packets($1)
27999 + corenet_receive_redis_server_packets($1)
28000 ')
28001
28002 ########################################
28003 ## <summary>
28004 -## Do not audit attempts to send and receive radius_server packets.
28005 +## Do not audit attempts to send and receive redis_server packets.
28006 ## </summary>
28007 ## <param name="domain">
28008 ## <summary>
28009 @@ -70469,14 +73570,14 @@ interface(`corenet_sendrecv_radius_server_packets',`
28010 ## </param>
28011 ## <infoflow type="none"/>
28012 #
28013 -interface(`corenet_dontaudit_sendrecv_radius_server_packets',`
28014 - corenet_dontaudit_send_radius_server_packets($1)
28015 - corenet_dontaudit_receive_radius_server_packets($1)
28016 +interface(`corenet_dontaudit_sendrecv_redis_server_packets',`
28017 + corenet_dontaudit_send_redis_server_packets($1)
28018 + corenet_dontaudit_receive_redis_server_packets($1)
28019 ')
28020
28021 ########################################
28022 ## <summary>
28023 -## Relabel packets to radius_server the packet type.
28024 +## Relabel packets to redis_server the packet type.
28025 ## </summary>
28026 ## <param name="domain">
28027 ## <summary>
28028 @@ -70484,12 +73585,12 @@ interface(`corenet_dontaudit_sendrecv_radius_server_packets',`
28029 ## </summary>
28030 ## </param>
28031 #
28032 -interface(`corenet_relabelto_radius_server_packets',`
28033 +interface(`corenet_relabelto_redis_server_packets',`
28034 gen_require(`
28035 - type radius_server_packet_t;
28036 + type redis_server_packet_t;
28037 ')
28038
28039 - allow $1 radius_server_packet_t:packet relabelto;
28040 + allow $1 redis_server_packet_t:packet relabelto;
28041 ')
28042
28043
28044 @@ -70497,7 +73598,7 @@ interface(`corenet_relabelto_radius_server_packets',`
28045
28046 ########################################
28047 ## <summary>
28048 -## Send and receive TCP traffic on the radsec port.
28049 +## Send and receive TCP traffic on the repository port.
28050 ## </summary>
28051 ## <param name="domain">
28052 ## <summary>
28053 @@ -70506,17 +73607,17 @@ interface(`corenet_relabelto_radius_server_packets',`
28054 ## </param>
28055 ## <infoflow type="both" weight="10"/>
28056 #
28057 -interface(`corenet_tcp_sendrecv_radsec_port',`
28058 +interface(`corenet_tcp_sendrecv_repository_port',`
28059 gen_require(`
28060 - type radsec_port_t;
28061 + type repository_port_t;
28062 ')
28063
28064 - allow $1 radsec_port_t:tcp_socket { send_msg recv_msg };
28065 + allow $1 repository_port_t:tcp_socket { send_msg recv_msg };
28066 ')
28067
28068 ########################################
28069 ## <summary>
28070 -## Send UDP traffic on the radsec port.
28071 +## Send UDP traffic on the repository port.
28072 ## </summary>
28073 ## <param name="domain">
28074 ## <summary>
28075 @@ -70525,17 +73626,17 @@ interface(`corenet_tcp_sendrecv_radsec_port',`
28076 ## </param>
28077 ## <infoflow type="write" weight="10"/>
28078 #
28079 -interface(`corenet_udp_send_radsec_port',`
28080 +interface(`corenet_udp_send_repository_port',`
28081 gen_require(`
28082 - type radsec_port_t;
28083 + type repository_port_t;
28084 ')
28085
28086 - allow $1 radsec_port_t:udp_socket send_msg;
28087 + allow $1 repository_port_t:udp_socket send_msg;
28088 ')
28089
28090 ########################################
28091 ## <summary>
28092 -## Do not audit attempts to send UDP traffic on the radsec port.
28093 +## Do not audit attempts to send UDP traffic on the repository port.
28094 ## </summary>
28095 ## <param name="domain">
28096 ## <summary>
28097 @@ -70544,17 +73645,17 @@ interface(`corenet_udp_send_radsec_port',`
28098 ## </param>
28099 ## <infoflow type="none"/>
28100 #
28101 -interface(`corenet_dontaudit_udp_send_radsec_port',`
28102 +interface(`corenet_dontaudit_udp_send_repository_port',`
28103 gen_require(`
28104 - type radsec_port_t;
28105 + type repository_port_t;
28106 ')
28107
28108 - dontaudit $1 radsec_port_t:udp_socket send_msg;
28109 + dontaudit $1 repository_port_t:udp_socket send_msg;
28110 ')
28111
28112 ########################################
28113 ## <summary>
28114 -## Receive UDP traffic on the radsec port.
28115 +## Receive UDP traffic on the repository port.
28116 ## </summary>
28117 ## <param name="domain">
28118 ## <summary>
28119 @@ -70563,17 +73664,17 @@ interface(`corenet_dontaudit_udp_send_radsec_port',`
28120 ## </param>
28121 ## <infoflow type="read" weight="10"/>
28122 #
28123 -interface(`corenet_udp_receive_radsec_port',`
28124 +interface(`corenet_udp_receive_repository_port',`
28125 gen_require(`
28126 - type radsec_port_t;
28127 + type repository_port_t;
28128 ')
28129
28130 - allow $1 radsec_port_t:udp_socket recv_msg;
28131 + allow $1 repository_port_t:udp_socket recv_msg;
28132 ')
28133
28134 ########################################
28135 ## <summary>
28136 -## Do not audit attempts to receive UDP traffic on the radsec port.
28137 +## Do not audit attempts to receive UDP traffic on the repository port.
28138 ## </summary>
28139 ## <param name="domain">
28140 ## <summary>
28141 @@ -70582,17 +73683,17 @@ interface(`corenet_udp_receive_radsec_port',`
28142 ## </param>
28143 ## <infoflow type="none"/>
28144 #
28145 -interface(`corenet_dontaudit_udp_receive_radsec_port',`
28146 +interface(`corenet_dontaudit_udp_receive_repository_port',`
28147 gen_require(`
28148 - type radsec_port_t;
28149 + type repository_port_t;
28150 ')
28151
28152 - dontaudit $1 radsec_port_t:udp_socket recv_msg;
28153 + dontaudit $1 repository_port_t:udp_socket recv_msg;
28154 ')
28155
28156 ########################################
28157 ## <summary>
28158 -## Send and receive UDP traffic on the radsec port.
28159 +## Send and receive UDP traffic on the repository port.
28160 ## </summary>
28161 ## <param name="domain">
28162 ## <summary>
28163 @@ -70601,15 +73702,15 @@ interface(`corenet_dontaudit_udp_receive_radsec_port',`
28164 ## </param>
28165 ## <infoflow type="both" weight="10"/>
28166 #
28167 -interface(`corenet_udp_sendrecv_radsec_port',`
28168 - corenet_udp_send_radsec_port($1)
28169 - corenet_udp_receive_radsec_port($1)
28170 +interface(`corenet_udp_sendrecv_repository_port',`
28171 + corenet_udp_send_repository_port($1)
28172 + corenet_udp_receive_repository_port($1)
28173 ')
28174
28175 ########################################
28176 ## <summary>
28177 ## Do not audit attempts to send and receive
28178 -## UDP traffic on the radsec port.
28179 +## UDP traffic on the repository port.
28180 ## </summary>
28181 ## <param name="domain">
28182 ## <summary>
28183 @@ -70618,14 +73719,14 @@ interface(`corenet_udp_sendrecv_radsec_port',`
28184 ## </param>
28185 ## <infoflow type="none"/>
28186 #
28187 -interface(`corenet_dontaudit_udp_sendrecv_radsec_port',`
28188 - corenet_dontaudit_udp_send_radsec_port($1)
28189 - corenet_dontaudit_udp_receive_radsec_port($1)
28190 +interface(`corenet_dontaudit_udp_sendrecv_repository_port',`
28191 + corenet_dontaudit_udp_send_repository_port($1)
28192 + corenet_dontaudit_udp_receive_repository_port($1)
28193 ')
28194
28195 ########################################
28196 ## <summary>
28197 -## Bind TCP sockets to the radsec port.
28198 +## Bind TCP sockets to the repository port.
28199 ## </summary>
28200 ## <param name="domain">
28201 ## <summary>
28202 @@ -70634,18 +73735,18 @@ interface(`corenet_dontaudit_udp_sendrecv_radsec_port',`
28203 ## </param>
28204 ## <infoflow type="none"/>
28205 #
28206 -interface(`corenet_tcp_bind_radsec_port',`
28207 +interface(`corenet_tcp_bind_repository_port',`
28208 gen_require(`
28209 - type radsec_port_t;
28210 + type repository_port_t;
28211 ')
28212
28213 - allow $1 radsec_port_t:tcp_socket name_bind;
28214 + allow $1 repository_port_t:tcp_socket name_bind;
28215
28216 ')
28217
28218 ########################################
28219 ## <summary>
28220 -## Bind UDP sockets to the radsec port.
28221 +## Bind UDP sockets to the repository port.
28222 ## </summary>
28223 ## <param name="domain">
28224 ## <summary>
28225 @@ -70654,18 +73755,18 @@ interface(`corenet_tcp_bind_radsec_port',`
28226 ## </param>
28227 ## <infoflow type="none"/>
28228 #
28229 -interface(`corenet_udp_bind_radsec_port',`
28230 +interface(`corenet_udp_bind_repository_port',`
28231 gen_require(`
28232 - type radsec_port_t;
28233 + type repository_port_t;
28234 ')
28235
28236 - allow $1 radsec_port_t:udp_socket name_bind;
28237 + allow $1 repository_port_t:udp_socket name_bind;
28238
28239 ')
28240
28241 ########################################
28242 ## <summary>
28243 -## Make a TCP connection to the radsec port.
28244 +## Make a TCP connection to the repository port.
28245 ## </summary>
28246 ## <param name="domain">
28247 ## <summary>
28248 @@ -70673,18 +73774,18 @@ interface(`corenet_udp_bind_radsec_port',`
28249 ## </summary>
28250 ## </param>
28251 #
28252 -interface(`corenet_tcp_connect_radsec_port',`
28253 +interface(`corenet_tcp_connect_repository_port',`
28254 gen_require(`
28255 - type radsec_port_t;
28256 + type repository_port_t;
28257 ')
28258
28259 - allow $1 radsec_port_t:tcp_socket name_connect;
28260 + allow $1 repository_port_t:tcp_socket name_connect;
28261 ')
28262
28263
28264 ########################################
28265 ## <summary>
28266 -## Send radsec_client packets.
28267 +## Send repository_client packets.
28268 ## </summary>
28269 ## <param name="domain">
28270 ## <summary>
28271 @@ -70693,17 +73794,17 @@ interface(`corenet_tcp_connect_radsec_port',`
28272 ## </param>
28273 ## <infoflow type="write" weight="10"/>
28274 #
28275 -interface(`corenet_send_radsec_client_packets',`
28276 +interface(`corenet_send_repository_client_packets',`
28277 gen_require(`
28278 - type radsec_client_packet_t;
28279 + type repository_client_packet_t;
28280 ')
28281
28282 - allow $1 radsec_client_packet_t:packet send;
28283 + allow $1 repository_client_packet_t:packet send;
28284 ')
28285
28286 ########################################
28287 ## <summary>
28288 -## Do not audit attempts to send radsec_client packets.
28289 +## Do not audit attempts to send repository_client packets.
28290 ## </summary>
28291 ## <param name="domain">
28292 ## <summary>
28293 @@ -70712,17 +73813,17 @@ interface(`corenet_send_radsec_client_packets',`
28294 ## </param>
28295 ## <infoflow type="none"/>
28296 #
28297 -interface(`corenet_dontaudit_send_radsec_client_packets',`
28298 +interface(`corenet_dontaudit_send_repository_client_packets',`
28299 gen_require(`
28300 - type radsec_client_packet_t;
28301 + type repository_client_packet_t;
28302 ')
28303
28304 - dontaudit $1 radsec_client_packet_t:packet send;
28305 + dontaudit $1 repository_client_packet_t:packet send;
28306 ')
28307
28308 ########################################
28309 ## <summary>
28310 -## Receive radsec_client packets.
28311 +## Receive repository_client packets.
28312 ## </summary>
28313 ## <param name="domain">
28314 ## <summary>
28315 @@ -70731,17 +73832,17 @@ interface(`corenet_dontaudit_send_radsec_client_packets',`
28316 ## </param>
28317 ## <infoflow type="read" weight="10"/>
28318 #
28319 -interface(`corenet_receive_radsec_client_packets',`
28320 +interface(`corenet_receive_repository_client_packets',`
28321 gen_require(`
28322 - type radsec_client_packet_t;
28323 + type repository_client_packet_t;
28324 ')
28325
28326 - allow $1 radsec_client_packet_t:packet recv;
28327 + allow $1 repository_client_packet_t:packet recv;
28328 ')
28329
28330 ########################################
28331 ## <summary>
28332 -## Do not audit attempts to receive radsec_client packets.
28333 +## Do not audit attempts to receive repository_client packets.
28334 ## </summary>
28335 ## <param name="domain">
28336 ## <summary>
28337 @@ -70750,17 +73851,17 @@ interface(`corenet_receive_radsec_client_packets',`
28338 ## </param>
28339 ## <infoflow type="none"/>
28340 #
28341 -interface(`corenet_dontaudit_receive_radsec_client_packets',`
28342 +interface(`corenet_dontaudit_receive_repository_client_packets',`
28343 gen_require(`
28344 - type radsec_client_packet_t;
28345 + type repository_client_packet_t;
28346 ')
28347
28348 - dontaudit $1 radsec_client_packet_t:packet recv;
28349 + dontaudit $1 repository_client_packet_t:packet recv;
28350 ')
28351
28352 ########################################
28353 ## <summary>
28354 -## Send and receive radsec_client packets.
28355 +## Send and receive repository_client packets.
28356 ## </summary>
28357 ## <param name="domain">
28358 ## <summary>
28359 @@ -70769,14 +73870,14 @@ interface(`corenet_dontaudit_receive_radsec_client_packets',`
28360 ## </param>
28361 ## <infoflow type="both" weight="10"/>
28362 #
28363 -interface(`corenet_sendrecv_radsec_client_packets',`
28364 - corenet_send_radsec_client_packets($1)
28365 - corenet_receive_radsec_client_packets($1)
28366 +interface(`corenet_sendrecv_repository_client_packets',`
28367 + corenet_send_repository_client_packets($1)
28368 + corenet_receive_repository_client_packets($1)
28369 ')
28370
28371 ########################################
28372 ## <summary>
28373 -## Do not audit attempts to send and receive radsec_client packets.
28374 +## Do not audit attempts to send and receive repository_client packets.
28375 ## </summary>
28376 ## <param name="domain">
28377 ## <summary>
28378 @@ -70785,14 +73886,14 @@ interface(`corenet_sendrecv_radsec_client_packets',`
28379 ## </param>
28380 ## <infoflow type="none"/>
28381 #
28382 -interface(`corenet_dontaudit_sendrecv_radsec_client_packets',`
28383 - corenet_dontaudit_send_radsec_client_packets($1)
28384 - corenet_dontaudit_receive_radsec_client_packets($1)
28385 +interface(`corenet_dontaudit_sendrecv_repository_client_packets',`
28386 + corenet_dontaudit_send_repository_client_packets($1)
28387 + corenet_dontaudit_receive_repository_client_packets($1)
28388 ')
28389
28390 ########################################
28391 ## <summary>
28392 -## Relabel packets to radsec_client the packet type.
28393 +## Relabel packets to repository_client the packet type.
28394 ## </summary>
28395 ## <param name="domain">
28396 ## <summary>
28397 @@ -70800,18 +73901,18 @@ interface(`corenet_dontaudit_sendrecv_radsec_client_packets',`
28398 ## </summary>
28399 ## </param>
28400 #
28401 -interface(`corenet_relabelto_radsec_client_packets',`
28402 +interface(`corenet_relabelto_repository_client_packets',`
28403 gen_require(`
28404 - type radsec_client_packet_t;
28405 + type repository_client_packet_t;
28406 ')
28407
28408 - allow $1 radsec_client_packet_t:packet relabelto;
28409 + allow $1 repository_client_packet_t:packet relabelto;
28410 ')
28411
28412
28413 ########################################
28414 ## <summary>
28415 -## Send radsec_server packets.
28416 +## Send repository_server packets.
28417 ## </summary>
28418 ## <param name="domain">
28419 ## <summary>
28420 @@ -70820,17 +73921,17 @@ interface(`corenet_relabelto_radsec_client_packets',`
28421 ## </param>
28422 ## <infoflow type="write" weight="10"/>
28423 #
28424 -interface(`corenet_send_radsec_server_packets',`
28425 +interface(`corenet_send_repository_server_packets',`
28426 gen_require(`
28427 - type radsec_server_packet_t;
28428 + type repository_server_packet_t;
28429 ')
28430
28431 - allow $1 radsec_server_packet_t:packet send;
28432 + allow $1 repository_server_packet_t:packet send;
28433 ')
28434
28435 ########################################
28436 ## <summary>
28437 -## Do not audit attempts to send radsec_server packets.
28438 +## Do not audit attempts to send repository_server packets.
28439 ## </summary>
28440 ## <param name="domain">
28441 ## <summary>
28442 @@ -70839,17 +73940,17 @@ interface(`corenet_send_radsec_server_packets',`
28443 ## </param>
28444 ## <infoflow type="none"/>
28445 #
28446 -interface(`corenet_dontaudit_send_radsec_server_packets',`
28447 +interface(`corenet_dontaudit_send_repository_server_packets',`
28448 gen_require(`
28449 - type radsec_server_packet_t;
28450 + type repository_server_packet_t;
28451 ')
28452
28453 - dontaudit $1 radsec_server_packet_t:packet send;
28454 + dontaudit $1 repository_server_packet_t:packet send;
28455 ')
28456
28457 ########################################
28458 ## <summary>
28459 -## Receive radsec_server packets.
28460 +## Receive repository_server packets.
28461 ## </summary>
28462 ## <param name="domain">
28463 ## <summary>
28464 @@ -70858,17 +73959,17 @@ interface(`corenet_dontaudit_send_radsec_server_packets',`
28465 ## </param>
28466 ## <infoflow type="read" weight="10"/>
28467 #
28468 -interface(`corenet_receive_radsec_server_packets',`
28469 +interface(`corenet_receive_repository_server_packets',`
28470 gen_require(`
28471 - type radsec_server_packet_t;
28472 + type repository_server_packet_t;
28473 ')
28474
28475 - allow $1 radsec_server_packet_t:packet recv;
28476 + allow $1 repository_server_packet_t:packet recv;
28477 ')
28478
28479 ########################################
28480 ## <summary>
28481 -## Do not audit attempts to receive radsec_server packets.
28482 +## Do not audit attempts to receive repository_server packets.
28483 ## </summary>
28484 ## <param name="domain">
28485 ## <summary>
28486 @@ -70877,17 +73978,17 @@ interface(`corenet_receive_radsec_server_packets',`
28487 ## </param>
28488 ## <infoflow type="none"/>
28489 #
28490 -interface(`corenet_dontaudit_receive_radsec_server_packets',`
28491 +interface(`corenet_dontaudit_receive_repository_server_packets',`
28492 gen_require(`
28493 - type radsec_server_packet_t;
28494 + type repository_server_packet_t;
28495 ')
28496
28497 - dontaudit $1 radsec_server_packet_t:packet recv;
28498 + dontaudit $1 repository_server_packet_t:packet recv;
28499 ')
28500
28501 ########################################
28502 ## <summary>
28503 -## Send and receive radsec_server packets.
28504 +## Send and receive repository_server packets.
28505 ## </summary>
28506 ## <param name="domain">
28507 ## <summary>
28508 @@ -70896,14 +73997,14 @@ interface(`corenet_dontaudit_receive_radsec_server_packets',`
28509 ## </param>
28510 ## <infoflow type="both" weight="10"/>
28511 #
28512 -interface(`corenet_sendrecv_radsec_server_packets',`
28513 - corenet_send_radsec_server_packets($1)
28514 - corenet_receive_radsec_server_packets($1)
28515 +interface(`corenet_sendrecv_repository_server_packets',`
28516 + corenet_send_repository_server_packets($1)
28517 + corenet_receive_repository_server_packets($1)
28518 ')
28519
28520 ########################################
28521 ## <summary>
28522 -## Do not audit attempts to send and receive radsec_server packets.
28523 +## Do not audit attempts to send and receive repository_server packets.
28524 ## </summary>
28525 ## <param name="domain">
28526 ## <summary>
28527 @@ -70912,14 +74013,14 @@ interface(`corenet_sendrecv_radsec_server_packets',`
28528 ## </param>
28529 ## <infoflow type="none"/>
28530 #
28531 -interface(`corenet_dontaudit_sendrecv_radsec_server_packets',`
28532 - corenet_dontaudit_send_radsec_server_packets($1)
28533 - corenet_dontaudit_receive_radsec_server_packets($1)
28534 +interface(`corenet_dontaudit_sendrecv_repository_server_packets',`
28535 + corenet_dontaudit_send_repository_server_packets($1)
28536 + corenet_dontaudit_receive_repository_server_packets($1)
28537 ')
28538
28539 ########################################
28540 ## <summary>
28541 -## Relabel packets to radsec_server the packet type.
28542 +## Relabel packets to repository_server the packet type.
28543 ## </summary>
28544 ## <param name="domain">
28545 ## <summary>
28546 @@ -70927,12 +74028,12 @@ interface(`corenet_dontaudit_sendrecv_radsec_server_packets',`
28547 ## </summary>
28548 ## </param>
28549 #
28550 -interface(`corenet_relabelto_radsec_server_packets',`
28551 +interface(`corenet_relabelto_repository_server_packets',`
28552 gen_require(`
28553 - type radsec_server_packet_t;
28554 + type repository_server_packet_t;
28555 ')
28556
28557 - allow $1 radsec_server_packet_t:packet relabelto;
28558 + allow $1 repository_server_packet_t:packet relabelto;
28559 ')
28560
28561
28562 @@ -70940,7 +74041,7 @@ interface(`corenet_relabelto_radsec_server_packets',`
28563
28564 ########################################
28565 ## <summary>
28566 -## Send and receive TCP traffic on the razor port.
28567 +## Send and receive TCP traffic on the ricci port.
28568 ## </summary>
28569 ## <param name="domain">
28570 ## <summary>
28571 @@ -70949,17 +74050,17 @@ interface(`corenet_relabelto_radsec_server_packets',`
28572 ## </param>
28573 ## <infoflow type="both" weight="10"/>
28574 #
28575 -interface(`corenet_tcp_sendrecv_razor_port',`
28576 +interface(`corenet_tcp_sendrecv_ricci_port',`
28577 gen_require(`
28578 - type razor_port_t;
28579 + type ricci_port_t;
28580 ')
28581
28582 - allow $1 razor_port_t:tcp_socket { send_msg recv_msg };
28583 + allow $1 ricci_port_t:tcp_socket { send_msg recv_msg };
28584 ')
28585
28586 ########################################
28587 ## <summary>
28588 -## Send UDP traffic on the razor port.
28589 +## Send UDP traffic on the ricci port.
28590 ## </summary>
28591 ## <param name="domain">
28592 ## <summary>
28593 @@ -70968,17 +74069,17 @@ interface(`corenet_tcp_sendrecv_razor_port',`
28594 ## </param>
28595 ## <infoflow type="write" weight="10"/>
28596 #
28597 -interface(`corenet_udp_send_razor_port',`
28598 +interface(`corenet_udp_send_ricci_port',`
28599 gen_require(`
28600 - type razor_port_t;
28601 + type ricci_port_t;
28602 ')
28603
28604 - allow $1 razor_port_t:udp_socket send_msg;
28605 + allow $1 ricci_port_t:udp_socket send_msg;
28606 ')
28607
28608 ########################################
28609 ## <summary>
28610 -## Do not audit attempts to send UDP traffic on the razor port.
28611 +## Do not audit attempts to send UDP traffic on the ricci port.
28612 ## </summary>
28613 ## <param name="domain">
28614 ## <summary>
28615 @@ -70987,17 +74088,17 @@ interface(`corenet_udp_send_razor_port',`
28616 ## </param>
28617 ## <infoflow type="none"/>
28618 #
28619 -interface(`corenet_dontaudit_udp_send_razor_port',`
28620 +interface(`corenet_dontaudit_udp_send_ricci_port',`
28621 gen_require(`
28622 - type razor_port_t;
28623 + type ricci_port_t;
28624 ')
28625
28626 - dontaudit $1 razor_port_t:udp_socket send_msg;
28627 + dontaudit $1 ricci_port_t:udp_socket send_msg;
28628 ')
28629
28630 ########################################
28631 ## <summary>
28632 -## Receive UDP traffic on the razor port.
28633 +## Receive UDP traffic on the ricci port.
28634 ## </summary>
28635 ## <param name="domain">
28636 ## <summary>
28637 @@ -71006,17 +74107,17 @@ interface(`corenet_dontaudit_udp_send_razor_port',`
28638 ## </param>
28639 ## <infoflow type="read" weight="10"/>
28640 #
28641 -interface(`corenet_udp_receive_razor_port',`
28642 +interface(`corenet_udp_receive_ricci_port',`
28643 gen_require(`
28644 - type razor_port_t;
28645 + type ricci_port_t;
28646 ')
28647
28648 - allow $1 razor_port_t:udp_socket recv_msg;
28649 + allow $1 ricci_port_t:udp_socket recv_msg;
28650 ')
28651
28652 ########################################
28653 ## <summary>
28654 -## Do not audit attempts to receive UDP traffic on the razor port.
28655 +## Do not audit attempts to receive UDP traffic on the ricci port.
28656 ## </summary>
28657 ## <param name="domain">
28658 ## <summary>
28659 @@ -71025,17 +74126,17 @@ interface(`corenet_udp_receive_razor_port',`
28660 ## </param>
28661 ## <infoflow type="none"/>
28662 #
28663 -interface(`corenet_dontaudit_udp_receive_razor_port',`
28664 +interface(`corenet_dontaudit_udp_receive_ricci_port',`
28665 gen_require(`
28666 - type razor_port_t;
28667 + type ricci_port_t;
28668 ')
28669
28670 - dontaudit $1 razor_port_t:udp_socket recv_msg;
28671 + dontaudit $1 ricci_port_t:udp_socket recv_msg;
28672 ')
28673
28674 ########################################
28675 ## <summary>
28676 -## Send and receive UDP traffic on the razor port.
28677 +## Send and receive UDP traffic on the ricci port.
28678 ## </summary>
28679 ## <param name="domain">
28680 ## <summary>
28681 @@ -71044,15 +74145,15 @@ interface(`corenet_dontaudit_udp_receive_razor_port',`
28682 ## </param>
28683 ## <infoflow type="both" weight="10"/>
28684 #
28685 -interface(`corenet_udp_sendrecv_razor_port',`
28686 - corenet_udp_send_razor_port($1)
28687 - corenet_udp_receive_razor_port($1)
28688 +interface(`corenet_udp_sendrecv_ricci_port',`
28689 + corenet_udp_send_ricci_port($1)
28690 + corenet_udp_receive_ricci_port($1)
28691 ')
28692
28693 ########################################
28694 ## <summary>
28695 ## Do not audit attempts to send and receive
28696 -## UDP traffic on the razor port.
28697 +## UDP traffic on the ricci port.
28698 ## </summary>
28699 ## <param name="domain">
28700 ## <summary>
28701 @@ -71061,14 +74162,14 @@ interface(`corenet_udp_sendrecv_razor_port',`
28702 ## </param>
28703 ## <infoflow type="none"/>
28704 #
28705 -interface(`corenet_dontaudit_udp_sendrecv_razor_port',`
28706 - corenet_dontaudit_udp_send_razor_port($1)
28707 - corenet_dontaudit_udp_receive_razor_port($1)
28708 +interface(`corenet_dontaudit_udp_sendrecv_ricci_port',`
28709 + corenet_dontaudit_udp_send_ricci_port($1)
28710 + corenet_dontaudit_udp_receive_ricci_port($1)
28711 ')
28712
28713 ########################################
28714 ## <summary>
28715 -## Bind TCP sockets to the razor port.
28716 +## Bind TCP sockets to the ricci port.
28717 ## </summary>
28718 ## <param name="domain">
28719 ## <summary>
28720 @@ -71077,18 +74178,18 @@ interface(`corenet_dontaudit_udp_sendrecv_razor_port',`
28721 ## </param>
28722 ## <infoflow type="none"/>
28723 #
28724 -interface(`corenet_tcp_bind_razor_port',`
28725 +interface(`corenet_tcp_bind_ricci_port',`
28726 gen_require(`
28727 - type razor_port_t;
28728 + type ricci_port_t;
28729 ')
28730
28731 - allow $1 razor_port_t:tcp_socket name_bind;
28732 + allow $1 ricci_port_t:tcp_socket name_bind;
28733
28734 ')
28735
28736 ########################################
28737 ## <summary>
28738 -## Bind UDP sockets to the razor port.
28739 +## Bind UDP sockets to the ricci port.
28740 ## </summary>
28741 ## <param name="domain">
28742 ## <summary>
28743 @@ -71097,18 +74198,18 @@ interface(`corenet_tcp_bind_razor_port',`
28744 ## </param>
28745 ## <infoflow type="none"/>
28746 #
28747 -interface(`corenet_udp_bind_razor_port',`
28748 +interface(`corenet_udp_bind_ricci_port',`
28749 gen_require(`
28750 - type razor_port_t;
28751 + type ricci_port_t;
28752 ')
28753
28754 - allow $1 razor_port_t:udp_socket name_bind;
28755 + allow $1 ricci_port_t:udp_socket name_bind;
28756
28757 ')
28758
28759 ########################################
28760 ## <summary>
28761 -## Make a TCP connection to the razor port.
28762 +## Make a TCP connection to the ricci port.
28763 ## </summary>
28764 ## <param name="domain">
28765 ## <summary>
28766 @@ -71116,18 +74217,18 @@ interface(`corenet_udp_bind_razor_port',`
28767 ## </summary>
28768 ## </param>
28769 #
28770 -interface(`corenet_tcp_connect_razor_port',`
28771 +interface(`corenet_tcp_connect_ricci_port',`
28772 gen_require(`
28773 - type razor_port_t;
28774 + type ricci_port_t;
28775 ')
28776
28777 - allow $1 razor_port_t:tcp_socket name_connect;
28778 + allow $1 ricci_port_t:tcp_socket name_connect;
28779 ')
28780
28781
28782 ########################################
28783 ## <summary>
28784 -## Send razor_client packets.
28785 +## Send ricci_client packets.
28786 ## </summary>
28787 ## <param name="domain">
28788 ## <summary>
28789 @@ -71136,17 +74237,17 @@ interface(`corenet_tcp_connect_razor_port',`
28790 ## </param>
28791 ## <infoflow type="write" weight="10"/>
28792 #
28793 -interface(`corenet_send_razor_client_packets',`
28794 +interface(`corenet_send_ricci_client_packets',`
28795 gen_require(`
28796 - type razor_client_packet_t;
28797 + type ricci_client_packet_t;
28798 ')
28799
28800 - allow $1 razor_client_packet_t:packet send;
28801 + allow $1 ricci_client_packet_t:packet send;
28802 ')
28803
28804 ########################################
28805 ## <summary>
28806 -## Do not audit attempts to send razor_client packets.
28807 +## Do not audit attempts to send ricci_client packets.
28808 ## </summary>
28809 ## <param name="domain">
28810 ## <summary>
28811 @@ -71155,17 +74256,17 @@ interface(`corenet_send_razor_client_packets',`
28812 ## </param>
28813 ## <infoflow type="none"/>
28814 #
28815 -interface(`corenet_dontaudit_send_razor_client_packets',`
28816 +interface(`corenet_dontaudit_send_ricci_client_packets',`
28817 gen_require(`
28818 - type razor_client_packet_t;
28819 + type ricci_client_packet_t;
28820 ')
28821
28822 - dontaudit $1 razor_client_packet_t:packet send;
28823 + dontaudit $1 ricci_client_packet_t:packet send;
28824 ')
28825
28826 ########################################
28827 ## <summary>
28828 -## Receive razor_client packets.
28829 +## Receive ricci_client packets.
28830 ## </summary>
28831 ## <param name="domain">
28832 ## <summary>
28833 @@ -71174,17 +74275,17 @@ interface(`corenet_dontaudit_send_razor_client_packets',`
28834 ## </param>
28835 ## <infoflow type="read" weight="10"/>
28836 #
28837 -interface(`corenet_receive_razor_client_packets',`
28838 +interface(`corenet_receive_ricci_client_packets',`
28839 gen_require(`
28840 - type razor_client_packet_t;
28841 + type ricci_client_packet_t;
28842 ')
28843
28844 - allow $1 razor_client_packet_t:packet recv;
28845 + allow $1 ricci_client_packet_t:packet recv;
28846 ')
28847
28848 ########################################
28849 ## <summary>
28850 -## Do not audit attempts to receive razor_client packets.
28851 +## Do not audit attempts to receive ricci_client packets.
28852 ## </summary>
28853 ## <param name="domain">
28854 ## <summary>
28855 @@ -71193,17 +74294,17 @@ interface(`corenet_receive_razor_client_packets',`
28856 ## </param>
28857 ## <infoflow type="none"/>
28858 #
28859 -interface(`corenet_dontaudit_receive_razor_client_packets',`
28860 +interface(`corenet_dontaudit_receive_ricci_client_packets',`
28861 gen_require(`
28862 - type razor_client_packet_t;
28863 + type ricci_client_packet_t;
28864 ')
28865
28866 - dontaudit $1 razor_client_packet_t:packet recv;
28867 + dontaudit $1 ricci_client_packet_t:packet recv;
28868 ')
28869
28870 ########################################
28871 ## <summary>
28872 -## Send and receive razor_client packets.
28873 +## Send and receive ricci_client packets.
28874 ## </summary>
28875 ## <param name="domain">
28876 ## <summary>
28877 @@ -71212,14 +74313,14 @@ interface(`corenet_dontaudit_receive_razor_client_packets',`
28878 ## </param>
28879 ## <infoflow type="both" weight="10"/>
28880 #
28881 -interface(`corenet_sendrecv_razor_client_packets',`
28882 - corenet_send_razor_client_packets($1)
28883 - corenet_receive_razor_client_packets($1)
28884 +interface(`corenet_sendrecv_ricci_client_packets',`
28885 + corenet_send_ricci_client_packets($1)
28886 + corenet_receive_ricci_client_packets($1)
28887 ')
28888
28889 ########################################
28890 ## <summary>
28891 -## Do not audit attempts to send and receive razor_client packets.
28892 +## Do not audit attempts to send and receive ricci_client packets.
28893 ## </summary>
28894 ## <param name="domain">
28895 ## <summary>
28896 @@ -71228,14 +74329,14 @@ interface(`corenet_sendrecv_razor_client_packets',`
28897 ## </param>
28898 ## <infoflow type="none"/>
28899 #
28900 -interface(`corenet_dontaudit_sendrecv_razor_client_packets',`
28901 - corenet_dontaudit_send_razor_client_packets($1)
28902 - corenet_dontaudit_receive_razor_client_packets($1)
28903 +interface(`corenet_dontaudit_sendrecv_ricci_client_packets',`
28904 + corenet_dontaudit_send_ricci_client_packets($1)
28905 + corenet_dontaudit_receive_ricci_client_packets($1)
28906 ')
28907
28908 ########################################
28909 ## <summary>
28910 -## Relabel packets to razor_client the packet type.
28911 +## Relabel packets to ricci_client the packet type.
28912 ## </summary>
28913 ## <param name="domain">
28914 ## <summary>
28915 @@ -71243,18 +74344,18 @@ interface(`corenet_dontaudit_sendrecv_razor_client_packets',`
28916 ## </summary>
28917 ## </param>
28918 #
28919 -interface(`corenet_relabelto_razor_client_packets',`
28920 +interface(`corenet_relabelto_ricci_client_packets',`
28921 gen_require(`
28922 - type razor_client_packet_t;
28923 + type ricci_client_packet_t;
28924 ')
28925
28926 - allow $1 razor_client_packet_t:packet relabelto;
28927 + allow $1 ricci_client_packet_t:packet relabelto;
28928 ')
28929
28930
28931 ########################################
28932 ## <summary>
28933 -## Send razor_server packets.
28934 +## Send ricci_server packets.
28935 ## </summary>
28936 ## <param name="domain">
28937 ## <summary>
28938 @@ -71263,17 +74364,17 @@ interface(`corenet_relabelto_razor_client_packets',`
28939 ## </param>
28940 ## <infoflow type="write" weight="10"/>
28941 #
28942 -interface(`corenet_send_razor_server_packets',`
28943 +interface(`corenet_send_ricci_server_packets',`
28944 gen_require(`
28945 - type razor_server_packet_t;
28946 + type ricci_server_packet_t;
28947 ')
28948
28949 - allow $1 razor_server_packet_t:packet send;
28950 + allow $1 ricci_server_packet_t:packet send;
28951 ')
28952
28953 ########################################
28954 ## <summary>
28955 -## Do not audit attempts to send razor_server packets.
28956 +## Do not audit attempts to send ricci_server packets.
28957 ## </summary>
28958 ## <param name="domain">
28959 ## <summary>
28960 @@ -71282,17 +74383,17 @@ interface(`corenet_send_razor_server_packets',`
28961 ## </param>
28962 ## <infoflow type="none"/>
28963 #
28964 -interface(`corenet_dontaudit_send_razor_server_packets',`
28965 +interface(`corenet_dontaudit_send_ricci_server_packets',`
28966 gen_require(`
28967 - type razor_server_packet_t;
28968 + type ricci_server_packet_t;
28969 ')
28970
28971 - dontaudit $1 razor_server_packet_t:packet send;
28972 + dontaudit $1 ricci_server_packet_t:packet send;
28973 ')
28974
28975 ########################################
28976 ## <summary>
28977 -## Receive razor_server packets.
28978 +## Receive ricci_server packets.
28979 ## </summary>
28980 ## <param name="domain">
28981 ## <summary>
28982 @@ -71301,17 +74402,17 @@ interface(`corenet_dontaudit_send_razor_server_packets',`
28983 ## </param>
28984 ## <infoflow type="read" weight="10"/>
28985 #
28986 -interface(`corenet_receive_razor_server_packets',`
28987 +interface(`corenet_receive_ricci_server_packets',`
28988 gen_require(`
28989 - type razor_server_packet_t;
28990 + type ricci_server_packet_t;
28991 ')
28992
28993 - allow $1 razor_server_packet_t:packet recv;
28994 + allow $1 ricci_server_packet_t:packet recv;
28995 ')
28996
28997 ########################################
28998 ## <summary>
28999 -## Do not audit attempts to receive razor_server packets.
29000 +## Do not audit attempts to receive ricci_server packets.
29001 ## </summary>
29002 ## <param name="domain">
29003 ## <summary>
29004 @@ -71320,17 +74421,17 @@ interface(`corenet_receive_razor_server_packets',`
29005 ## </param>
29006 ## <infoflow type="none"/>
29007 #
29008 -interface(`corenet_dontaudit_receive_razor_server_packets',`
29009 +interface(`corenet_dontaudit_receive_ricci_server_packets',`
29010 gen_require(`
29011 - type razor_server_packet_t;
29012 + type ricci_server_packet_t;
29013 ')
29014
29015 - dontaudit $1 razor_server_packet_t:packet recv;
29016 + dontaudit $1 ricci_server_packet_t:packet recv;
29017 ')
29018
29019 ########################################
29020 ## <summary>
29021 -## Send and receive razor_server packets.
29022 +## Send and receive ricci_server packets.
29023 ## </summary>
29024 ## <param name="domain">
29025 ## <summary>
29026 @@ -71339,14 +74440,14 @@ interface(`corenet_dontaudit_receive_razor_server_packets',`
29027 ## </param>
29028 ## <infoflow type="both" weight="10"/>
29029 #
29030 -interface(`corenet_sendrecv_razor_server_packets',`
29031 - corenet_send_razor_server_packets($1)
29032 - corenet_receive_razor_server_packets($1)
29033 +interface(`corenet_sendrecv_ricci_server_packets',`
29034 + corenet_send_ricci_server_packets($1)
29035 + corenet_receive_ricci_server_packets($1)
29036 ')
29037
29038 ########################################
29039 ## <summary>
29040 -## Do not audit attempts to send and receive razor_server packets.
29041 +## Do not audit attempts to send and receive ricci_server packets.
29042 ## </summary>
29043 ## <param name="domain">
29044 ## <summary>
29045 @@ -71355,14 +74456,14 @@ interface(`corenet_sendrecv_razor_server_packets',`
29046 ## </param>
29047 ## <infoflow type="none"/>
29048 #
29049 -interface(`corenet_dontaudit_sendrecv_razor_server_packets',`
29050 - corenet_dontaudit_send_razor_server_packets($1)
29051 - corenet_dontaudit_receive_razor_server_packets($1)
29052 +interface(`corenet_dontaudit_sendrecv_ricci_server_packets',`
29053 + corenet_dontaudit_send_ricci_server_packets($1)
29054 + corenet_dontaudit_receive_ricci_server_packets($1)
29055 ')
29056
29057 ########################################
29058 ## <summary>
29059 -## Relabel packets to razor_server the packet type.
29060 +## Relabel packets to ricci_server the packet type.
29061 ## </summary>
29062 ## <param name="domain">
29063 ## <summary>
29064 @@ -71370,12 +74471,12 @@ interface(`corenet_dontaudit_sendrecv_razor_server_packets',`
29065 ## </summary>
29066 ## </param>
29067 #
29068 -interface(`corenet_relabelto_razor_server_packets',`
29069 +interface(`corenet_relabelto_ricci_server_packets',`
29070 gen_require(`
29071 - type razor_server_packet_t;
29072 + type ricci_server_packet_t;
29073 ')
29074
29075 - allow $1 razor_server_packet_t:packet relabelto;
29076 + allow $1 ricci_server_packet_t:packet relabelto;
29077 ')
29078
29079
29080 @@ -71383,7 +74484,7 @@ interface(`corenet_relabelto_razor_server_packets',`
29081
29082 ########################################
29083 ## <summary>
29084 -## Send and receive TCP traffic on the redis port.
29085 +## Send and receive TCP traffic on the ricci_modcluster port.
29086 ## </summary>
29087 ## <param name="domain">
29088 ## <summary>
29089 @@ -71392,17 +74493,17 @@ interface(`corenet_relabelto_razor_server_packets',`
29090 ## </param>
29091 ## <infoflow type="both" weight="10"/>
29092 #
29093 -interface(`corenet_tcp_sendrecv_redis_port',`
29094 +interface(`corenet_tcp_sendrecv_ricci_modcluster_port',`
29095 gen_require(`
29096 - type redis_port_t;
29097 + type ricci_modcluster_port_t;
29098 ')
29099
29100 - allow $1 redis_port_t:tcp_socket { send_msg recv_msg };
29101 + allow $1 ricci_modcluster_port_t:tcp_socket { send_msg recv_msg };
29102 ')
29103
29104 ########################################
29105 ## <summary>
29106 -## Send UDP traffic on the redis port.
29107 +## Send UDP traffic on the ricci_modcluster port.
29108 ## </summary>
29109 ## <param name="domain">
29110 ## <summary>
29111 @@ -71411,17 +74512,17 @@ interface(`corenet_tcp_sendrecv_redis_port',`
29112 ## </param>
29113 ## <infoflow type="write" weight="10"/>
29114 #
29115 -interface(`corenet_udp_send_redis_port',`
29116 +interface(`corenet_udp_send_ricci_modcluster_port',`
29117 gen_require(`
29118 - type redis_port_t;
29119 + type ricci_modcluster_port_t;
29120 ')
29121
29122 - allow $1 redis_port_t:udp_socket send_msg;
29123 + allow $1 ricci_modcluster_port_t:udp_socket send_msg;
29124 ')
29125
29126 ########################################
29127 ## <summary>
29128 -## Do not audit attempts to send UDP traffic on the redis port.
29129 +## Do not audit attempts to send UDP traffic on the ricci_modcluster port.
29130 ## </summary>
29131 ## <param name="domain">
29132 ## <summary>
29133 @@ -71430,17 +74531,17 @@ interface(`corenet_udp_send_redis_port',`
29134 ## </param>
29135 ## <infoflow type="none"/>
29136 #
29137 -interface(`corenet_dontaudit_udp_send_redis_port',`
29138 +interface(`corenet_dontaudit_udp_send_ricci_modcluster_port',`
29139 gen_require(`
29140 - type redis_port_t;
29141 + type ricci_modcluster_port_t;
29142 ')
29143
29144 - dontaudit $1 redis_port_t:udp_socket send_msg;
29145 + dontaudit $1 ricci_modcluster_port_t:udp_socket send_msg;
29146 ')
29147
29148 ########################################
29149 ## <summary>
29150 -## Receive UDP traffic on the redis port.
29151 +## Receive UDP traffic on the ricci_modcluster port.
29152 ## </summary>
29153 ## <param name="domain">
29154 ## <summary>
29155 @@ -71449,17 +74550,17 @@ interface(`corenet_dontaudit_udp_send_redis_port',`
29156 ## </param>
29157 ## <infoflow type="read" weight="10"/>
29158 #
29159 -interface(`corenet_udp_receive_redis_port',`
29160 +interface(`corenet_udp_receive_ricci_modcluster_port',`
29161 gen_require(`
29162 - type redis_port_t;
29163 + type ricci_modcluster_port_t;
29164 ')
29165
29166 - allow $1 redis_port_t:udp_socket recv_msg;
29167 + allow $1 ricci_modcluster_port_t:udp_socket recv_msg;
29168 ')
29169
29170 ########################################
29171 ## <summary>
29172 -## Do not audit attempts to receive UDP traffic on the redis port.
29173 +## Do not audit attempts to receive UDP traffic on the ricci_modcluster port.
29174 ## </summary>
29175 ## <param name="domain">
29176 ## <summary>
29177 @@ -71468,17 +74569,17 @@ interface(`corenet_udp_receive_redis_port',`
29178 ## </param>
29179 ## <infoflow type="none"/>
29180 #
29181 -interface(`corenet_dontaudit_udp_receive_redis_port',`
29182 +interface(`corenet_dontaudit_udp_receive_ricci_modcluster_port',`
29183 gen_require(`
29184 - type redis_port_t;
29185 + type ricci_modcluster_port_t;
29186 ')
29187
29188 - dontaudit $1 redis_port_t:udp_socket recv_msg;
29189 + dontaudit $1 ricci_modcluster_port_t:udp_socket recv_msg;
29190 ')
29191
29192 ########################################
29193 ## <summary>
29194 -## Send and receive UDP traffic on the redis port.
29195 +## Send and receive UDP traffic on the ricci_modcluster port.
29196 ## </summary>
29197 ## <param name="domain">
29198 ## <summary>
29199 @@ -71487,15 +74588,15 @@ interface(`corenet_dontaudit_udp_receive_redis_port',`
29200 ## </param>
29201 ## <infoflow type="both" weight="10"/>
29202 #
29203 -interface(`corenet_udp_sendrecv_redis_port',`
29204 - corenet_udp_send_redis_port($1)
29205 - corenet_udp_receive_redis_port($1)
29206 +interface(`corenet_udp_sendrecv_ricci_modcluster_port',`
29207 + corenet_udp_send_ricci_modcluster_port($1)
29208 + corenet_udp_receive_ricci_modcluster_port($1)
29209 ')
29210
29211 ########################################
29212 ## <summary>
29213 ## Do not audit attempts to send and receive
29214 -## UDP traffic on the redis port.
29215 +## UDP traffic on the ricci_modcluster port.
29216 ## </summary>
29217 ## <param name="domain">
29218 ## <summary>
29219 @@ -71504,14 +74605,14 @@ interface(`corenet_udp_sendrecv_redis_port',`
29220 ## </param>
29221 ## <infoflow type="none"/>
29222 #
29223 -interface(`corenet_dontaudit_udp_sendrecv_redis_port',`
29224 - corenet_dontaudit_udp_send_redis_port($1)
29225 - corenet_dontaudit_udp_receive_redis_port($1)
29226 +interface(`corenet_dontaudit_udp_sendrecv_ricci_modcluster_port',`
29227 + corenet_dontaudit_udp_send_ricci_modcluster_port($1)
29228 + corenet_dontaudit_udp_receive_ricci_modcluster_port($1)
29229 ')
29230
29231 ########################################
29232 ## <summary>
29233 -## Bind TCP sockets to the redis port.
29234 +## Bind TCP sockets to the ricci_modcluster port.
29235 ## </summary>
29236 ## <param name="domain">
29237 ## <summary>
29238 @@ -71520,18 +74621,18 @@ interface(`corenet_dontaudit_udp_sendrecv_redis_port',`
29239 ## </param>
29240 ## <infoflow type="none"/>
29241 #
29242 -interface(`corenet_tcp_bind_redis_port',`
29243 +interface(`corenet_tcp_bind_ricci_modcluster_port',`
29244 gen_require(`
29245 - type redis_port_t;
29246 + type ricci_modcluster_port_t;
29247 ')
29248
29249 - allow $1 redis_port_t:tcp_socket name_bind;
29250 + allow $1 ricci_modcluster_port_t:tcp_socket name_bind;
29251
29252 ')
29253
29254 ########################################
29255 ## <summary>
29256 -## Bind UDP sockets to the redis port.
29257 +## Bind UDP sockets to the ricci_modcluster port.
29258 ## </summary>
29259 ## <param name="domain">
29260 ## <summary>
29261 @@ -71540,18 +74641,18 @@ interface(`corenet_tcp_bind_redis_port',`
29262 ## </param>
29263 ## <infoflow type="none"/>
29264 #
29265 -interface(`corenet_udp_bind_redis_port',`
29266 +interface(`corenet_udp_bind_ricci_modcluster_port',`
29267 gen_require(`
29268 - type redis_port_t;
29269 + type ricci_modcluster_port_t;
29270 ')
29271
29272 - allow $1 redis_port_t:udp_socket name_bind;
29273 + allow $1 ricci_modcluster_port_t:udp_socket name_bind;
29274
29275 ')
29276
29277 ########################################
29278 ## <summary>
29279 -## Make a TCP connection to the redis port.
29280 +## Make a TCP connection to the ricci_modcluster port.
29281 ## </summary>
29282 ## <param name="domain">
29283 ## <summary>
29284 @@ -71559,18 +74660,18 @@ interface(`corenet_udp_bind_redis_port',`
29285 ## </summary>
29286 ## </param>
29287 #
29288 -interface(`corenet_tcp_connect_redis_port',`
29289 +interface(`corenet_tcp_connect_ricci_modcluster_port',`
29290 gen_require(`
29291 - type redis_port_t;
29292 + type ricci_modcluster_port_t;
29293 ')
29294
29295 - allow $1 redis_port_t:tcp_socket name_connect;
29296 + allow $1 ricci_modcluster_port_t:tcp_socket name_connect;
29297 ')
29298
29299
29300 ########################################
29301 ## <summary>
29302 -## Send redis_client packets.
29303 +## Send ricci_modcluster_client packets.
29304 ## </summary>
29305 ## <param name="domain">
29306 ## <summary>
29307 @@ -71579,17 +74680,17 @@ interface(`corenet_tcp_connect_redis_port',`
29308 ## </param>
29309 ## <infoflow type="write" weight="10"/>
29310 #
29311 -interface(`corenet_send_redis_client_packets',`
29312 +interface(`corenet_send_ricci_modcluster_client_packets',`
29313 gen_require(`
29314 - type redis_client_packet_t;
29315 + type ricci_modcluster_client_packet_t;
29316 ')
29317
29318 - allow $1 redis_client_packet_t:packet send;
29319 + allow $1 ricci_modcluster_client_packet_t:packet send;
29320 ')
29321
29322 ########################################
29323 ## <summary>
29324 -## Do not audit attempts to send redis_client packets.
29325 +## Do not audit attempts to send ricci_modcluster_client packets.
29326 ## </summary>
29327 ## <param name="domain">
29328 ## <summary>
29329 @@ -71598,17 +74699,17 @@ interface(`corenet_send_redis_client_packets',`
29330 ## </param>
29331 ## <infoflow type="none"/>
29332 #
29333 -interface(`corenet_dontaudit_send_redis_client_packets',`
29334 +interface(`corenet_dontaudit_send_ricci_modcluster_client_packets',`
29335 gen_require(`
29336 - type redis_client_packet_t;
29337 + type ricci_modcluster_client_packet_t;
29338 ')
29339
29340 - dontaudit $1 redis_client_packet_t:packet send;
29341 + dontaudit $1 ricci_modcluster_client_packet_t:packet send;
29342 ')
29343
29344 ########################################
29345 ## <summary>
29346 -## Receive redis_client packets.
29347 +## Receive ricci_modcluster_client packets.
29348 ## </summary>
29349 ## <param name="domain">
29350 ## <summary>
29351 @@ -71617,17 +74718,17 @@ interface(`corenet_dontaudit_send_redis_client_packets',`
29352 ## </param>
29353 ## <infoflow type="read" weight="10"/>
29354 #
29355 -interface(`corenet_receive_redis_client_packets',`
29356 +interface(`corenet_receive_ricci_modcluster_client_packets',`
29357 gen_require(`
29358 - type redis_client_packet_t;
29359 + type ricci_modcluster_client_packet_t;
29360 ')
29361
29362 - allow $1 redis_client_packet_t:packet recv;
29363 + allow $1 ricci_modcluster_client_packet_t:packet recv;
29364 ')
29365
29366 ########################################
29367 ## <summary>
29368 -## Do not audit attempts to receive redis_client packets.
29369 +## Do not audit attempts to receive ricci_modcluster_client packets.
29370 ## </summary>
29371 ## <param name="domain">
29372 ## <summary>
29373 @@ -71636,17 +74737,17 @@ interface(`corenet_receive_redis_client_packets',`
29374 ## </param>
29375 ## <infoflow type="none"/>
29376 #
29377 -interface(`corenet_dontaudit_receive_redis_client_packets',`
29378 +interface(`corenet_dontaudit_receive_ricci_modcluster_client_packets',`
29379 gen_require(`
29380 - type redis_client_packet_t;
29381 + type ricci_modcluster_client_packet_t;
29382 ')
29383
29384 - dontaudit $1 redis_client_packet_t:packet recv;
29385 + dontaudit $1 ricci_modcluster_client_packet_t:packet recv;
29386 ')
29387
29388 ########################################
29389 ## <summary>
29390 -## Send and receive redis_client packets.
29391 +## Send and receive ricci_modcluster_client packets.
29392 ## </summary>
29393 ## <param name="domain">
29394 ## <summary>
29395 @@ -71655,14 +74756,14 @@ interface(`corenet_dontaudit_receive_redis_client_packets',`
29396 ## </param>
29397 ## <infoflow type="both" weight="10"/>
29398 #
29399 -interface(`corenet_sendrecv_redis_client_packets',`
29400 - corenet_send_redis_client_packets($1)
29401 - corenet_receive_redis_client_packets($1)
29402 +interface(`corenet_sendrecv_ricci_modcluster_client_packets',`
29403 + corenet_send_ricci_modcluster_client_packets($1)
29404 + corenet_receive_ricci_modcluster_client_packets($1)
29405 ')
29406
29407 ########################################
29408 ## <summary>
29409 -## Do not audit attempts to send and receive redis_client packets.
29410 +## Do not audit attempts to send and receive ricci_modcluster_client packets.
29411 ## </summary>
29412 ## <param name="domain">
29413 ## <summary>
29414 @@ -71671,14 +74772,14 @@ interface(`corenet_sendrecv_redis_client_packets',`
29415 ## </param>
29416 ## <infoflow type="none"/>
29417 #
29418 -interface(`corenet_dontaudit_sendrecv_redis_client_packets',`
29419 - corenet_dontaudit_send_redis_client_packets($1)
29420 - corenet_dontaudit_receive_redis_client_packets($1)
29421 +interface(`corenet_dontaudit_sendrecv_ricci_modcluster_client_packets',`
29422 + corenet_dontaudit_send_ricci_modcluster_client_packets($1)
29423 + corenet_dontaudit_receive_ricci_modcluster_client_packets($1)
29424 ')
29425
29426 ########################################
29427 ## <summary>
29428 -## Relabel packets to redis_client the packet type.
29429 +## Relabel packets to ricci_modcluster_client the packet type.
29430 ## </summary>
29431 ## <param name="domain">
29432 ## <summary>
29433 @@ -71686,18 +74787,18 @@ interface(`corenet_dontaudit_sendrecv_redis_client_packets',`
29434 ## </summary>
29435 ## </param>
29436 #
29437 -interface(`corenet_relabelto_redis_client_packets',`
29438 +interface(`corenet_relabelto_ricci_modcluster_client_packets',`
29439 gen_require(`
29440 - type redis_client_packet_t;
29441 + type ricci_modcluster_client_packet_t;
29442 ')
29443
29444 - allow $1 redis_client_packet_t:packet relabelto;
29445 + allow $1 ricci_modcluster_client_packet_t:packet relabelto;
29446 ')
29447
29448
29449 ########################################
29450 ## <summary>
29451 -## Send redis_server packets.
29452 +## Send ricci_modcluster_server packets.
29453 ## </summary>
29454 ## <param name="domain">
29455 ## <summary>
29456 @@ -71706,17 +74807,17 @@ interface(`corenet_relabelto_redis_client_packets',`
29457 ## </param>
29458 ## <infoflow type="write" weight="10"/>
29459 #
29460 -interface(`corenet_send_redis_server_packets',`
29461 +interface(`corenet_send_ricci_modcluster_server_packets',`
29462 gen_require(`
29463 - type redis_server_packet_t;
29464 + type ricci_modcluster_server_packet_t;
29465 ')
29466
29467 - allow $1 redis_server_packet_t:packet send;
29468 + allow $1 ricci_modcluster_server_packet_t:packet send;
29469 ')
29470
29471 ########################################
29472 ## <summary>
29473 -## Do not audit attempts to send redis_server packets.
29474 +## Do not audit attempts to send ricci_modcluster_server packets.
29475 ## </summary>
29476 ## <param name="domain">
29477 ## <summary>
29478 @@ -71725,17 +74826,17 @@ interface(`corenet_send_redis_server_packets',`
29479 ## </param>
29480 ## <infoflow type="none"/>
29481 #
29482 -interface(`corenet_dontaudit_send_redis_server_packets',`
29483 +interface(`corenet_dontaudit_send_ricci_modcluster_server_packets',`
29484 gen_require(`
29485 - type redis_server_packet_t;
29486 + type ricci_modcluster_server_packet_t;
29487 ')
29488
29489 - dontaudit $1 redis_server_packet_t:packet send;
29490 + dontaudit $1 ricci_modcluster_server_packet_t:packet send;
29491 ')
29492
29493 ########################################
29494 ## <summary>
29495 -## Receive redis_server packets.
29496 +## Receive ricci_modcluster_server packets.
29497 ## </summary>
29498 ## <param name="domain">
29499 ## <summary>
29500 @@ -71744,17 +74845,17 @@ interface(`corenet_dontaudit_send_redis_server_packets',`
29501 ## </param>
29502 ## <infoflow type="read" weight="10"/>
29503 #
29504 -interface(`corenet_receive_redis_server_packets',`
29505 +interface(`corenet_receive_ricci_modcluster_server_packets',`
29506 gen_require(`
29507 - type redis_server_packet_t;
29508 + type ricci_modcluster_server_packet_t;
29509 ')
29510
29511 - allow $1 redis_server_packet_t:packet recv;
29512 + allow $1 ricci_modcluster_server_packet_t:packet recv;
29513 ')
29514
29515 ########################################
29516 ## <summary>
29517 -## Do not audit attempts to receive redis_server packets.
29518 +## Do not audit attempts to receive ricci_modcluster_server packets.
29519 ## </summary>
29520 ## <param name="domain">
29521 ## <summary>
29522 @@ -71763,17 +74864,17 @@ interface(`corenet_receive_redis_server_packets',`
29523 ## </param>
29524 ## <infoflow type="none"/>
29525 #
29526 -interface(`corenet_dontaudit_receive_redis_server_packets',`
29527 +interface(`corenet_dontaudit_receive_ricci_modcluster_server_packets',`
29528 gen_require(`
29529 - type redis_server_packet_t;
29530 + type ricci_modcluster_server_packet_t;
29531 ')
29532
29533 - dontaudit $1 redis_server_packet_t:packet recv;
29534 + dontaudit $1 ricci_modcluster_server_packet_t:packet recv;
29535 ')
29536
29537 ########################################
29538 ## <summary>
29539 -## Send and receive redis_server packets.
29540 +## Send and receive ricci_modcluster_server packets.
29541 ## </summary>
29542 ## <param name="domain">
29543 ## <summary>
29544 @@ -71782,14 +74883,14 @@ interface(`corenet_dontaudit_receive_redis_server_packets',`
29545 ## </param>
29546 ## <infoflow type="both" weight="10"/>
29547 #
29548 -interface(`corenet_sendrecv_redis_server_packets',`
29549 - corenet_send_redis_server_packets($1)
29550 - corenet_receive_redis_server_packets($1)
29551 +interface(`corenet_sendrecv_ricci_modcluster_server_packets',`
29552 + corenet_send_ricci_modcluster_server_packets($1)
29553 + corenet_receive_ricci_modcluster_server_packets($1)
29554 ')
29555
29556 ########################################
29557 ## <summary>
29558 -## Do not audit attempts to send and receive redis_server packets.
29559 +## Do not audit attempts to send and receive ricci_modcluster_server packets.
29560 ## </summary>
29561 ## <param name="domain">
29562 ## <summary>
29563 @@ -71798,14 +74899,14 @@ interface(`corenet_sendrecv_redis_server_packets',`
29564 ## </param>
29565 ## <infoflow type="none"/>
29566 #
29567 -interface(`corenet_dontaudit_sendrecv_redis_server_packets',`
29568 - corenet_dontaudit_send_redis_server_packets($1)
29569 - corenet_dontaudit_receive_redis_server_packets($1)
29570 +interface(`corenet_dontaudit_sendrecv_ricci_modcluster_server_packets',`
29571 + corenet_dontaudit_send_ricci_modcluster_server_packets($1)
29572 + corenet_dontaudit_receive_ricci_modcluster_server_packets($1)
29573 ')
29574
29575 ########################################
29576 ## <summary>
29577 -## Relabel packets to redis_server the packet type.
29578 +## Relabel packets to ricci_modcluster_server the packet type.
29579 ## </summary>
29580 ## <param name="domain">
29581 ## <summary>
29582 @@ -71813,12 +74914,12 @@ interface(`corenet_dontaudit_sendrecv_redis_server_packets',`
29583 ## </summary>
29584 ## </param>
29585 #
29586 -interface(`corenet_relabelto_redis_server_packets',`
29587 +interface(`corenet_relabelto_ricci_modcluster_server_packets',`
29588 gen_require(`
29589 - type redis_server_packet_t;
29590 + type ricci_modcluster_server_packet_t;
29591 ')
29592
29593 - allow $1 redis_server_packet_t:packet relabelto;
29594 + allow $1 ricci_modcluster_server_packet_t:packet relabelto;
29595 ')
29596
29597
29598 @@ -71826,7 +74927,7 @@ interface(`corenet_relabelto_redis_server_packets',`
29599
29600 ########################################
29601 ## <summary>
29602 -## Send and receive TCP traffic on the repository port.
29603 +## Send and receive TCP traffic on the rlogind port.
29604 ## </summary>
29605 ## <param name="domain">
29606 ## <summary>
29607 @@ -71835,17 +74936,17 @@ interface(`corenet_relabelto_redis_server_packets',`
29608 ## </param>
29609 ## <infoflow type="both" weight="10"/>
29610 #
29611 -interface(`corenet_tcp_sendrecv_repository_port',`
29612 +interface(`corenet_tcp_sendrecv_rlogind_port',`
29613 gen_require(`
29614 - type repository_port_t;
29615 + type rlogind_port_t;
29616 ')
29617
29618 - allow $1 repository_port_t:tcp_socket { send_msg recv_msg };
29619 + allow $1 rlogind_port_t:tcp_socket { send_msg recv_msg };
29620 ')
29621
29622 ########################################
29623 ## <summary>
29624 -## Send UDP traffic on the repository port.
29625 +## Send UDP traffic on the rlogind port.
29626 ## </summary>
29627 ## <param name="domain">
29628 ## <summary>
29629 @@ -71854,17 +74955,17 @@ interface(`corenet_tcp_sendrecv_repository_port',`
29630 ## </param>
29631 ## <infoflow type="write" weight="10"/>
29632 #
29633 -interface(`corenet_udp_send_repository_port',`
29634 +interface(`corenet_udp_send_rlogind_port',`
29635 gen_require(`
29636 - type repository_port_t;
29637 + type rlogind_port_t;
29638 ')
29639
29640 - allow $1 repository_port_t:udp_socket send_msg;
29641 + allow $1 rlogind_port_t:udp_socket send_msg;
29642 ')
29643
29644 ########################################
29645 ## <summary>
29646 -## Do not audit attempts to send UDP traffic on the repository port.
29647 +## Do not audit attempts to send UDP traffic on the rlogind port.
29648 ## </summary>
29649 ## <param name="domain">
29650 ## <summary>
29651 @@ -71873,17 +74974,17 @@ interface(`corenet_udp_send_repository_port',`
29652 ## </param>
29653 ## <infoflow type="none"/>
29654 #
29655 -interface(`corenet_dontaudit_udp_send_repository_port',`
29656 +interface(`corenet_dontaudit_udp_send_rlogind_port',`
29657 gen_require(`
29658 - type repository_port_t;
29659 + type rlogind_port_t;
29660 ')
29661
29662 - dontaudit $1 repository_port_t:udp_socket send_msg;
29663 + dontaudit $1 rlogind_port_t:udp_socket send_msg;
29664 ')
29665
29666 ########################################
29667 ## <summary>
29668 -## Receive UDP traffic on the repository port.
29669 +## Receive UDP traffic on the rlogind port.
29670 ## </summary>
29671 ## <param name="domain">
29672 ## <summary>
29673 @@ -71892,17 +74993,17 @@ interface(`corenet_dontaudit_udp_send_repository_port',`
29674 ## </param>
29675 ## <infoflow type="read" weight="10"/>
29676 #
29677 -interface(`corenet_udp_receive_repository_port',`
29678 +interface(`corenet_udp_receive_rlogind_port',`
29679 gen_require(`
29680 - type repository_port_t;
29681 + type rlogind_port_t;
29682 ')
29683
29684 - allow $1 repository_port_t:udp_socket recv_msg;
29685 + allow $1 rlogind_port_t:udp_socket recv_msg;
29686 ')
29687
29688 ########################################
29689 ## <summary>
29690 -## Do not audit attempts to receive UDP traffic on the repository port.
29691 +## Do not audit attempts to receive UDP traffic on the rlogind port.
29692 ## </summary>
29693 ## <param name="domain">
29694 ## <summary>
29695 @@ -71911,17 +75012,17 @@ interface(`corenet_udp_receive_repository_port',`
29696 ## </param>
29697 ## <infoflow type="none"/>
29698 #
29699 -interface(`corenet_dontaudit_udp_receive_repository_port',`
29700 +interface(`corenet_dontaudit_udp_receive_rlogind_port',`
29701 gen_require(`
29702 - type repository_port_t;
29703 + type rlogind_port_t;
29704 ')
29705
29706 - dontaudit $1 repository_port_t:udp_socket recv_msg;
29707 + dontaudit $1 rlogind_port_t:udp_socket recv_msg;
29708 ')
29709
29710 ########################################
29711 ## <summary>
29712 -## Send and receive UDP traffic on the repository port.
29713 +## Send and receive UDP traffic on the rlogind port.
29714 ## </summary>
29715 ## <param name="domain">
29716 ## <summary>
29717 @@ -71930,15 +75031,15 @@ interface(`corenet_dontaudit_udp_receive_repository_port',`
29718 ## </param>
29719 ## <infoflow type="both" weight="10"/>
29720 #
29721 -interface(`corenet_udp_sendrecv_repository_port',`
29722 - corenet_udp_send_repository_port($1)
29723 - corenet_udp_receive_repository_port($1)
29724 +interface(`corenet_udp_sendrecv_rlogind_port',`
29725 + corenet_udp_send_rlogind_port($1)
29726 + corenet_udp_receive_rlogind_port($1)
29727 ')
29728
29729 ########################################
29730 ## <summary>
29731 ## Do not audit attempts to send and receive
29732 -## UDP traffic on the repository port.
29733 +## UDP traffic on the rlogind port.
29734 ## </summary>
29735 ## <param name="domain">
29736 ## <summary>
29737 @@ -71947,14 +75048,14 @@ interface(`corenet_udp_sendrecv_repository_port',`
29738 ## </param>
29739 ## <infoflow type="none"/>
29740 #
29741 -interface(`corenet_dontaudit_udp_sendrecv_repository_port',`
29742 - corenet_dontaudit_udp_send_repository_port($1)
29743 - corenet_dontaudit_udp_receive_repository_port($1)
29744 +interface(`corenet_dontaudit_udp_sendrecv_rlogind_port',`
29745 + corenet_dontaudit_udp_send_rlogind_port($1)
29746 + corenet_dontaudit_udp_receive_rlogind_port($1)
29747 ')
29748
29749 ########################################
29750 ## <summary>
29751 -## Bind TCP sockets to the repository port.
29752 +## Bind TCP sockets to the rlogind port.
29753 ## </summary>
29754 ## <param name="domain">
29755 ## <summary>
29756 @@ -71963,18 +75064,18 @@ interface(`corenet_dontaudit_udp_sendrecv_repository_port',`
29757 ## </param>
29758 ## <infoflow type="none"/>
29759 #
29760 -interface(`corenet_tcp_bind_repository_port',`
29761 +interface(`corenet_tcp_bind_rlogind_port',`
29762 gen_require(`
29763 - type repository_port_t;
29764 + type rlogind_port_t;
29765 ')
29766
29767 - allow $1 repository_port_t:tcp_socket name_bind;
29768 -
29769 + allow $1 rlogind_port_t:tcp_socket name_bind;
29770 + allow $1 self:capability net_bind_service;
29771 ')
29772
29773 ########################################
29774 ## <summary>
29775 -## Bind UDP sockets to the repository port.
29776 +## Bind UDP sockets to the rlogind port.
29777 ## </summary>
29778 ## <param name="domain">
29779 ## <summary>
29780 @@ -71983,18 +75084,18 @@ interface(`corenet_tcp_bind_repository_port',`
29781 ## </param>
29782 ## <infoflow type="none"/>
29783 #
29784 -interface(`corenet_udp_bind_repository_port',`
29785 +interface(`corenet_udp_bind_rlogind_port',`
29786 gen_require(`
29787 - type repository_port_t;
29788 + type rlogind_port_t;
29789 ')
29790
29791 - allow $1 repository_port_t:udp_socket name_bind;
29792 -
29793 + allow $1 rlogind_port_t:udp_socket name_bind;
29794 + allow $1 self:capability net_bind_service;
29795 ')
29796
29797 ########################################
29798 ## <summary>
29799 -## Make a TCP connection to the repository port.
29800 +## Make a TCP connection to the rlogind port.
29801 ## </summary>
29802 ## <param name="domain">
29803 ## <summary>
29804 @@ -72002,18 +75103,18 @@ interface(`corenet_udp_bind_repository_port',`
29805 ## </summary>
29806 ## </param>
29807 #
29808 -interface(`corenet_tcp_connect_repository_port',`
29809 +interface(`corenet_tcp_connect_rlogind_port',`
29810 gen_require(`
29811 - type repository_port_t;
29812 + type rlogind_port_t;
29813 ')
29814
29815 - allow $1 repository_port_t:tcp_socket name_connect;
29816 + allow $1 rlogind_port_t:tcp_socket name_connect;
29817 ')
29818
29819
29820 ########################################
29821 ## <summary>
29822 -## Send repository_client packets.
29823 +## Send rlogind_client packets.
29824 ## </summary>
29825 ## <param name="domain">
29826 ## <summary>
29827 @@ -72022,17 +75123,17 @@ interface(`corenet_tcp_connect_repository_port',`
29828 ## </param>
29829 ## <infoflow type="write" weight="10"/>
29830 #
29831 -interface(`corenet_send_repository_client_packets',`
29832 +interface(`corenet_send_rlogind_client_packets',`
29833 gen_require(`
29834 - type repository_client_packet_t;
29835 + type rlogind_client_packet_t;
29836 ')
29837
29838 - allow $1 repository_client_packet_t:packet send;
29839 + allow $1 rlogind_client_packet_t:packet send;
29840 ')
29841
29842 ########################################
29843 ## <summary>
29844 -## Do not audit attempts to send repository_client packets.
29845 +## Do not audit attempts to send rlogind_client packets.
29846 ## </summary>
29847 ## <param name="domain">
29848 ## <summary>
29849 @@ -72041,17 +75142,17 @@ interface(`corenet_send_repository_client_packets',`
29850 ## </param>
29851 ## <infoflow type="none"/>
29852 #
29853 -interface(`corenet_dontaudit_send_repository_client_packets',`
29854 +interface(`corenet_dontaudit_send_rlogind_client_packets',`
29855 gen_require(`
29856 - type repository_client_packet_t;
29857 + type rlogind_client_packet_t;
29858 ')
29859
29860 - dontaudit $1 repository_client_packet_t:packet send;
29861 + dontaudit $1 rlogind_client_packet_t:packet send;
29862 ')
29863
29864 ########################################
29865 ## <summary>
29866 -## Receive repository_client packets.
29867 +## Receive rlogind_client packets.
29868 ## </summary>
29869 ## <param name="domain">
29870 ## <summary>
29871 @@ -72060,17 +75161,17 @@ interface(`corenet_dontaudit_send_repository_client_packets',`
29872 ## </param>
29873 ## <infoflow type="read" weight="10"/>
29874 #
29875 -interface(`corenet_receive_repository_client_packets',`
29876 +interface(`corenet_receive_rlogind_client_packets',`
29877 gen_require(`
29878 - type repository_client_packet_t;
29879 + type rlogind_client_packet_t;
29880 ')
29881
29882 - allow $1 repository_client_packet_t:packet recv;
29883 + allow $1 rlogind_client_packet_t:packet recv;
29884 ')
29885
29886 ########################################
29887 ## <summary>
29888 -## Do not audit attempts to receive repository_client packets.
29889 +## Do not audit attempts to receive rlogind_client packets.
29890 ## </summary>
29891 ## <param name="domain">
29892 ## <summary>
29893 @@ -72079,17 +75180,17 @@ interface(`corenet_receive_repository_client_packets',`
29894 ## </param>
29895 ## <infoflow type="none"/>
29896 #
29897 -interface(`corenet_dontaudit_receive_repository_client_packets',`
29898 +interface(`corenet_dontaudit_receive_rlogind_client_packets',`
29899 gen_require(`
29900 - type repository_client_packet_t;
29901 + type rlogind_client_packet_t;
29902 ')
29903
29904 - dontaudit $1 repository_client_packet_t:packet recv;
29905 + dontaudit $1 rlogind_client_packet_t:packet recv;
29906 ')
29907
29908 ########################################
29909 ## <summary>
29910 -## Send and receive repository_client packets.
29911 +## Send and receive rlogind_client packets.
29912 ## </summary>
29913 ## <param name="domain">
29914 ## <summary>
29915 @@ -72098,14 +75199,14 @@ interface(`corenet_dontaudit_receive_repository_client_packets',`
29916 ## </param>
29917 ## <infoflow type="both" weight="10"/>
29918 #
29919 -interface(`corenet_sendrecv_repository_client_packets',`
29920 - corenet_send_repository_client_packets($1)
29921 - corenet_receive_repository_client_packets($1)
29922 +interface(`corenet_sendrecv_rlogind_client_packets',`
29923 + corenet_send_rlogind_client_packets($1)
29924 + corenet_receive_rlogind_client_packets($1)
29925 ')
29926
29927 ########################################
29928 ## <summary>
29929 -## Do not audit attempts to send and receive repository_client packets.
29930 +## Do not audit attempts to send and receive rlogind_client packets.
29931 ## </summary>
29932 ## <param name="domain">
29933 ## <summary>
29934 @@ -72114,14 +75215,14 @@ interface(`corenet_sendrecv_repository_client_packets',`
29935 ## </param>
29936 ## <infoflow type="none"/>
29937 #
29938 -interface(`corenet_dontaudit_sendrecv_repository_client_packets',`
29939 - corenet_dontaudit_send_repository_client_packets($1)
29940 - corenet_dontaudit_receive_repository_client_packets($1)
29941 +interface(`corenet_dontaudit_sendrecv_rlogind_client_packets',`
29942 + corenet_dontaudit_send_rlogind_client_packets($1)
29943 + corenet_dontaudit_receive_rlogind_client_packets($1)
29944 ')
29945
29946 ########################################
29947 ## <summary>
29948 -## Relabel packets to repository_client the packet type.
29949 +## Relabel packets to rlogind_client the packet type.
29950 ## </summary>
29951 ## <param name="domain">
29952 ## <summary>
29953 @@ -72129,18 +75230,18 @@ interface(`corenet_dontaudit_sendrecv_repository_client_packets',`
29954 ## </summary>
29955 ## </param>
29956 #
29957 -interface(`corenet_relabelto_repository_client_packets',`
29958 +interface(`corenet_relabelto_rlogind_client_packets',`
29959 gen_require(`
29960 - type repository_client_packet_t;
29961 + type rlogind_client_packet_t;
29962 ')
29963
29964 - allow $1 repository_client_packet_t:packet relabelto;
29965 + allow $1 rlogind_client_packet_t:packet relabelto;
29966 ')
29967
29968
29969 ########################################
29970 ## <summary>
29971 -## Send repository_server packets.
29972 +## Send rlogind_server packets.
29973 ## </summary>
29974 ## <param name="domain">
29975 ## <summary>
29976 @@ -72149,17 +75250,17 @@ interface(`corenet_relabelto_repository_client_packets',`
29977 ## </param>
29978 ## <infoflow type="write" weight="10"/>
29979 #
29980 -interface(`corenet_send_repository_server_packets',`
29981 +interface(`corenet_send_rlogind_server_packets',`
29982 gen_require(`
29983 - type repository_server_packet_t;
29984 + type rlogind_server_packet_t;
29985 ')
29986
29987 - allow $1 repository_server_packet_t:packet send;
29988 + allow $1 rlogind_server_packet_t:packet send;
29989 ')
29990
29991 ########################################
29992 ## <summary>
29993 -## Do not audit attempts to send repository_server packets.
29994 +## Do not audit attempts to send rlogind_server packets.
29995 ## </summary>
29996 ## <param name="domain">
29997 ## <summary>
29998 @@ -72168,17 +75269,17 @@ interface(`corenet_send_repository_server_packets',`
29999 ## </param>
30000 ## <infoflow type="none"/>
30001 #
30002 -interface(`corenet_dontaudit_send_repository_server_packets',`
30003 +interface(`corenet_dontaudit_send_rlogind_server_packets',`
30004 gen_require(`
30005 - type repository_server_packet_t;
30006 + type rlogind_server_packet_t;
30007 ')
30008
30009 - dontaudit $1 repository_server_packet_t:packet send;
30010 + dontaudit $1 rlogind_server_packet_t:packet send;
30011 ')
30012
30013 ########################################
30014 ## <summary>
30015 -## Receive repository_server packets.
30016 +## Receive rlogind_server packets.
30017 ## </summary>
30018 ## <param name="domain">
30019 ## <summary>
30020 @@ -72187,17 +75288,17 @@ interface(`corenet_dontaudit_send_repository_server_packets',`
30021 ## </param>
30022 ## <infoflow type="read" weight="10"/>
30023 #
30024 -interface(`corenet_receive_repository_server_packets',`
30025 +interface(`corenet_receive_rlogind_server_packets',`
30026 gen_require(`
30027 - type repository_server_packet_t;
30028 + type rlogind_server_packet_t;
30029 ')
30030
30031 - allow $1 repository_server_packet_t:packet recv;
30032 + allow $1 rlogind_server_packet_t:packet recv;
30033 ')
30034
30035 ########################################
30036 ## <summary>
30037 -## Do not audit attempts to receive repository_server packets.
30038 +## Do not audit attempts to receive rlogind_server packets.
30039 ## </summary>
30040 ## <param name="domain">
30041 ## <summary>
30042 @@ -72206,17 +75307,17 @@ interface(`corenet_receive_repository_server_packets',`
30043 ## </param>
30044 ## <infoflow type="none"/>
30045 #
30046 -interface(`corenet_dontaudit_receive_repository_server_packets',`
30047 +interface(`corenet_dontaudit_receive_rlogind_server_packets',`
30048 gen_require(`
30049 - type repository_server_packet_t;
30050 + type rlogind_server_packet_t;
30051 ')
30052
30053 - dontaudit $1 repository_server_packet_t:packet recv;
30054 + dontaudit $1 rlogind_server_packet_t:packet recv;
30055 ')
30056
30057 ########################################
30058 ## <summary>
30059 -## Send and receive repository_server packets.
30060 +## Send and receive rlogind_server packets.
30061 ## </summary>
30062 ## <param name="domain">
30063 ## <summary>
30064 @@ -72225,14 +75326,14 @@ interface(`corenet_dontaudit_receive_repository_server_packets',`
30065 ## </param>
30066 ## <infoflow type="both" weight="10"/>
30067 #
30068 -interface(`corenet_sendrecv_repository_server_packets',`
30069 - corenet_send_repository_server_packets($1)
30070 - corenet_receive_repository_server_packets($1)
30071 +interface(`corenet_sendrecv_rlogind_server_packets',`
30072 + corenet_send_rlogind_server_packets($1)
30073 + corenet_receive_rlogind_server_packets($1)
30074 ')
30075
30076 ########################################
30077 ## <summary>
30078 -## Do not audit attempts to send and receive repository_server packets.
30079 +## Do not audit attempts to send and receive rlogind_server packets.
30080 ## </summary>
30081 ## <param name="domain">
30082 ## <summary>
30083 @@ -72241,14 +75342,14 @@ interface(`corenet_sendrecv_repository_server_packets',`
30084 ## </param>
30085 ## <infoflow type="none"/>
30086 #
30087 -interface(`corenet_dontaudit_sendrecv_repository_server_packets',`
30088 - corenet_dontaudit_send_repository_server_packets($1)
30089 - corenet_dontaudit_receive_repository_server_packets($1)
30090 +interface(`corenet_dontaudit_sendrecv_rlogind_server_packets',`
30091 + corenet_dontaudit_send_rlogind_server_packets($1)
30092 + corenet_dontaudit_receive_rlogind_server_packets($1)
30093 ')
30094
30095 ########################################
30096 ## <summary>
30097 -## Relabel packets to repository_server the packet type.
30098 +## Relabel packets to rlogind_server the packet type.
30099 ## </summary>
30100 ## <param name="domain">
30101 ## <summary>
30102 @@ -72256,12 +75357,12 @@ interface(`corenet_dontaudit_sendrecv_repository_server_packets',`
30103 ## </summary>
30104 ## </param>
30105 #
30106 -interface(`corenet_relabelto_repository_server_packets',`
30107 +interface(`corenet_relabelto_rlogind_server_packets',`
30108 gen_require(`
30109 - type repository_server_packet_t;
30110 + type rlogind_server_packet_t;
30111 ')
30112
30113 - allow $1 repository_server_packet_t:packet relabelto;
30114 + allow $1 rlogind_server_packet_t:packet relabelto;
30115 ')
30116
30117
30118 @@ -72269,7 +75370,7 @@ interface(`corenet_relabelto_repository_server_packets',`
30119
30120 ########################################
30121 ## <summary>
30122 -## Send and receive TCP traffic on the ricci port.
30123 +## Send and receive TCP traffic on the rndc port.
30124 ## </summary>
30125 ## <param name="domain">
30126 ## <summary>
30127 @@ -72278,17 +75379,17 @@ interface(`corenet_relabelto_repository_server_packets',`
30128 ## </param>
30129 ## <infoflow type="both" weight="10"/>
30130 #
30131 -interface(`corenet_tcp_sendrecv_ricci_port',`
30132 +interface(`corenet_tcp_sendrecv_rndc_port',`
30133 gen_require(`
30134 - type ricci_port_t;
30135 + type rndc_port_t;
30136 ')
30137
30138 - allow $1 ricci_port_t:tcp_socket { send_msg recv_msg };
30139 + allow $1 rndc_port_t:tcp_socket { send_msg recv_msg };
30140 ')
30141
30142 ########################################
30143 ## <summary>
30144 -## Send UDP traffic on the ricci port.
30145 +## Send UDP traffic on the rndc port.
30146 ## </summary>
30147 ## <param name="domain">
30148 ## <summary>
30149 @@ -72297,17 +75398,17 @@ interface(`corenet_tcp_sendrecv_ricci_port',`
30150 ## </param>
30151 ## <infoflow type="write" weight="10"/>
30152 #
30153 -interface(`corenet_udp_send_ricci_port',`
30154 +interface(`corenet_udp_send_rndc_port',`
30155 gen_require(`
30156 - type ricci_port_t;
30157 + type rndc_port_t;
30158 ')
30159
30160 - allow $1 ricci_port_t:udp_socket send_msg;
30161 + allow $1 rndc_port_t:udp_socket send_msg;
30162 ')
30163
30164 ########################################
30165 ## <summary>
30166 -## Do not audit attempts to send UDP traffic on the ricci port.
30167 +## Do not audit attempts to send UDP traffic on the rndc port.
30168 ## </summary>
30169 ## <param name="domain">
30170 ## <summary>
30171 @@ -72316,17 +75417,17 @@ interface(`corenet_udp_send_ricci_port',`
30172 ## </param>
30173 ## <infoflow type="none"/>
30174 #
30175 -interface(`corenet_dontaudit_udp_send_ricci_port',`
30176 +interface(`corenet_dontaudit_udp_send_rndc_port',`
30177 gen_require(`
30178 - type ricci_port_t;
30179 + type rndc_port_t;
30180 ')
30181
30182 - dontaudit $1 ricci_port_t:udp_socket send_msg;
30183 + dontaudit $1 rndc_port_t:udp_socket send_msg;
30184 ')
30185
30186 ########################################
30187 ## <summary>
30188 -## Receive UDP traffic on the ricci port.
30189 +## Receive UDP traffic on the rndc port.
30190 ## </summary>
30191 ## <param name="domain">
30192 ## <summary>
30193 @@ -72335,17 +75436,17 @@ interface(`corenet_dontaudit_udp_send_ricci_port',`
30194 ## </param>
30195 ## <infoflow type="read" weight="10"/>
30196 #
30197 -interface(`corenet_udp_receive_ricci_port',`
30198 +interface(`corenet_udp_receive_rndc_port',`
30199 gen_require(`
30200 - type ricci_port_t;
30201 + type rndc_port_t;
30202 ')
30203
30204 - allow $1 ricci_port_t:udp_socket recv_msg;
30205 + allow $1 rndc_port_t:udp_socket recv_msg;
30206 ')
30207
30208 ########################################
30209 ## <summary>
30210 -## Do not audit attempts to receive UDP traffic on the ricci port.
30211 +## Do not audit attempts to receive UDP traffic on the rndc port.
30212 ## </summary>
30213 ## <param name="domain">
30214 ## <summary>
30215 @@ -72354,17 +75455,17 @@ interface(`corenet_udp_receive_ricci_port',`
30216 ## </param>
30217 ## <infoflow type="none"/>
30218 #
30219 -interface(`corenet_dontaudit_udp_receive_ricci_port',`
30220 +interface(`corenet_dontaudit_udp_receive_rndc_port',`
30221 gen_require(`
30222 - type ricci_port_t;
30223 + type rndc_port_t;
30224 ')
30225
30226 - dontaudit $1 ricci_port_t:udp_socket recv_msg;
30227 + dontaudit $1 rndc_port_t:udp_socket recv_msg;
30228 ')
30229
30230 ########################################
30231 ## <summary>
30232 -## Send and receive UDP traffic on the ricci port.
30233 +## Send and receive UDP traffic on the rndc port.
30234 ## </summary>
30235 ## <param name="domain">
30236 ## <summary>
30237 @@ -72373,15 +75474,15 @@ interface(`corenet_dontaudit_udp_receive_ricci_port',`
30238 ## </param>
30239 ## <infoflow type="both" weight="10"/>
30240 #
30241 -interface(`corenet_udp_sendrecv_ricci_port',`
30242 - corenet_udp_send_ricci_port($1)
30243 - corenet_udp_receive_ricci_port($1)
30244 +interface(`corenet_udp_sendrecv_rndc_port',`
30245 + corenet_udp_send_rndc_port($1)
30246 + corenet_udp_receive_rndc_port($1)
30247 ')
30248
30249 ########################################
30250 ## <summary>
30251 ## Do not audit attempts to send and receive
30252 -## UDP traffic on the ricci port.
30253 +## UDP traffic on the rndc port.
30254 ## </summary>
30255 ## <param name="domain">
30256 ## <summary>
30257 @@ -72390,14 +75491,14 @@ interface(`corenet_udp_sendrecv_ricci_port',`
30258 ## </param>
30259 ## <infoflow type="none"/>
30260 #
30261 -interface(`corenet_dontaudit_udp_sendrecv_ricci_port',`
30262 - corenet_dontaudit_udp_send_ricci_port($1)
30263 - corenet_dontaudit_udp_receive_ricci_port($1)
30264 +interface(`corenet_dontaudit_udp_sendrecv_rndc_port',`
30265 + corenet_dontaudit_udp_send_rndc_port($1)
30266 + corenet_dontaudit_udp_receive_rndc_port($1)
30267 ')
30268
30269 ########################################
30270 ## <summary>
30271 -## Bind TCP sockets to the ricci port.
30272 +## Bind TCP sockets to the rndc port.
30273 ## </summary>
30274 ## <param name="domain">
30275 ## <summary>
30276 @@ -72406,18 +75507,18 @@ interface(`corenet_dontaudit_udp_sendrecv_ricci_port',`
30277 ## </param>
30278 ## <infoflow type="none"/>
30279 #
30280 -interface(`corenet_tcp_bind_ricci_port',`
30281 +interface(`corenet_tcp_bind_rndc_port',`
30282 gen_require(`
30283 - type ricci_port_t;
30284 + type rndc_port_t;
30285 ')
30286
30287 - allow $1 ricci_port_t:tcp_socket name_bind;
30288 -
30289 + allow $1 rndc_port_t:tcp_socket name_bind;
30290 + allow $1 self:capability net_bind_service;
30291 ')
30292
30293 ########################################
30294 ## <summary>
30295 -## Bind UDP sockets to the ricci port.
30296 +## Bind UDP sockets to the rndc port.
30297 ## </summary>
30298 ## <param name="domain">
30299 ## <summary>
30300 @@ -72426,18 +75527,18 @@ interface(`corenet_tcp_bind_ricci_port',`
30301 ## </param>
30302 ## <infoflow type="none"/>
30303 #
30304 -interface(`corenet_udp_bind_ricci_port',`
30305 +interface(`corenet_udp_bind_rndc_port',`
30306 gen_require(`
30307 - type ricci_port_t;
30308 + type rndc_port_t;
30309 ')
30310
30311 - allow $1 ricci_port_t:udp_socket name_bind;
30312 -
30313 + allow $1 rndc_port_t:udp_socket name_bind;
30314 + allow $1 self:capability net_bind_service;
30315 ')
30316
30317 ########################################
30318 ## <summary>
30319 -## Make a TCP connection to the ricci port.
30320 +## Make a TCP connection to the rndc port.
30321 ## </summary>
30322 ## <param name="domain">
30323 ## <summary>
30324 @@ -72445,18 +75546,18 @@ interface(`corenet_udp_bind_ricci_port',`
30325 ## </summary>
30326 ## </param>
30327 #
30328 -interface(`corenet_tcp_connect_ricci_port',`
30329 +interface(`corenet_tcp_connect_rndc_port',`
30330 gen_require(`
30331 - type ricci_port_t;
30332 + type rndc_port_t;
30333 ')
30334
30335 - allow $1 ricci_port_t:tcp_socket name_connect;
30336 + allow $1 rndc_port_t:tcp_socket name_connect;
30337 ')
30338
30339
30340 ########################################
30341 ## <summary>
30342 -## Send ricci_client packets.
30343 +## Send rndc_client packets.
30344 ## </summary>
30345 ## <param name="domain">
30346 ## <summary>
30347 @@ -72465,17 +75566,17 @@ interface(`corenet_tcp_connect_ricci_port',`
30348 ## </param>
30349 ## <infoflow type="write" weight="10"/>
30350 #
30351 -interface(`corenet_send_ricci_client_packets',`
30352 +interface(`corenet_send_rndc_client_packets',`
30353 gen_require(`
30354 - type ricci_client_packet_t;
30355 + type rndc_client_packet_t;
30356 ')
30357
30358 - allow $1 ricci_client_packet_t:packet send;
30359 + allow $1 rndc_client_packet_t:packet send;
30360 ')
30361
30362 ########################################
30363 ## <summary>
30364 -## Do not audit attempts to send ricci_client packets.
30365 +## Do not audit attempts to send rndc_client packets.
30366 ## </summary>
30367 ## <param name="domain">
30368 ## <summary>
30369 @@ -72484,17 +75585,17 @@ interface(`corenet_send_ricci_client_packets',`
30370 ## </param>
30371 ## <infoflow type="none"/>
30372 #
30373 -interface(`corenet_dontaudit_send_ricci_client_packets',`
30374 +interface(`corenet_dontaudit_send_rndc_client_packets',`
30375 gen_require(`
30376 - type ricci_client_packet_t;
30377 + type rndc_client_packet_t;
30378 ')
30379
30380 - dontaudit $1 ricci_client_packet_t:packet send;
30381 + dontaudit $1 rndc_client_packet_t:packet send;
30382 ')
30383
30384 ########################################
30385 ## <summary>
30386 -## Receive ricci_client packets.
30387 +## Receive rndc_client packets.
30388 ## </summary>
30389 ## <param name="domain">
30390 ## <summary>
30391 @@ -72503,17 +75604,17 @@ interface(`corenet_dontaudit_send_ricci_client_packets',`
30392 ## </param>
30393 ## <infoflow type="read" weight="10"/>
30394 #
30395 -interface(`corenet_receive_ricci_client_packets',`
30396 +interface(`corenet_receive_rndc_client_packets',`
30397 gen_require(`
30398 - type ricci_client_packet_t;
30399 + type rndc_client_packet_t;
30400 ')
30401
30402 - allow $1 ricci_client_packet_t:packet recv;
30403 + allow $1 rndc_client_packet_t:packet recv;
30404 ')
30405
30406 ########################################
30407 ## <summary>
30408 -## Do not audit attempts to receive ricci_client packets.
30409 +## Do not audit attempts to receive rndc_client packets.
30410 ## </summary>
30411 ## <param name="domain">
30412 ## <summary>
30413 @@ -72522,17 +75623,17 @@ interface(`corenet_receive_ricci_client_packets',`
30414 ## </param>
30415 ## <infoflow type="none"/>
30416 #
30417 -interface(`corenet_dontaudit_receive_ricci_client_packets',`
30418 +interface(`corenet_dontaudit_receive_rndc_client_packets',`
30419 gen_require(`
30420 - type ricci_client_packet_t;
30421 + type rndc_client_packet_t;
30422 ')
30423
30424 - dontaudit $1 ricci_client_packet_t:packet recv;
30425 + dontaudit $1 rndc_client_packet_t:packet recv;
30426 ')
30427
30428 ########################################
30429 ## <summary>
30430 -## Send and receive ricci_client packets.
30431 +## Send and receive rndc_client packets.
30432 ## </summary>
30433 ## <param name="domain">
30434 ## <summary>
30435 @@ -72541,14 +75642,14 @@ interface(`corenet_dontaudit_receive_ricci_client_packets',`
30436 ## </param>
30437 ## <infoflow type="both" weight="10"/>
30438 #
30439 -interface(`corenet_sendrecv_ricci_client_packets',`
30440 - corenet_send_ricci_client_packets($1)
30441 - corenet_receive_ricci_client_packets($1)
30442 +interface(`corenet_sendrecv_rndc_client_packets',`
30443 + corenet_send_rndc_client_packets($1)
30444 + corenet_receive_rndc_client_packets($1)
30445 ')
30446
30447 ########################################
30448 ## <summary>
30449 -## Do not audit attempts to send and receive ricci_client packets.
30450 +## Do not audit attempts to send and receive rndc_client packets.
30451 ## </summary>
30452 ## <param name="domain">
30453 ## <summary>
30454 @@ -72557,14 +75658,14 @@ interface(`corenet_sendrecv_ricci_client_packets',`
30455 ## </param>
30456 ## <infoflow type="none"/>
30457 #
30458 -interface(`corenet_dontaudit_sendrecv_ricci_client_packets',`
30459 - corenet_dontaudit_send_ricci_client_packets($1)
30460 - corenet_dontaudit_receive_ricci_client_packets($1)
30461 +interface(`corenet_dontaudit_sendrecv_rndc_client_packets',`
30462 + corenet_dontaudit_send_rndc_client_packets($1)
30463 + corenet_dontaudit_receive_rndc_client_packets($1)
30464 ')
30465
30466 ########################################
30467 ## <summary>
30468 -## Relabel packets to ricci_client the packet type.
30469 +## Relabel packets to rndc_client the packet type.
30470 ## </summary>
30471 ## <param name="domain">
30472 ## <summary>
30473 @@ -72572,18 +75673,18 @@ interface(`corenet_dontaudit_sendrecv_ricci_client_packets',`
30474 ## </summary>
30475 ## </param>
30476 #
30477 -interface(`corenet_relabelto_ricci_client_packets',`
30478 +interface(`corenet_relabelto_rndc_client_packets',`
30479 gen_require(`
30480 - type ricci_client_packet_t;
30481 + type rndc_client_packet_t;
30482 ')
30483
30484 - allow $1 ricci_client_packet_t:packet relabelto;
30485 + allow $1 rndc_client_packet_t:packet relabelto;
30486 ')
30487
30488
30489 ########################################
30490 ## <summary>
30491 -## Send ricci_server packets.
30492 +## Send rndc_server packets.
30493 ## </summary>
30494 ## <param name="domain">
30495 ## <summary>
30496 @@ -72592,17 +75693,17 @@ interface(`corenet_relabelto_ricci_client_packets',`
30497 ## </param>
30498 ## <infoflow type="write" weight="10"/>
30499 #
30500 -interface(`corenet_send_ricci_server_packets',`
30501 +interface(`corenet_send_rndc_server_packets',`
30502 gen_require(`
30503 - type ricci_server_packet_t;
30504 + type rndc_server_packet_t;
30505 ')
30506
30507 - allow $1 ricci_server_packet_t:packet send;
30508 + allow $1 rndc_server_packet_t:packet send;
30509 ')
30510
30511 ########################################
30512 ## <summary>
30513 -## Do not audit attempts to send ricci_server packets.
30514 +## Do not audit attempts to send rndc_server packets.
30515 ## </summary>
30516 ## <param name="domain">
30517 ## <summary>
30518 @@ -72611,17 +75712,17 @@ interface(`corenet_send_ricci_server_packets',`
30519 ## </param>
30520 ## <infoflow type="none"/>
30521 #
30522 -interface(`corenet_dontaudit_send_ricci_server_packets',`
30523 +interface(`corenet_dontaudit_send_rndc_server_packets',`
30524 gen_require(`
30525 - type ricci_server_packet_t;
30526 + type rndc_server_packet_t;
30527 ')
30528
30529 - dontaudit $1 ricci_server_packet_t:packet send;
30530 + dontaudit $1 rndc_server_packet_t:packet send;
30531 ')
30532
30533 ########################################
30534 ## <summary>
30535 -## Receive ricci_server packets.
30536 +## Receive rndc_server packets.
30537 ## </summary>
30538 ## <param name="domain">
30539 ## <summary>
30540 @@ -72630,17 +75731,17 @@ interface(`corenet_dontaudit_send_ricci_server_packets',`
30541 ## </param>
30542 ## <infoflow type="read" weight="10"/>
30543 #
30544 -interface(`corenet_receive_ricci_server_packets',`
30545 +interface(`corenet_receive_rndc_server_packets',`
30546 gen_require(`
30547 - type ricci_server_packet_t;
30548 + type rndc_server_packet_t;
30549 ')
30550
30551 - allow $1 ricci_server_packet_t:packet recv;
30552 + allow $1 rndc_server_packet_t:packet recv;
30553 ')
30554
30555 ########################################
30556 ## <summary>
30557 -## Do not audit attempts to receive ricci_server packets.
30558 +## Do not audit attempts to receive rndc_server packets.
30559 ## </summary>
30560 ## <param name="domain">
30561 ## <summary>
30562 @@ -72649,17 +75750,17 @@ interface(`corenet_receive_ricci_server_packets',`
30563 ## </param>
30564 ## <infoflow type="none"/>
30565 #
30566 -interface(`corenet_dontaudit_receive_ricci_server_packets',`
30567 +interface(`corenet_dontaudit_receive_rndc_server_packets',`
30568 gen_require(`
30569 - type ricci_server_packet_t;
30570 + type rndc_server_packet_t;
30571 ')
30572
30573 - dontaudit $1 ricci_server_packet_t:packet recv;
30574 + dontaudit $1 rndc_server_packet_t:packet recv;
30575 ')
30576
30577 ########################################
30578 ## <summary>
30579 -## Send and receive ricci_server packets.
30580 +## Send and receive rndc_server packets.
30581 ## </summary>
30582 ## <param name="domain">
30583 ## <summary>
30584 @@ -72668,14 +75769,14 @@ interface(`corenet_dontaudit_receive_ricci_server_packets',`
30585 ## </param>
30586 ## <infoflow type="both" weight="10"/>
30587 #
30588 -interface(`corenet_sendrecv_ricci_server_packets',`
30589 - corenet_send_ricci_server_packets($1)
30590 - corenet_receive_ricci_server_packets($1)
30591 +interface(`corenet_sendrecv_rndc_server_packets',`
30592 + corenet_send_rndc_server_packets($1)
30593 + corenet_receive_rndc_server_packets($1)
30594 ')
30595
30596 ########################################
30597 ## <summary>
30598 -## Do not audit attempts to send and receive ricci_server packets.
30599 +## Do not audit attempts to send and receive rndc_server packets.
30600 ## </summary>
30601 ## <param name="domain">
30602 ## <summary>
30603 @@ -72684,14 +75785,14 @@ interface(`corenet_sendrecv_ricci_server_packets',`
30604 ## </param>
30605 ## <infoflow type="none"/>
30606 #
30607 -interface(`corenet_dontaudit_sendrecv_ricci_server_packets',`
30608 - corenet_dontaudit_send_ricci_server_packets($1)
30609 - corenet_dontaudit_receive_ricci_server_packets($1)
30610 +interface(`corenet_dontaudit_sendrecv_rndc_server_packets',`
30611 + corenet_dontaudit_send_rndc_server_packets($1)
30612 + corenet_dontaudit_receive_rndc_server_packets($1)
30613 ')
30614
30615 ########################################
30616 ## <summary>
30617 -## Relabel packets to ricci_server the packet type.
30618 +## Relabel packets to rndc_server the packet type.
30619 ## </summary>
30620 ## <param name="domain">
30621 ## <summary>
30622 @@ -72699,12 +75800,12 @@ interface(`corenet_dontaudit_sendrecv_ricci_server_packets',`
30623 ## </summary>
30624 ## </param>
30625 #
30626 -interface(`corenet_relabelto_ricci_server_packets',`
30627 +interface(`corenet_relabelto_rndc_server_packets',`
30628 gen_require(`
30629 - type ricci_server_packet_t;
30630 + type rndc_server_packet_t;
30631 ')
30632
30633 - allow $1 ricci_server_packet_t:packet relabelto;
30634 + allow $1 rndc_server_packet_t:packet relabelto;
30635 ')
30636
30637
30638 @@ -72712,7 +75813,7 @@ interface(`corenet_relabelto_ricci_server_packets',`
30639
30640 ########################################
30641 ## <summary>
30642 -## Send and receive TCP traffic on the ricci_modcluster port.
30643 +## Send and receive TCP traffic on the router port.
30644 ## </summary>
30645 ## <param name="domain">
30646 ## <summary>
30647 @@ -72721,17 +75822,17 @@ interface(`corenet_relabelto_ricci_server_packets',`
30648 ## </param>
30649 ## <infoflow type="both" weight="10"/>
30650 #
30651 -interface(`corenet_tcp_sendrecv_ricci_modcluster_port',`
30652 +interface(`corenet_tcp_sendrecv_router_port',`
30653 gen_require(`
30654 - type ricci_modcluster_port_t;
30655 + type router_port_t;
30656 ')
30657
30658 - allow $1 ricci_modcluster_port_t:tcp_socket { send_msg recv_msg };
30659 + allow $1 router_port_t:tcp_socket { send_msg recv_msg };
30660 ')
30661
30662 ########################################
30663 ## <summary>
30664 -## Send UDP traffic on the ricci_modcluster port.
30665 +## Send UDP traffic on the router port.
30666 ## </summary>
30667 ## <param name="domain">
30668 ## <summary>
30669 @@ -72740,17 +75841,17 @@ interface(`corenet_tcp_sendrecv_ricci_modcluster_port',`
30670 ## </param>
30671 ## <infoflow type="write" weight="10"/>
30672 #
30673 -interface(`corenet_udp_send_ricci_modcluster_port',`
30674 +interface(`corenet_udp_send_router_port',`
30675 gen_require(`
30676 - type ricci_modcluster_port_t;
30677 + type router_port_t;
30678 ')
30679
30680 - allow $1 ricci_modcluster_port_t:udp_socket send_msg;
30681 + allow $1 router_port_t:udp_socket send_msg;
30682 ')
30683
30684 ########################################
30685 ## <summary>
30686 -## Do not audit attempts to send UDP traffic on the ricci_modcluster port.
30687 +## Do not audit attempts to send UDP traffic on the router port.
30688 ## </summary>
30689 ## <param name="domain">
30690 ## <summary>
30691 @@ -72759,17 +75860,17 @@ interface(`corenet_udp_send_ricci_modcluster_port',`
30692 ## </param>
30693 ## <infoflow type="none"/>
30694 #
30695 -interface(`corenet_dontaudit_udp_send_ricci_modcluster_port',`
30696 +interface(`corenet_dontaudit_udp_send_router_port',`
30697 gen_require(`
30698 - type ricci_modcluster_port_t;
30699 + type router_port_t;
30700 ')
30701
30702 - dontaudit $1 ricci_modcluster_port_t:udp_socket send_msg;
30703 + dontaudit $1 router_port_t:udp_socket send_msg;
30704 ')
30705
30706 ########################################
30707 ## <summary>
30708 -## Receive UDP traffic on the ricci_modcluster port.
30709 +## Receive UDP traffic on the router port.
30710 ## </summary>
30711 ## <param name="domain">
30712 ## <summary>
30713 @@ -72778,17 +75879,17 @@ interface(`corenet_dontaudit_udp_send_ricci_modcluster_port',`
30714 ## </param>
30715 ## <infoflow type="read" weight="10"/>
30716 #
30717 -interface(`corenet_udp_receive_ricci_modcluster_port',`
30718 +interface(`corenet_udp_receive_router_port',`
30719 gen_require(`
30720 - type ricci_modcluster_port_t;
30721 + type router_port_t;
30722 ')
30723
30724 - allow $1 ricci_modcluster_port_t:udp_socket recv_msg;
30725 + allow $1 router_port_t:udp_socket recv_msg;
30726 ')
30727
30728 ########################################
30729 ## <summary>
30730 -## Do not audit attempts to receive UDP traffic on the ricci_modcluster port.
30731 +## Do not audit attempts to receive UDP traffic on the router port.
30732 ## </summary>
30733 ## <param name="domain">
30734 ## <summary>
30735 @@ -72797,17 +75898,17 @@ interface(`corenet_udp_receive_ricci_modcluster_port',`
30736 ## </param>
30737 ## <infoflow type="none"/>
30738 #
30739 -interface(`corenet_dontaudit_udp_receive_ricci_modcluster_port',`
30740 +interface(`corenet_dontaudit_udp_receive_router_port',`
30741 gen_require(`
30742 - type ricci_modcluster_port_t;
30743 + type router_port_t;
30744 ')
30745
30746 - dontaudit $1 ricci_modcluster_port_t:udp_socket recv_msg;
30747 + dontaudit $1 router_port_t:udp_socket recv_msg;
30748 ')
30749
30750 ########################################
30751 ## <summary>
30752 -## Send and receive UDP traffic on the ricci_modcluster port.
30753 +## Send and receive UDP traffic on the router port.
30754 ## </summary>
30755 ## <param name="domain">
30756 ## <summary>
30757 @@ -72816,15 +75917,15 @@ interface(`corenet_dontaudit_udp_receive_ricci_modcluster_port',`
30758 ## </param>
30759 ## <infoflow type="both" weight="10"/>
30760 #
30761 -interface(`corenet_udp_sendrecv_ricci_modcluster_port',`
30762 - corenet_udp_send_ricci_modcluster_port($1)
30763 - corenet_udp_receive_ricci_modcluster_port($1)
30764 +interface(`corenet_udp_sendrecv_router_port',`
30765 + corenet_udp_send_router_port($1)
30766 + corenet_udp_receive_router_port($1)
30767 ')
30768
30769 ########################################
30770 ## <summary>
30771 ## Do not audit attempts to send and receive
30772 -## UDP traffic on the ricci_modcluster port.
30773 +## UDP traffic on the router port.
30774 ## </summary>
30775 ## <param name="domain">
30776 ## <summary>
30777 @@ -72833,14 +75934,14 @@ interface(`corenet_udp_sendrecv_ricci_modcluster_port',`
30778 ## </param>
30779 ## <infoflow type="none"/>
30780 #
30781 -interface(`corenet_dontaudit_udp_sendrecv_ricci_modcluster_port',`
30782 - corenet_dontaudit_udp_send_ricci_modcluster_port($1)
30783 - corenet_dontaudit_udp_receive_ricci_modcluster_port($1)
30784 +interface(`corenet_dontaudit_udp_sendrecv_router_port',`
30785 + corenet_dontaudit_udp_send_router_port($1)
30786 + corenet_dontaudit_udp_receive_router_port($1)
30787 ')
30788
30789 ########################################
30790 ## <summary>
30791 -## Bind TCP sockets to the ricci_modcluster port.
30792 +## Bind TCP sockets to the router port.
30793 ## </summary>
30794 ## <param name="domain">
30795 ## <summary>
30796 @@ -72849,18 +75950,18 @@ interface(`corenet_dontaudit_udp_sendrecv_ricci_modcluster_port',`
30797 ## </param>
30798 ## <infoflow type="none"/>
30799 #
30800 -interface(`corenet_tcp_bind_ricci_modcluster_port',`
30801 +interface(`corenet_tcp_bind_router_port',`
30802 gen_require(`
30803 - type ricci_modcluster_port_t;
30804 + type router_port_t;
30805 ')
30806
30807 - allow $1 ricci_modcluster_port_t:tcp_socket name_bind;
30808 -
30809 + allow $1 router_port_t:tcp_socket name_bind;
30810 + allow $1 self:capability net_bind_service;
30811 ')
30812
30813 ########################################
30814 ## <summary>
30815 -## Bind UDP sockets to the ricci_modcluster port.
30816 +## Bind UDP sockets to the router port.
30817 ## </summary>
30818 ## <param name="domain">
30819 ## <summary>
30820 @@ -72869,18 +75970,18 @@ interface(`corenet_tcp_bind_ricci_modcluster_port',`
30821 ## </param>
30822 ## <infoflow type="none"/>
30823 #
30824 -interface(`corenet_udp_bind_ricci_modcluster_port',`
30825 +interface(`corenet_udp_bind_router_port',`
30826 gen_require(`
30827 - type ricci_modcluster_port_t;
30828 + type router_port_t;
30829 ')
30830
30831 - allow $1 ricci_modcluster_port_t:udp_socket name_bind;
30832 -
30833 + allow $1 router_port_t:udp_socket name_bind;
30834 + allow $1 self:capability net_bind_service;
30835 ')
30836
30837 ########################################
30838 ## <summary>
30839 -## Make a TCP connection to the ricci_modcluster port.
30840 +## Make a TCP connection to the router port.
30841 ## </summary>
30842 ## <param name="domain">
30843 ## <summary>
30844 @@ -72888,18 +75989,18 @@ interface(`corenet_udp_bind_ricci_modcluster_port',`
30845 ## </summary>
30846 ## </param>
30847 #
30848 -interface(`corenet_tcp_connect_ricci_modcluster_port',`
30849 +interface(`corenet_tcp_connect_router_port',`
30850 gen_require(`
30851 - type ricci_modcluster_port_t;
30852 + type router_port_t;
30853 ')
30854
30855 - allow $1 ricci_modcluster_port_t:tcp_socket name_connect;
30856 + allow $1 router_port_t:tcp_socket name_connect;
30857 ')
30858
30859
30860 ########################################
30861 ## <summary>
30862 -## Send ricci_modcluster_client packets.
30863 +## Send router_client packets.
30864 ## </summary>
30865 ## <param name="domain">
30866 ## <summary>
30867 @@ -72908,17 +76009,17 @@ interface(`corenet_tcp_connect_ricci_modcluster_port',`
30868 ## </param>
30869 ## <infoflow type="write" weight="10"/>
30870 #
30871 -interface(`corenet_send_ricci_modcluster_client_packets',`
30872 +interface(`corenet_send_router_client_packets',`
30873 gen_require(`
30874 - type ricci_modcluster_client_packet_t;
30875 + type router_client_packet_t;
30876 ')
30877
30878 - allow $1 ricci_modcluster_client_packet_t:packet send;
30879 + allow $1 router_client_packet_t:packet send;
30880 ')
30881
30882 ########################################
30883 ## <summary>
30884 -## Do not audit attempts to send ricci_modcluster_client packets.
30885 +## Do not audit attempts to send router_client packets.
30886 ## </summary>
30887 ## <param name="domain">
30888 ## <summary>
30889 @@ -72927,17 +76028,17 @@ interface(`corenet_send_ricci_modcluster_client_packets',`
30890 ## </param>
30891 ## <infoflow type="none"/>
30892 #
30893 -interface(`corenet_dontaudit_send_ricci_modcluster_client_packets',`
30894 +interface(`corenet_dontaudit_send_router_client_packets',`
30895 gen_require(`
30896 - type ricci_modcluster_client_packet_t;
30897 + type router_client_packet_t;
30898 ')
30899
30900 - dontaudit $1 ricci_modcluster_client_packet_t:packet send;
30901 + dontaudit $1 router_client_packet_t:packet send;
30902 ')
30903
30904 ########################################
30905 ## <summary>
30906 -## Receive ricci_modcluster_client packets.
30907 +## Receive router_client packets.
30908 ## </summary>
30909 ## <param name="domain">
30910 ## <summary>
30911 @@ -72946,17 +76047,17 @@ interface(`corenet_dontaudit_send_ricci_modcluster_client_packets',`
30912 ## </param>
30913 ## <infoflow type="read" weight="10"/>
30914 #
30915 -interface(`corenet_receive_ricci_modcluster_client_packets',`
30916 +interface(`corenet_receive_router_client_packets',`
30917 gen_require(`
30918 - type ricci_modcluster_client_packet_t;
30919 + type router_client_packet_t;
30920 ')
30921
30922 - allow $1 ricci_modcluster_client_packet_t:packet recv;
30923 + allow $1 router_client_packet_t:packet recv;
30924 ')
30925
30926 ########################################
30927 ## <summary>
30928 -## Do not audit attempts to receive ricci_modcluster_client packets.
30929 +## Do not audit attempts to receive router_client packets.
30930 ## </summary>
30931 ## <param name="domain">
30932 ## <summary>
30933 @@ -72965,17 +76066,17 @@ interface(`corenet_receive_ricci_modcluster_client_packets',`
30934 ## </param>
30935 ## <infoflow type="none"/>
30936 #
30937 -interface(`corenet_dontaudit_receive_ricci_modcluster_client_packets',`
30938 +interface(`corenet_dontaudit_receive_router_client_packets',`
30939 gen_require(`
30940 - type ricci_modcluster_client_packet_t;
30941 + type router_client_packet_t;
30942 ')
30943
30944 - dontaudit $1 ricci_modcluster_client_packet_t:packet recv;
30945 + dontaudit $1 router_client_packet_t:packet recv;
30946 ')
30947
30948 ########################################
30949 ## <summary>
30950 -## Send and receive ricci_modcluster_client packets.
30951 +## Send and receive router_client packets.
30952 ## </summary>
30953 ## <param name="domain">
30954 ## <summary>
30955 @@ -72984,14 +76085,14 @@ interface(`corenet_dontaudit_receive_ricci_modcluster_client_packets',`
30956 ## </param>
30957 ## <infoflow type="both" weight="10"/>
30958 #
30959 -interface(`corenet_sendrecv_ricci_modcluster_client_packets',`
30960 - corenet_send_ricci_modcluster_client_packets($1)
30961 - corenet_receive_ricci_modcluster_client_packets($1)
30962 +interface(`corenet_sendrecv_router_client_packets',`
30963 + corenet_send_router_client_packets($1)
30964 + corenet_receive_router_client_packets($1)
30965 ')
30966
30967 ########################################
30968 ## <summary>
30969 -## Do not audit attempts to send and receive ricci_modcluster_client packets.
30970 +## Do not audit attempts to send and receive router_client packets.
30971 ## </summary>
30972 ## <param name="domain">
30973 ## <summary>
30974 @@ -73000,14 +76101,14 @@ interface(`corenet_sendrecv_ricci_modcluster_client_packets',`
30975 ## </param>
30976 ## <infoflow type="none"/>
30977 #
30978 -interface(`corenet_dontaudit_sendrecv_ricci_modcluster_client_packets',`
30979 - corenet_dontaudit_send_ricci_modcluster_client_packets($1)
30980 - corenet_dontaudit_receive_ricci_modcluster_client_packets($1)
30981 +interface(`corenet_dontaudit_sendrecv_router_client_packets',`
30982 + corenet_dontaudit_send_router_client_packets($1)
30983 + corenet_dontaudit_receive_router_client_packets($1)
30984 ')
30985
30986 ########################################
30987 ## <summary>
30988 -## Relabel packets to ricci_modcluster_client the packet type.
30989 +## Relabel packets to router_client the packet type.
30990 ## </summary>
30991 ## <param name="domain">
30992 ## <summary>
30993 @@ -73015,18 +76116,18 @@ interface(`corenet_dontaudit_sendrecv_ricci_modcluster_client_packets',`
30994 ## </summary>
30995 ## </param>
30996 #
30997 -interface(`corenet_relabelto_ricci_modcluster_client_packets',`
30998 +interface(`corenet_relabelto_router_client_packets',`
30999 gen_require(`
31000 - type ricci_modcluster_client_packet_t;
31001 + type router_client_packet_t;
31002 ')
31003
31004 - allow $1 ricci_modcluster_client_packet_t:packet relabelto;
31005 + allow $1 router_client_packet_t:packet relabelto;
31006 ')
31007
31008
31009 ########################################
31010 ## <summary>
31011 -## Send ricci_modcluster_server packets.
31012 +## Send router_server packets.
31013 ## </summary>
31014 ## <param name="domain">
31015 ## <summary>
31016 @@ -73035,17 +76136,17 @@ interface(`corenet_relabelto_ricci_modcluster_client_packets',`
31017 ## </param>
31018 ## <infoflow type="write" weight="10"/>
31019 #
31020 -interface(`corenet_send_ricci_modcluster_server_packets',`
31021 +interface(`corenet_send_router_server_packets',`
31022 gen_require(`
31023 - type ricci_modcluster_server_packet_t;
31024 + type router_server_packet_t;
31025 ')
31026
31027 - allow $1 ricci_modcluster_server_packet_t:packet send;
31028 + allow $1 router_server_packet_t:packet send;
31029 ')
31030
31031 ########################################
31032 ## <summary>
31033 -## Do not audit attempts to send ricci_modcluster_server packets.
31034 +## Do not audit attempts to send router_server packets.
31035 ## </summary>
31036 ## <param name="domain">
31037 ## <summary>
31038 @@ -73054,17 +76155,17 @@ interface(`corenet_send_ricci_modcluster_server_packets',`
31039 ## </param>
31040 ## <infoflow type="none"/>
31041 #
31042 -interface(`corenet_dontaudit_send_ricci_modcluster_server_packets',`
31043 +interface(`corenet_dontaudit_send_router_server_packets',`
31044 gen_require(`
31045 - type ricci_modcluster_server_packet_t;
31046 + type router_server_packet_t;
31047 ')
31048
31049 - dontaudit $1 ricci_modcluster_server_packet_t:packet send;
31050 + dontaudit $1 router_server_packet_t:packet send;
31051 ')
31052
31053 ########################################
31054 ## <summary>
31055 -## Receive ricci_modcluster_server packets.
31056 +## Receive router_server packets.
31057 ## </summary>
31058 ## <param name="domain">
31059 ## <summary>
31060 @@ -73073,17 +76174,17 @@ interface(`corenet_dontaudit_send_ricci_modcluster_server_packets',`
31061 ## </param>
31062 ## <infoflow type="read" weight="10"/>
31063 #
31064 -interface(`corenet_receive_ricci_modcluster_server_packets',`
31065 +interface(`corenet_receive_router_server_packets',`
31066 gen_require(`
31067 - type ricci_modcluster_server_packet_t;
31068 + type router_server_packet_t;
31069 ')
31070
31071 - allow $1 ricci_modcluster_server_packet_t:packet recv;
31072 + allow $1 router_server_packet_t:packet recv;
31073 ')
31074
31075 ########################################
31076 ## <summary>
31077 -## Do not audit attempts to receive ricci_modcluster_server packets.
31078 +## Do not audit attempts to receive router_server packets.
31079 ## </summary>
31080 ## <param name="domain">
31081 ## <summary>
31082 @@ -73092,17 +76193,17 @@ interface(`corenet_receive_ricci_modcluster_server_packets',`
31083 ## </param>
31084 ## <infoflow type="none"/>
31085 #
31086 -interface(`corenet_dontaudit_receive_ricci_modcluster_server_packets',`
31087 +interface(`corenet_dontaudit_receive_router_server_packets',`
31088 gen_require(`
31089 - type ricci_modcluster_server_packet_t;
31090 + type router_server_packet_t;
31091 ')
31092
31093 - dontaudit $1 ricci_modcluster_server_packet_t:packet recv;
31094 + dontaudit $1 router_server_packet_t:packet recv;
31095 ')
31096
31097 ########################################
31098 ## <summary>
31099 -## Send and receive ricci_modcluster_server packets.
31100 +## Send and receive router_server packets.
31101 ## </summary>
31102 ## <param name="domain">
31103 ## <summary>
31104 @@ -73111,14 +76212,14 @@ interface(`corenet_dontaudit_receive_ricci_modcluster_server_packets',`
31105 ## </param>
31106 ## <infoflow type="both" weight="10"/>
31107 #
31108 -interface(`corenet_sendrecv_ricci_modcluster_server_packets',`
31109 - corenet_send_ricci_modcluster_server_packets($1)
31110 - corenet_receive_ricci_modcluster_server_packets($1)
31111 +interface(`corenet_sendrecv_router_server_packets',`
31112 + corenet_send_router_server_packets($1)
31113 + corenet_receive_router_server_packets($1)
31114 ')
31115
31116 ########################################
31117 ## <summary>
31118 -## Do not audit attempts to send and receive ricci_modcluster_server packets.
31119 +## Do not audit attempts to send and receive router_server packets.
31120 ## </summary>
31121 ## <param name="domain">
31122 ## <summary>
31123 @@ -73127,14 +76228,14 @@ interface(`corenet_sendrecv_ricci_modcluster_server_packets',`
31124 ## </param>
31125 ## <infoflow type="none"/>
31126 #
31127 -interface(`corenet_dontaudit_sendrecv_ricci_modcluster_server_packets',`
31128 - corenet_dontaudit_send_ricci_modcluster_server_packets($1)
31129 - corenet_dontaudit_receive_ricci_modcluster_server_packets($1)
31130 +interface(`corenet_dontaudit_sendrecv_router_server_packets',`
31131 + corenet_dontaudit_send_router_server_packets($1)
31132 + corenet_dontaudit_receive_router_server_packets($1)
31133 ')
31134
31135 ########################################
31136 ## <summary>
31137 -## Relabel packets to ricci_modcluster_server the packet type.
31138 +## Relabel packets to router_server the packet type.
31139 ## </summary>
31140 ## <param name="domain">
31141 ## <summary>
31142 @@ -73142,12 +76243,12 @@ interface(`corenet_dontaudit_sendrecv_ricci_modcluster_server_packets',`
31143 ## </summary>
31144 ## </param>
31145 #
31146 -interface(`corenet_relabelto_ricci_modcluster_server_packets',`
31147 +interface(`corenet_relabelto_router_server_packets',`
31148 gen_require(`
31149 - type ricci_modcluster_server_packet_t;
31150 + type router_server_packet_t;
31151 ')
31152
31153 - allow $1 ricci_modcluster_server_packet_t:packet relabelto;
31154 + allow $1 router_server_packet_t:packet relabelto;
31155 ')
31156
31157
31158 @@ -73155,7 +76256,7 @@ interface(`corenet_relabelto_ricci_modcluster_server_packets',`
31159
31160 ########################################
31161 ## <summary>
31162 -## Send and receive TCP traffic on the rlogind port.
31163 +## Send and receive TCP traffic on the rsh port.
31164 ## </summary>
31165 ## <param name="domain">
31166 ## <summary>
31167 @@ -73164,17 +76265,17 @@ interface(`corenet_relabelto_ricci_modcluster_server_packets',`
31168 ## </param>
31169 ## <infoflow type="both" weight="10"/>
31170 #
31171 -interface(`corenet_tcp_sendrecv_rlogind_port',`
31172 +interface(`corenet_tcp_sendrecv_rsh_port',`
31173 gen_require(`
31174 - type rlogind_port_t;
31175 + type rsh_port_t;
31176 ')
31177
31178 - allow $1 rlogind_port_t:tcp_socket { send_msg recv_msg };
31179 + allow $1 rsh_port_t:tcp_socket { send_msg recv_msg };
31180 ')
31181
31182 ########################################
31183 ## <summary>
31184 -## Send UDP traffic on the rlogind port.
31185 +## Send UDP traffic on the rsh port.
31186 ## </summary>
31187 ## <param name="domain">
31188 ## <summary>
31189 @@ -73183,17 +76284,17 @@ interface(`corenet_tcp_sendrecv_rlogind_port',`
31190 ## </param>
31191 ## <infoflow type="write" weight="10"/>
31192 #
31193 -interface(`corenet_udp_send_rlogind_port',`
31194 +interface(`corenet_udp_send_rsh_port',`
31195 gen_require(`
31196 - type rlogind_port_t;
31197 + type rsh_port_t;
31198 ')
31199
31200 - allow $1 rlogind_port_t:udp_socket send_msg;
31201 + allow $1 rsh_port_t:udp_socket send_msg;
31202 ')
31203
31204 ########################################
31205 ## <summary>
31206 -## Do not audit attempts to send UDP traffic on the rlogind port.
31207 +## Do not audit attempts to send UDP traffic on the rsh port.
31208 ## </summary>
31209 ## <param name="domain">
31210 ## <summary>
31211 @@ -73202,17 +76303,17 @@ interface(`corenet_udp_send_rlogind_port',`
31212 ## </param>
31213 ## <infoflow type="none"/>
31214 #
31215 -interface(`corenet_dontaudit_udp_send_rlogind_port',`
31216 +interface(`corenet_dontaudit_udp_send_rsh_port',`
31217 gen_require(`
31218 - type rlogind_port_t;
31219 + type rsh_port_t;
31220 ')
31221
31222 - dontaudit $1 rlogind_port_t:udp_socket send_msg;
31223 + dontaudit $1 rsh_port_t:udp_socket send_msg;
31224 ')
31225
31226 ########################################
31227 ## <summary>
31228 -## Receive UDP traffic on the rlogind port.
31229 +## Receive UDP traffic on the rsh port.
31230 ## </summary>
31231 ## <param name="domain">
31232 ## <summary>
31233 @@ -73221,17 +76322,17 @@ interface(`corenet_dontaudit_udp_send_rlogind_port',`
31234 ## </param>
31235 ## <infoflow type="read" weight="10"/>
31236 #
31237 -interface(`corenet_udp_receive_rlogind_port',`
31238 +interface(`corenet_udp_receive_rsh_port',`
31239 gen_require(`
31240 - type rlogind_port_t;
31241 + type rsh_port_t;
31242 ')
31243
31244 - allow $1 rlogind_port_t:udp_socket recv_msg;
31245 + allow $1 rsh_port_t:udp_socket recv_msg;
31246 ')
31247
31248 ########################################
31249 ## <summary>
31250 -## Do not audit attempts to receive UDP traffic on the rlogind port.
31251 +## Do not audit attempts to receive UDP traffic on the rsh port.
31252 ## </summary>
31253 ## <param name="domain">
31254 ## <summary>
31255 @@ -73240,17 +76341,17 @@ interface(`corenet_udp_receive_rlogind_port',`
31256 ## </param>
31257 ## <infoflow type="none"/>
31258 #
31259 -interface(`corenet_dontaudit_udp_receive_rlogind_port',`
31260 +interface(`corenet_dontaudit_udp_receive_rsh_port',`
31261 gen_require(`
31262 - type rlogind_port_t;
31263 + type rsh_port_t;
31264 ')
31265
31266 - dontaudit $1 rlogind_port_t:udp_socket recv_msg;
31267 + dontaudit $1 rsh_port_t:udp_socket recv_msg;
31268 ')
31269
31270 ########################################
31271 ## <summary>
31272 -## Send and receive UDP traffic on the rlogind port.
31273 +## Send and receive UDP traffic on the rsh port.
31274 ## </summary>
31275 ## <param name="domain">
31276 ## <summary>
31277 @@ -73259,15 +76360,15 @@ interface(`corenet_dontaudit_udp_receive_rlogind_port',`
31278 ## </param>
31279 ## <infoflow type="both" weight="10"/>
31280 #
31281 -interface(`corenet_udp_sendrecv_rlogind_port',`
31282 - corenet_udp_send_rlogind_port($1)
31283 - corenet_udp_receive_rlogind_port($1)
31284 +interface(`corenet_udp_sendrecv_rsh_port',`
31285 + corenet_udp_send_rsh_port($1)
31286 + corenet_udp_receive_rsh_port($1)
31287 ')
31288
31289 ########################################
31290 ## <summary>
31291 ## Do not audit attempts to send and receive
31292 -## UDP traffic on the rlogind port.
31293 +## UDP traffic on the rsh port.
31294 ## </summary>
31295 ## <param name="domain">
31296 ## <summary>
31297 @@ -73276,14 +76377,14 @@ interface(`corenet_udp_sendrecv_rlogind_port',`
31298 ## </param>
31299 ## <infoflow type="none"/>
31300 #
31301 -interface(`corenet_dontaudit_udp_sendrecv_rlogind_port',`
31302 - corenet_dontaudit_udp_send_rlogind_port($1)
31303 - corenet_dontaudit_udp_receive_rlogind_port($1)
31304 +interface(`corenet_dontaudit_udp_sendrecv_rsh_port',`
31305 + corenet_dontaudit_udp_send_rsh_port($1)
31306 + corenet_dontaudit_udp_receive_rsh_port($1)
31307 ')
31308
31309 ########################################
31310 ## <summary>
31311 -## Bind TCP sockets to the rlogind port.
31312 +## Bind TCP sockets to the rsh port.
31313 ## </summary>
31314 ## <param name="domain">
31315 ## <summary>
31316 @@ -73292,18 +76393,18 @@ interface(`corenet_dontaudit_udp_sendrecv_rlogind_port',`
31317 ## </param>
31318 ## <infoflow type="none"/>
31319 #
31320 -interface(`corenet_tcp_bind_rlogind_port',`
31321 +interface(`corenet_tcp_bind_rsh_port',`
31322 gen_require(`
31323 - type rlogind_port_t;
31324 + type rsh_port_t;
31325 ')
31326
31327 - allow $1 rlogind_port_t:tcp_socket name_bind;
31328 + allow $1 rsh_port_t:tcp_socket name_bind;
31329 allow $1 self:capability net_bind_service;
31330 ')
31331
31332 ########################################
31333 ## <summary>
31334 -## Bind UDP sockets to the rlogind port.
31335 +## Bind UDP sockets to the rsh port.
31336 ## </summary>
31337 ## <param name="domain">
31338 ## <summary>
31339 @@ -73312,18 +76413,18 @@ interface(`corenet_tcp_bind_rlogind_port',`
31340 ## </param>
31341 ## <infoflow type="none"/>
31342 #
31343 -interface(`corenet_udp_bind_rlogind_port',`
31344 +interface(`corenet_udp_bind_rsh_port',`
31345 gen_require(`
31346 - type rlogind_port_t;
31347 + type rsh_port_t;
31348 ')
31349
31350 - allow $1 rlogind_port_t:udp_socket name_bind;
31351 + allow $1 rsh_port_t:udp_socket name_bind;
31352 allow $1 self:capability net_bind_service;
31353 ')
31354
31355 ########################################
31356 ## <summary>
31357 -## Make a TCP connection to the rlogind port.
31358 +## Make a TCP connection to the rsh port.
31359 ## </summary>
31360 ## <param name="domain">
31361 ## <summary>
31362 @@ -73331,18 +76432,18 @@ interface(`corenet_udp_bind_rlogind_port',`
31363 ## </summary>
31364 ## </param>
31365 #
31366 -interface(`corenet_tcp_connect_rlogind_port',`
31367 +interface(`corenet_tcp_connect_rsh_port',`
31368 gen_require(`
31369 - type rlogind_port_t;
31370 + type rsh_port_t;
31371 ')
31372
31373 - allow $1 rlogind_port_t:tcp_socket name_connect;
31374 + allow $1 rsh_port_t:tcp_socket name_connect;
31375 ')
31376
31377
31378 ########################################
31379 ## <summary>
31380 -## Send rlogind_client packets.
31381 +## Send rsh_client packets.
31382 ## </summary>
31383 ## <param name="domain">
31384 ## <summary>
31385 @@ -73351,17 +76452,17 @@ interface(`corenet_tcp_connect_rlogind_port',`
31386 ## </param>
31387 ## <infoflow type="write" weight="10"/>
31388 #
31389 -interface(`corenet_send_rlogind_client_packets',`
31390 +interface(`corenet_send_rsh_client_packets',`
31391 gen_require(`
31392 - type rlogind_client_packet_t;
31393 + type rsh_client_packet_t;
31394 ')
31395
31396 - allow $1 rlogind_client_packet_t:packet send;
31397 + allow $1 rsh_client_packet_t:packet send;
31398 ')
31399
31400 ########################################
31401 ## <summary>
31402 -## Do not audit attempts to send rlogind_client packets.
31403 +## Do not audit attempts to send rsh_client packets.
31404 ## </summary>
31405 ## <param name="domain">
31406 ## <summary>
31407 @@ -73370,17 +76471,17 @@ interface(`corenet_send_rlogind_client_packets',`
31408 ## </param>
31409 ## <infoflow type="none"/>
31410 #
31411 -interface(`corenet_dontaudit_send_rlogind_client_packets',`
31412 +interface(`corenet_dontaudit_send_rsh_client_packets',`
31413 gen_require(`
31414 - type rlogind_client_packet_t;
31415 + type rsh_client_packet_t;
31416 ')
31417
31418 - dontaudit $1 rlogind_client_packet_t:packet send;
31419 + dontaudit $1 rsh_client_packet_t:packet send;
31420 ')
31421
31422 ########################################
31423 ## <summary>
31424 -## Receive rlogind_client packets.
31425 +## Receive rsh_client packets.
31426 ## </summary>
31427 ## <param name="domain">
31428 ## <summary>
31429 @@ -73389,17 +76490,17 @@ interface(`corenet_dontaudit_send_rlogind_client_packets',`
31430 ## </param>
31431 ## <infoflow type="read" weight="10"/>
31432 #
31433 -interface(`corenet_receive_rlogind_client_packets',`
31434 +interface(`corenet_receive_rsh_client_packets',`
31435 gen_require(`
31436 - type rlogind_client_packet_t;
31437 + type rsh_client_packet_t;
31438 ')
31439
31440 - allow $1 rlogind_client_packet_t:packet recv;
31441 + allow $1 rsh_client_packet_t:packet recv;
31442 ')
31443
31444 ########################################
31445 ## <summary>
31446 -## Do not audit attempts to receive rlogind_client packets.
31447 +## Do not audit attempts to receive rsh_client packets.
31448 ## </summary>
31449 ## <param name="domain">
31450 ## <summary>
31451 @@ -73408,17 +76509,17 @@ interface(`corenet_receive_rlogind_client_packets',`
31452 ## </param>
31453 ## <infoflow type="none"/>
31454 #
31455 -interface(`corenet_dontaudit_receive_rlogind_client_packets',`
31456 +interface(`corenet_dontaudit_receive_rsh_client_packets',`
31457 gen_require(`
31458 - type rlogind_client_packet_t;
31459 + type rsh_client_packet_t;
31460 ')
31461
31462 - dontaudit $1 rlogind_client_packet_t:packet recv;
31463 + dontaudit $1 rsh_client_packet_t:packet recv;
31464 ')
31465
31466 ########################################
31467 ## <summary>
31468 -## Send and receive rlogind_client packets.
31469 +## Send and receive rsh_client packets.
31470 ## </summary>
31471 ## <param name="domain">
31472 ## <summary>
31473 @@ -73427,14 +76528,14 @@ interface(`corenet_dontaudit_receive_rlogind_client_packets',`
31474 ## </param>
31475 ## <infoflow type="both" weight="10"/>
31476 #
31477 -interface(`corenet_sendrecv_rlogind_client_packets',`
31478 - corenet_send_rlogind_client_packets($1)
31479 - corenet_receive_rlogind_client_packets($1)
31480 +interface(`corenet_sendrecv_rsh_client_packets',`
31481 + corenet_send_rsh_client_packets($1)
31482 + corenet_receive_rsh_client_packets($1)
31483 ')
31484
31485 ########################################
31486 ## <summary>
31487 -## Do not audit attempts to send and receive rlogind_client packets.
31488 +## Do not audit attempts to send and receive rsh_client packets.
31489 ## </summary>
31490 ## <param name="domain">
31491 ## <summary>
31492 @@ -73443,14 +76544,14 @@ interface(`corenet_sendrecv_rlogind_client_packets',`
31493 ## </param>
31494 ## <infoflow type="none"/>
31495 #
31496 -interface(`corenet_dontaudit_sendrecv_rlogind_client_packets',`
31497 - corenet_dontaudit_send_rlogind_client_packets($1)
31498 - corenet_dontaudit_receive_rlogind_client_packets($1)
31499 +interface(`corenet_dontaudit_sendrecv_rsh_client_packets',`
31500 + corenet_dontaudit_send_rsh_client_packets($1)
31501 + corenet_dontaudit_receive_rsh_client_packets($1)
31502 ')
31503
31504 ########################################
31505 ## <summary>
31506 -## Relabel packets to rlogind_client the packet type.
31507 +## Relabel packets to rsh_client the packet type.
31508 ## </summary>
31509 ## <param name="domain">
31510 ## <summary>
31511 @@ -73458,18 +76559,18 @@ interface(`corenet_dontaudit_sendrecv_rlogind_client_packets',`
31512 ## </summary>
31513 ## </param>
31514 #
31515 -interface(`corenet_relabelto_rlogind_client_packets',`
31516 +interface(`corenet_relabelto_rsh_client_packets',`
31517 gen_require(`
31518 - type rlogind_client_packet_t;
31519 + type rsh_client_packet_t;
31520 ')
31521
31522 - allow $1 rlogind_client_packet_t:packet relabelto;
31523 + allow $1 rsh_client_packet_t:packet relabelto;
31524 ')
31525
31526
31527 ########################################
31528 ## <summary>
31529 -## Send rlogind_server packets.
31530 +## Send rsh_server packets.
31531 ## </summary>
31532 ## <param name="domain">
31533 ## <summary>
31534 @@ -73478,17 +76579,17 @@ interface(`corenet_relabelto_rlogind_client_packets',`
31535 ## </param>
31536 ## <infoflow type="write" weight="10"/>
31537 #
31538 -interface(`corenet_send_rlogind_server_packets',`
31539 +interface(`corenet_send_rsh_server_packets',`
31540 gen_require(`
31541 - type rlogind_server_packet_t;
31542 + type rsh_server_packet_t;
31543 ')
31544
31545 - allow $1 rlogind_server_packet_t:packet send;
31546 + allow $1 rsh_server_packet_t:packet send;
31547 ')
31548
31549 ########################################
31550 ## <summary>
31551 -## Do not audit attempts to send rlogind_server packets.
31552 +## Do not audit attempts to send rsh_server packets.
31553 ## </summary>
31554 ## <param name="domain">
31555 ## <summary>
31556 @@ -73497,17 +76598,17 @@ interface(`corenet_send_rlogind_server_packets',`
31557 ## </param>
31558 ## <infoflow type="none"/>
31559 #
31560 -interface(`corenet_dontaudit_send_rlogind_server_packets',`
31561 +interface(`corenet_dontaudit_send_rsh_server_packets',`
31562 gen_require(`
31563 - type rlogind_server_packet_t;
31564 + type rsh_server_packet_t;
31565 ')
31566
31567 - dontaudit $1 rlogind_server_packet_t:packet send;
31568 + dontaudit $1 rsh_server_packet_t:packet send;
31569 ')
31570
31571 ########################################
31572 ## <summary>
31573 -## Receive rlogind_server packets.
31574 +## Receive rsh_server packets.
31575 ## </summary>
31576 ## <param name="domain">
31577 ## <summary>
31578 @@ -73516,17 +76617,17 @@ interface(`corenet_dontaudit_send_rlogind_server_packets',`
31579 ## </param>
31580 ## <infoflow type="read" weight="10"/>
31581 #
31582 -interface(`corenet_receive_rlogind_server_packets',`
31583 +interface(`corenet_receive_rsh_server_packets',`
31584 gen_require(`
31585 - type rlogind_server_packet_t;
31586 + type rsh_server_packet_t;
31587 ')
31588
31589 - allow $1 rlogind_server_packet_t:packet recv;
31590 + allow $1 rsh_server_packet_t:packet recv;
31591 ')
31592
31593 ########################################
31594 ## <summary>
31595 -## Do not audit attempts to receive rlogind_server packets.
31596 +## Do not audit attempts to receive rsh_server packets.
31597 ## </summary>
31598 ## <param name="domain">
31599 ## <summary>
31600 @@ -73535,17 +76636,17 @@ interface(`corenet_receive_rlogind_server_packets',`
31601 ## </param>
31602 ## <infoflow type="none"/>
31603 #
31604 -interface(`corenet_dontaudit_receive_rlogind_server_packets',`
31605 +interface(`corenet_dontaudit_receive_rsh_server_packets',`
31606 gen_require(`
31607 - type rlogind_server_packet_t;
31608 + type rsh_server_packet_t;
31609 ')
31610
31611 - dontaudit $1 rlogind_server_packet_t:packet recv;
31612 + dontaudit $1 rsh_server_packet_t:packet recv;
31613 ')
31614
31615 ########################################
31616 ## <summary>
31617 -## Send and receive rlogind_server packets.
31618 +## Send and receive rsh_server packets.
31619 ## </summary>
31620 ## <param name="domain">
31621 ## <summary>
31622 @@ -73554,14 +76655,14 @@ interface(`corenet_dontaudit_receive_rlogind_server_packets',`
31623 ## </param>
31624 ## <infoflow type="both" weight="10"/>
31625 #
31626 -interface(`corenet_sendrecv_rlogind_server_packets',`
31627 - corenet_send_rlogind_server_packets($1)
31628 - corenet_receive_rlogind_server_packets($1)
31629 +interface(`corenet_sendrecv_rsh_server_packets',`
31630 + corenet_send_rsh_server_packets($1)
31631 + corenet_receive_rsh_server_packets($1)
31632 ')
31633
31634 ########################################
31635 ## <summary>
31636 -## Do not audit attempts to send and receive rlogind_server packets.
31637 +## Do not audit attempts to send and receive rsh_server packets.
31638 ## </summary>
31639 ## <param name="domain">
31640 ## <summary>
31641 @@ -73570,14 +76671,14 @@ interface(`corenet_sendrecv_rlogind_server_packets',`
31642 ## </param>
31643 ## <infoflow type="none"/>
31644 #
31645 -interface(`corenet_dontaudit_sendrecv_rlogind_server_packets',`
31646 - corenet_dontaudit_send_rlogind_server_packets($1)
31647 - corenet_dontaudit_receive_rlogind_server_packets($1)
31648 +interface(`corenet_dontaudit_sendrecv_rsh_server_packets',`
31649 + corenet_dontaudit_send_rsh_server_packets($1)
31650 + corenet_dontaudit_receive_rsh_server_packets($1)
31651 ')
31652
31653 ########################################
31654 ## <summary>
31655 -## Relabel packets to rlogind_server the packet type.
31656 +## Relabel packets to rsh_server the packet type.
31657 ## </summary>
31658 ## <param name="domain">
31659 ## <summary>
31660 @@ -73585,12 +76686,12 @@ interface(`corenet_dontaudit_sendrecv_rlogind_server_packets',`
31661 ## </summary>
31662 ## </param>
31663 #
31664 -interface(`corenet_relabelto_rlogind_server_packets',`
31665 +interface(`corenet_relabelto_rsh_server_packets',`
31666 gen_require(`
31667 - type rlogind_server_packet_t;
31668 + type rsh_server_packet_t;
31669 ')
31670
31671 - allow $1 rlogind_server_packet_t:packet relabelto;
31672 + allow $1 rsh_server_packet_t:packet relabelto;
31673 ')
31674
31675
31676 @@ -73598,7 +76699,7 @@ interface(`corenet_relabelto_rlogind_server_packets',`
31677
31678 ########################################
31679 ## <summary>
31680 -## Send and receive TCP traffic on the rndc port.
31681 +## Send and receive TCP traffic on the rsync port.
31682 ## </summary>
31683 ## <param name="domain">
31684 ## <summary>
31685 @@ -73607,17 +76708,17 @@ interface(`corenet_relabelto_rlogind_server_packets',`
31686 ## </param>
31687 ## <infoflow type="both" weight="10"/>
31688 #
31689 -interface(`corenet_tcp_sendrecv_rndc_port',`
31690 +interface(`corenet_tcp_sendrecv_rsync_port',`
31691 gen_require(`
31692 - type rndc_port_t;
31693 + type rsync_port_t;
31694 ')
31695
31696 - allow $1 rndc_port_t:tcp_socket { send_msg recv_msg };
31697 + allow $1 rsync_port_t:tcp_socket { send_msg recv_msg };
31698 ')
31699
31700 ########################################
31701 ## <summary>
31702 -## Send UDP traffic on the rndc port.
31703 +## Send UDP traffic on the rsync port.
31704 ## </summary>
31705 ## <param name="domain">
31706 ## <summary>
31707 @@ -73626,17 +76727,17 @@ interface(`corenet_tcp_sendrecv_rndc_port',`
31708 ## </param>
31709 ## <infoflow type="write" weight="10"/>
31710 #
31711 -interface(`corenet_udp_send_rndc_port',`
31712 +interface(`corenet_udp_send_rsync_port',`
31713 gen_require(`
31714 - type rndc_port_t;
31715 + type rsync_port_t;
31716 ')
31717
31718 - allow $1 rndc_port_t:udp_socket send_msg;
31719 + allow $1 rsync_port_t:udp_socket send_msg;
31720 ')
31721
31722 ########################################
31723 ## <summary>
31724 -## Do not audit attempts to send UDP traffic on the rndc port.
31725 +## Do not audit attempts to send UDP traffic on the rsync port.
31726 ## </summary>
31727 ## <param name="domain">
31728 ## <summary>
31729 @@ -73645,17 +76746,17 @@ interface(`corenet_udp_send_rndc_port',`
31730 ## </param>
31731 ## <infoflow type="none"/>
31732 #
31733 -interface(`corenet_dontaudit_udp_send_rndc_port',`
31734 +interface(`corenet_dontaudit_udp_send_rsync_port',`
31735 gen_require(`
31736 - type rndc_port_t;
31737 + type rsync_port_t;
31738 ')
31739
31740 - dontaudit $1 rndc_port_t:udp_socket send_msg;
31741 + dontaudit $1 rsync_port_t:udp_socket send_msg;
31742 ')
31743
31744 ########################################
31745 ## <summary>
31746 -## Receive UDP traffic on the rndc port.
31747 +## Receive UDP traffic on the rsync port.
31748 ## </summary>
31749 ## <param name="domain">
31750 ## <summary>
31751 @@ -73664,17 +76765,17 @@ interface(`corenet_dontaudit_udp_send_rndc_port',`
31752 ## </param>
31753 ## <infoflow type="read" weight="10"/>
31754 #
31755 -interface(`corenet_udp_receive_rndc_port',`
31756 +interface(`corenet_udp_receive_rsync_port',`
31757 gen_require(`
31758 - type rndc_port_t;
31759 + type rsync_port_t;
31760 ')
31761
31762 - allow $1 rndc_port_t:udp_socket recv_msg;
31763 + allow $1 rsync_port_t:udp_socket recv_msg;
31764 ')
31765
31766 ########################################
31767 ## <summary>
31768 -## Do not audit attempts to receive UDP traffic on the rndc port.
31769 +## Do not audit attempts to receive UDP traffic on the rsync port.
31770 ## </summary>
31771 ## <param name="domain">
31772 ## <summary>
31773 @@ -73683,17 +76784,17 @@ interface(`corenet_udp_receive_rndc_port',`
31774 ## </param>
31775 ## <infoflow type="none"/>
31776 #
31777 -interface(`corenet_dontaudit_udp_receive_rndc_port',`
31778 +interface(`corenet_dontaudit_udp_receive_rsync_port',`
31779 gen_require(`
31780 - type rndc_port_t;
31781 + type rsync_port_t;
31782 ')
31783
31784 - dontaudit $1 rndc_port_t:udp_socket recv_msg;
31785 + dontaudit $1 rsync_port_t:udp_socket recv_msg;
31786 ')
31787
31788 ########################################
31789 ## <summary>
31790 -## Send and receive UDP traffic on the rndc port.
31791 +## Send and receive UDP traffic on the rsync port.
31792 ## </summary>
31793 ## <param name="domain">
31794 ## <summary>
31795 @@ -73702,15 +76803,15 @@ interface(`corenet_dontaudit_udp_receive_rndc_port',`
31796 ## </param>
31797 ## <infoflow type="both" weight="10"/>
31798 #
31799 -interface(`corenet_udp_sendrecv_rndc_port',`
31800 - corenet_udp_send_rndc_port($1)
31801 - corenet_udp_receive_rndc_port($1)
31802 +interface(`corenet_udp_sendrecv_rsync_port',`
31803 + corenet_udp_send_rsync_port($1)
31804 + corenet_udp_receive_rsync_port($1)
31805 ')
31806
31807 ########################################
31808 ## <summary>
31809 ## Do not audit attempts to send and receive
31810 -## UDP traffic on the rndc port.
31811 +## UDP traffic on the rsync port.
31812 ## </summary>
31813 ## <param name="domain">
31814 ## <summary>
31815 @@ -73719,14 +76820,14 @@ interface(`corenet_udp_sendrecv_rndc_port',`
31816 ## </param>
31817 ## <infoflow type="none"/>
31818 #
31819 -interface(`corenet_dontaudit_udp_sendrecv_rndc_port',`
31820 - corenet_dontaudit_udp_send_rndc_port($1)
31821 - corenet_dontaudit_udp_receive_rndc_port($1)
31822 +interface(`corenet_dontaudit_udp_sendrecv_rsync_port',`
31823 + corenet_dontaudit_udp_send_rsync_port($1)
31824 + corenet_dontaudit_udp_receive_rsync_port($1)
31825 ')
31826
31827 ########################################
31828 ## <summary>
31829 -## Bind TCP sockets to the rndc port.
31830 +## Bind TCP sockets to the rsync port.
31831 ## </summary>
31832 ## <param name="domain">
31833 ## <summary>
31834 @@ -73735,18 +76836,18 @@ interface(`corenet_dontaudit_udp_sendrecv_rndc_port',`
31835 ## </param>
31836 ## <infoflow type="none"/>
31837 #
31838 -interface(`corenet_tcp_bind_rndc_port',`
31839 +interface(`corenet_tcp_bind_rsync_port',`
31840 gen_require(`
31841 - type rndc_port_t;
31842 + type rsync_port_t;
31843 ')
31844
31845 - allow $1 rndc_port_t:tcp_socket name_bind;
31846 + allow $1 rsync_port_t:tcp_socket name_bind;
31847 allow $1 self:capability net_bind_service;
31848 ')
31849
31850 ########################################
31851 ## <summary>
31852 -## Bind UDP sockets to the rndc port.
31853 +## Bind UDP sockets to the rsync port.
31854 ## </summary>
31855 ## <param name="domain">
31856 ## <summary>
31857 @@ -73755,18 +76856,18 @@ interface(`corenet_tcp_bind_rndc_port',`
31858 ## </param>
31859 ## <infoflow type="none"/>
31860 #
31861 -interface(`corenet_udp_bind_rndc_port',`
31862 +interface(`corenet_udp_bind_rsync_port',`
31863 gen_require(`
31864 - type rndc_port_t;
31865 + type rsync_port_t;
31866 ')
31867
31868 - allow $1 rndc_port_t:udp_socket name_bind;
31869 + allow $1 rsync_port_t:udp_socket name_bind;
31870 allow $1 self:capability net_bind_service;
31871 ')
31872
31873 ########################################
31874 ## <summary>
31875 -## Make a TCP connection to the rndc port.
31876 +## Make a TCP connection to the rsync port.
31877 ## </summary>
31878 ## <param name="domain">
31879 ## <summary>
31880 @@ -73774,18 +76875,18 @@ interface(`corenet_udp_bind_rndc_port',`
31881 ## </summary>
31882 ## </param>
31883 #
31884 -interface(`corenet_tcp_connect_rndc_port',`
31885 +interface(`corenet_tcp_connect_rsync_port',`
31886 gen_require(`
31887 - type rndc_port_t;
31888 + type rsync_port_t;
31889 ')
31890
31891 - allow $1 rndc_port_t:tcp_socket name_connect;
31892 + allow $1 rsync_port_t:tcp_socket name_connect;
31893 ')
31894
31895
31896 ########################################
31897 ## <summary>
31898 -## Send rndc_client packets.
31899 +## Send rsync_client packets.
31900 ## </summary>
31901 ## <param name="domain">
31902 ## <summary>
31903 @@ -73794,17 +76895,17 @@ interface(`corenet_tcp_connect_rndc_port',`
31904 ## </param>
31905 ## <infoflow type="write" weight="10"/>
31906 #
31907 -interface(`corenet_send_rndc_client_packets',`
31908 +interface(`corenet_send_rsync_client_packets',`
31909 gen_require(`
31910 - type rndc_client_packet_t;
31911 + type rsync_client_packet_t;
31912 ')
31913
31914 - allow $1 rndc_client_packet_t:packet send;
31915 + allow $1 rsync_client_packet_t:packet send;
31916 ')
31917
31918 ########################################
31919 ## <summary>
31920 -## Do not audit attempts to send rndc_client packets.
31921 +## Do not audit attempts to send rsync_client packets.
31922 ## </summary>
31923 ## <param name="domain">
31924 ## <summary>
31925 @@ -73813,17 +76914,17 @@ interface(`corenet_send_rndc_client_packets',`
31926 ## </param>
31927 ## <infoflow type="none"/>
31928 #
31929 -interface(`corenet_dontaudit_send_rndc_client_packets',`
31930 +interface(`corenet_dontaudit_send_rsync_client_packets',`
31931 gen_require(`
31932 - type rndc_client_packet_t;
31933 + type rsync_client_packet_t;
31934 ')
31935
31936 - dontaudit $1 rndc_client_packet_t:packet send;
31937 + dontaudit $1 rsync_client_packet_t:packet send;
31938 ')
31939
31940 ########################################
31941 ## <summary>
31942 -## Receive rndc_client packets.
31943 +## Receive rsync_client packets.
31944 ## </summary>
31945 ## <param name="domain">
31946 ## <summary>
31947 @@ -73832,17 +76933,17 @@ interface(`corenet_dontaudit_send_rndc_client_packets',`
31948 ## </param>
31949 ## <infoflow type="read" weight="10"/>
31950 #
31951 -interface(`corenet_receive_rndc_client_packets',`
31952 +interface(`corenet_receive_rsync_client_packets',`
31953 gen_require(`
31954 - type rndc_client_packet_t;
31955 + type rsync_client_packet_t;
31956 ')
31957
31958 - allow $1 rndc_client_packet_t:packet recv;
31959 + allow $1 rsync_client_packet_t:packet recv;
31960 ')
31961
31962 ########################################
31963 ## <summary>
31964 -## Do not audit attempts to receive rndc_client packets.
31965 +## Do not audit attempts to receive rsync_client packets.
31966 ## </summary>
31967 ## <param name="domain">
31968 ## <summary>
31969 @@ -73851,17 +76952,17 @@ interface(`corenet_receive_rndc_client_packets',`
31970 ## </param>
31971 ## <infoflow type="none"/>
31972 #
31973 -interface(`corenet_dontaudit_receive_rndc_client_packets',`
31974 +interface(`corenet_dontaudit_receive_rsync_client_packets',`
31975 gen_require(`
31976 - type rndc_client_packet_t;
31977 + type rsync_client_packet_t;
31978 ')
31979
31980 - dontaudit $1 rndc_client_packet_t:packet recv;
31981 + dontaudit $1 rsync_client_packet_t:packet recv;
31982 ')
31983
31984 ########################################
31985 ## <summary>
31986 -## Send and receive rndc_client packets.
31987 +## Send and receive rsync_client packets.
31988 ## </summary>
31989 ## <param name="domain">
31990 ## <summary>
31991 @@ -73870,14 +76971,14 @@ interface(`corenet_dontaudit_receive_rndc_client_packets',`
31992 ## </param>
31993 ## <infoflow type="both" weight="10"/>
31994 #
31995 -interface(`corenet_sendrecv_rndc_client_packets',`
31996 - corenet_send_rndc_client_packets($1)
31997 - corenet_receive_rndc_client_packets($1)
31998 +interface(`corenet_sendrecv_rsync_client_packets',`
31999 + corenet_send_rsync_client_packets($1)
32000 + corenet_receive_rsync_client_packets($1)
32001 ')
32002
32003 ########################################
32004 ## <summary>
32005 -## Do not audit attempts to send and receive rndc_client packets.
32006 +## Do not audit attempts to send and receive rsync_client packets.
32007 ## </summary>
32008 ## <param name="domain">
32009 ## <summary>
32010 @@ -73886,14 +76987,14 @@ interface(`corenet_sendrecv_rndc_client_packets',`
32011 ## </param>
32012 ## <infoflow type="none"/>
32013 #
32014 -interface(`corenet_dontaudit_sendrecv_rndc_client_packets',`
32015 - corenet_dontaudit_send_rndc_client_packets($1)
32016 - corenet_dontaudit_receive_rndc_client_packets($1)
32017 +interface(`corenet_dontaudit_sendrecv_rsync_client_packets',`
32018 + corenet_dontaudit_send_rsync_client_packets($1)
32019 + corenet_dontaudit_receive_rsync_client_packets($1)
32020 ')
32021
32022 ########################################
32023 ## <summary>
32024 -## Relabel packets to rndc_client the packet type.
32025 +## Relabel packets to rsync_client the packet type.
32026 ## </summary>
32027 ## <param name="domain">
32028 ## <summary>
32029 @@ -73901,18 +77002,18 @@ interface(`corenet_dontaudit_sendrecv_rndc_client_packets',`
32030 ## </summary>
32031 ## </param>
32032 #
32033 -interface(`corenet_relabelto_rndc_client_packets',`
32034 +interface(`corenet_relabelto_rsync_client_packets',`
32035 gen_require(`
32036 - type rndc_client_packet_t;
32037 + type rsync_client_packet_t;
32038 ')
32039
32040 - allow $1 rndc_client_packet_t:packet relabelto;
32041 + allow $1 rsync_client_packet_t:packet relabelto;
32042 ')
32043
32044
32045 ########################################
32046 ## <summary>
32047 -## Send rndc_server packets.
32048 +## Send rsync_server packets.
32049 ## </summary>
32050 ## <param name="domain">
32051 ## <summary>
32052 @@ -73921,17 +77022,17 @@ interface(`corenet_relabelto_rndc_client_packets',`
32053 ## </param>
32054 ## <infoflow type="write" weight="10"/>
32055 #
32056 -interface(`corenet_send_rndc_server_packets',`
32057 +interface(`corenet_send_rsync_server_packets',`
32058 gen_require(`
32059 - type rndc_server_packet_t;
32060 + type rsync_server_packet_t;
32061 ')
32062
32063 - allow $1 rndc_server_packet_t:packet send;
32064 + allow $1 rsync_server_packet_t:packet send;
32065 ')
32066
32067 ########################################
32068 ## <summary>
32069 -## Do not audit attempts to send rndc_server packets.
32070 +## Do not audit attempts to send rsync_server packets.
32071 ## </summary>
32072 ## <param name="domain">
32073 ## <summary>
32074 @@ -73940,17 +77041,17 @@ interface(`corenet_send_rndc_server_packets',`
32075 ## </param>
32076 ## <infoflow type="none"/>
32077 #
32078 -interface(`corenet_dontaudit_send_rndc_server_packets',`
32079 +interface(`corenet_dontaudit_send_rsync_server_packets',`
32080 gen_require(`
32081 - type rndc_server_packet_t;
32082 + type rsync_server_packet_t;
32083 ')
32084
32085 - dontaudit $1 rndc_server_packet_t:packet send;
32086 + dontaudit $1 rsync_server_packet_t:packet send;
32087 ')
32088
32089 ########################################
32090 ## <summary>
32091 -## Receive rndc_server packets.
32092 +## Receive rsync_server packets.
32093 ## </summary>
32094 ## <param name="domain">
32095 ## <summary>
32096 @@ -73959,17 +77060,17 @@ interface(`corenet_dontaudit_send_rndc_server_packets',`
32097 ## </param>
32098 ## <infoflow type="read" weight="10"/>
32099 #
32100 -interface(`corenet_receive_rndc_server_packets',`
32101 +interface(`corenet_receive_rsync_server_packets',`
32102 gen_require(`
32103 - type rndc_server_packet_t;
32104 + type rsync_server_packet_t;
32105 ')
32106
32107 - allow $1 rndc_server_packet_t:packet recv;
32108 + allow $1 rsync_server_packet_t:packet recv;
32109 ')
32110
32111 ########################################
32112 ## <summary>
32113 -## Do not audit attempts to receive rndc_server packets.
32114 +## Do not audit attempts to receive rsync_server packets.
32115 ## </summary>
32116 ## <param name="domain">
32117 ## <summary>
32118 @@ -73978,17 +77079,17 @@ interface(`corenet_receive_rndc_server_packets',`
32119 ## </param>
32120 ## <infoflow type="none"/>
32121 #
32122 -interface(`corenet_dontaudit_receive_rndc_server_packets',`
32123 +interface(`corenet_dontaudit_receive_rsync_server_packets',`
32124 gen_require(`
32125 - type rndc_server_packet_t;
32126 + type rsync_server_packet_t;
32127 ')
32128
32129 - dontaudit $1 rndc_server_packet_t:packet recv;
32130 + dontaudit $1 rsync_server_packet_t:packet recv;
32131 ')
32132
32133 ########################################
32134 ## <summary>
32135 -## Send and receive rndc_server packets.
32136 +## Send and receive rsync_server packets.
32137 ## </summary>
32138 ## <param name="domain">
32139 ## <summary>
32140 @@ -73997,14 +77098,14 @@ interface(`corenet_dontaudit_receive_rndc_server_packets',`
32141 ## </param>
32142 ## <infoflow type="both" weight="10"/>
32143 #
32144 -interface(`corenet_sendrecv_rndc_server_packets',`
32145 - corenet_send_rndc_server_packets($1)
32146 - corenet_receive_rndc_server_packets($1)
32147 +interface(`corenet_sendrecv_rsync_server_packets',`
32148 + corenet_send_rsync_server_packets($1)
32149 + corenet_receive_rsync_server_packets($1)
32150 ')
32151
32152 ########################################
32153 ## <summary>
32154 -## Do not audit attempts to send and receive rndc_server packets.
32155 +## Do not audit attempts to send and receive rsync_server packets.
32156 ## </summary>
32157 ## <param name="domain">
32158 ## <summary>
32159 @@ -74013,14 +77114,14 @@ interface(`corenet_sendrecv_rndc_server_packets',`
32160 ## </param>
32161 ## <infoflow type="none"/>
32162 #
32163 -interface(`corenet_dontaudit_sendrecv_rndc_server_packets',`
32164 - corenet_dontaudit_send_rndc_server_packets($1)
32165 - corenet_dontaudit_receive_rndc_server_packets($1)
32166 +interface(`corenet_dontaudit_sendrecv_rsync_server_packets',`
32167 + corenet_dontaudit_send_rsync_server_packets($1)
32168 + corenet_dontaudit_receive_rsync_server_packets($1)
32169 ')
32170
32171 ########################################
32172 ## <summary>
32173 -## Relabel packets to rndc_server the packet type.
32174 +## Relabel packets to rsync_server the packet type.
32175 ## </summary>
32176 ## <param name="domain">
32177 ## <summary>
32178 @@ -74028,12 +77129,12 @@ interface(`corenet_dontaudit_sendrecv_rndc_server_packets',`
32179 ## </summary>
32180 ## </param>
32181 #
32182 -interface(`corenet_relabelto_rndc_server_packets',`
32183 +interface(`corenet_relabelto_rsync_server_packets',`
32184 gen_require(`
32185 - type rndc_server_packet_t;
32186 + type rsync_server_packet_t;
32187 ')
32188
32189 - allow $1 rndc_server_packet_t:packet relabelto;
32190 + allow $1 rsync_server_packet_t:packet relabelto;
32191 ')
32192
32193
32194 @@ -74041,7 +77142,7 @@ interface(`corenet_relabelto_rndc_server_packets',`
32195
32196 ########################################
32197 ## <summary>
32198 -## Send and receive TCP traffic on the router port.
32199 +## Send and receive TCP traffic on the rtorrent port.
32200 ## </summary>
32201 ## <param name="domain">
32202 ## <summary>
32203 @@ -74050,17 +77151,17 @@ interface(`corenet_relabelto_rndc_server_packets',`
32204 ## </param>
32205 ## <infoflow type="both" weight="10"/>
32206 #
32207 -interface(`corenet_tcp_sendrecv_router_port',`
32208 +interface(`corenet_tcp_sendrecv_rtorrent_port',`
32209 gen_require(`
32210 - type router_port_t;
32211 + type rtorrent_port_t;
32212 ')
32213
32214 - allow $1 router_port_t:tcp_socket { send_msg recv_msg };
32215 + allow $1 rtorrent_port_t:tcp_socket { send_msg recv_msg };
32216 ')
32217
32218 ########################################
32219 ## <summary>
32220 -## Send UDP traffic on the router port.
32221 +## Send UDP traffic on the rtorrent port.
32222 ## </summary>
32223 ## <param name="domain">
32224 ## <summary>
32225 @@ -74069,17 +77170,17 @@ interface(`corenet_tcp_sendrecv_router_port',`
32226 ## </param>
32227 ## <infoflow type="write" weight="10"/>
32228 #
32229 -interface(`corenet_udp_send_router_port',`
32230 +interface(`corenet_udp_send_rtorrent_port',`
32231 gen_require(`
32232 - type router_port_t;
32233 + type rtorrent_port_t;
32234 ')
32235
32236 - allow $1 router_port_t:udp_socket send_msg;
32237 + allow $1 rtorrent_port_t:udp_socket send_msg;
32238 ')
32239
32240 ########################################
32241 ## <summary>
32242 -## Do not audit attempts to send UDP traffic on the router port.
32243 +## Do not audit attempts to send UDP traffic on the rtorrent port.
32244 ## </summary>
32245 ## <param name="domain">
32246 ## <summary>
32247 @@ -74088,17 +77189,17 @@ interface(`corenet_udp_send_router_port',`
32248 ## </param>
32249 ## <infoflow type="none"/>
32250 #
32251 -interface(`corenet_dontaudit_udp_send_router_port',`
32252 +interface(`corenet_dontaudit_udp_send_rtorrent_port',`
32253 gen_require(`
32254 - type router_port_t;
32255 + type rtorrent_port_t;
32256 ')
32257
32258 - dontaudit $1 router_port_t:udp_socket send_msg;
32259 + dontaudit $1 rtorrent_port_t:udp_socket send_msg;
32260 ')
32261
32262 ########################################
32263 ## <summary>
32264 -## Receive UDP traffic on the router port.
32265 +## Receive UDP traffic on the rtorrent port.
32266 ## </summary>
32267 ## <param name="domain">
32268 ## <summary>
32269 @@ -74107,17 +77208,17 @@ interface(`corenet_dontaudit_udp_send_router_port',`
32270 ## </param>
32271 ## <infoflow type="read" weight="10"/>
32272 #
32273 -interface(`corenet_udp_receive_router_port',`
32274 +interface(`corenet_udp_receive_rtorrent_port',`
32275 gen_require(`
32276 - type router_port_t;
32277 + type rtorrent_port_t;
32278 ')
32279
32280 - allow $1 router_port_t:udp_socket recv_msg;
32281 + allow $1 rtorrent_port_t:udp_socket recv_msg;
32282 ')
32283
32284 ########################################
32285 ## <summary>
32286 -## Do not audit attempts to receive UDP traffic on the router port.
32287 +## Do not audit attempts to receive UDP traffic on the rtorrent port.
32288 ## </summary>
32289 ## <param name="domain">
32290 ## <summary>
32291 @@ -74126,17 +77227,17 @@ interface(`corenet_udp_receive_router_port',`
32292 ## </param>
32293 ## <infoflow type="none"/>
32294 #
32295 -interface(`corenet_dontaudit_udp_receive_router_port',`
32296 +interface(`corenet_dontaudit_udp_receive_rtorrent_port',`
32297 gen_require(`
32298 - type router_port_t;
32299 + type rtorrent_port_t;
32300 ')
32301
32302 - dontaudit $1 router_port_t:udp_socket recv_msg;
32303 + dontaudit $1 rtorrent_port_t:udp_socket recv_msg;
32304 ')
32305
32306 ########################################
32307 ## <summary>
32308 -## Send and receive UDP traffic on the router port.
32309 +## Send and receive UDP traffic on the rtorrent port.
32310 ## </summary>
32311 ## <param name="domain">
32312 ## <summary>
32313 @@ -74145,15 +77246,15 @@ interface(`corenet_dontaudit_udp_receive_router_port',`
32314 ## </param>
32315 ## <infoflow type="both" weight="10"/>
32316 #
32317 -interface(`corenet_udp_sendrecv_router_port',`
32318 - corenet_udp_send_router_port($1)
32319 - corenet_udp_receive_router_port($1)
32320 +interface(`corenet_udp_sendrecv_rtorrent_port',`
32321 + corenet_udp_send_rtorrent_port($1)
32322 + corenet_udp_receive_rtorrent_port($1)
32323 ')
32324
32325 ########################################
32326 ## <summary>
32327 ## Do not audit attempts to send and receive
32328 -## UDP traffic on the router port.
32329 +## UDP traffic on the rtorrent port.
32330 ## </summary>
32331 ## <param name="domain">
32332 ## <summary>
32333 @@ -74162,14 +77263,14 @@ interface(`corenet_udp_sendrecv_router_port',`
32334 ## </param>
32335 ## <infoflow type="none"/>
32336 #
32337 -interface(`corenet_dontaudit_udp_sendrecv_router_port',`
32338 - corenet_dontaudit_udp_send_router_port($1)
32339 - corenet_dontaudit_udp_receive_router_port($1)
32340 +interface(`corenet_dontaudit_udp_sendrecv_rtorrent_port',`
32341 + corenet_dontaudit_udp_send_rtorrent_port($1)
32342 + corenet_dontaudit_udp_receive_rtorrent_port($1)
32343 ')
32344
32345 ########################################
32346 ## <summary>
32347 -## Bind TCP sockets to the router port.
32348 +## Bind TCP sockets to the rtorrent port.
32349 ## </summary>
32350 ## <param name="domain">
32351 ## <summary>
32352 @@ -74178,18 +77279,18 @@ interface(`corenet_dontaudit_udp_sendrecv_router_port',`
32353 ## </param>
32354 ## <infoflow type="none"/>
32355 #
32356 -interface(`corenet_tcp_bind_router_port',`
32357 +interface(`corenet_tcp_bind_rtorrent_port',`
32358 gen_require(`
32359 - type router_port_t;
32360 + type rtorrent_port_t;
32361 ')
32362
32363 - allow $1 router_port_t:tcp_socket name_bind;
32364 - allow $1 self:capability net_bind_service;
32365 + allow $1 rtorrent_port_t:tcp_socket name_bind;
32366 +
32367 ')
32368
32369 ########################################
32370 ## <summary>
32371 -## Bind UDP sockets to the router port.
32372 +## Bind UDP sockets to the rtorrent port.
32373 ## </summary>
32374 ## <param name="domain">
32375 ## <summary>
32376 @@ -74198,18 +77299,18 @@ interface(`corenet_tcp_bind_router_port',`
32377 ## </param>
32378 ## <infoflow type="none"/>
32379 #
32380 -interface(`corenet_udp_bind_router_port',`
32381 +interface(`corenet_udp_bind_rtorrent_port',`
32382 gen_require(`
32383 - type router_port_t;
32384 + type rtorrent_port_t;
32385 ')
32386
32387 - allow $1 router_port_t:udp_socket name_bind;
32388 - allow $1 self:capability net_bind_service;
32389 + allow $1 rtorrent_port_t:udp_socket name_bind;
32390 +
32391 ')
32392
32393 ########################################
32394 ## <summary>
32395 -## Make a TCP connection to the router port.
32396 +## Make a TCP connection to the rtorrent port.
32397 ## </summary>
32398 ## <param name="domain">
32399 ## <summary>
32400 @@ -74217,18 +77318,18 @@ interface(`corenet_udp_bind_router_port',`
32401 ## </summary>
32402 ## </param>
32403 #
32404 -interface(`corenet_tcp_connect_router_port',`
32405 +interface(`corenet_tcp_connect_rtorrent_port',`
32406 gen_require(`
32407 - type router_port_t;
32408 + type rtorrent_port_t;
32409 ')
32410
32411 - allow $1 router_port_t:tcp_socket name_connect;
32412 + allow $1 rtorrent_port_t:tcp_socket name_connect;
32413 ')
32414
32415
32416 ########################################
32417 ## <summary>
32418 -## Send router_client packets.
32419 +## Send rtorrent_client packets.
32420 ## </summary>
32421 ## <param name="domain">
32422 ## <summary>
32423 @@ -74237,17 +77338,17 @@ interface(`corenet_tcp_connect_router_port',`
32424 ## </param>
32425 ## <infoflow type="write" weight="10"/>
32426 #
32427 -interface(`corenet_send_router_client_packets',`
32428 +interface(`corenet_send_rtorrent_client_packets',`
32429 gen_require(`
32430 - type router_client_packet_t;
32431 + type rtorrent_client_packet_t;
32432 ')
32433
32434 - allow $1 router_client_packet_t:packet send;
32435 + allow $1 rtorrent_client_packet_t:packet send;
32436 ')
32437
32438 ########################################
32439 ## <summary>
32440 -## Do not audit attempts to send router_client packets.
32441 +## Do not audit attempts to send rtorrent_client packets.
32442 ## </summary>
32443 ## <param name="domain">
32444 ## <summary>
32445 @@ -74256,17 +77357,17 @@ interface(`corenet_send_router_client_packets',`
32446 ## </param>
32447 ## <infoflow type="none"/>
32448 #
32449 -interface(`corenet_dontaudit_send_router_client_packets',`
32450 +interface(`corenet_dontaudit_send_rtorrent_client_packets',`
32451 gen_require(`
32452 - type router_client_packet_t;
32453 + type rtorrent_client_packet_t;
32454 ')
32455
32456 - dontaudit $1 router_client_packet_t:packet send;
32457 + dontaudit $1 rtorrent_client_packet_t:packet send;
32458 ')
32459
32460 ########################################
32461 ## <summary>
32462 -## Receive router_client packets.
32463 +## Receive rtorrent_client packets.
32464 ## </summary>
32465 ## <param name="domain">
32466 ## <summary>
32467 @@ -74275,17 +77376,17 @@ interface(`corenet_dontaudit_send_router_client_packets',`
32468 ## </param>
32469 ## <infoflow type="read" weight="10"/>
32470 #
32471 -interface(`corenet_receive_router_client_packets',`
32472 +interface(`corenet_receive_rtorrent_client_packets',`
32473 gen_require(`
32474 - type router_client_packet_t;
32475 + type rtorrent_client_packet_t;
32476 ')
32477
32478 - allow $1 router_client_packet_t:packet recv;
32479 + allow $1 rtorrent_client_packet_t:packet recv;
32480 ')
32481
32482 ########################################
32483 ## <summary>
32484 -## Do not audit attempts to receive router_client packets.
32485 +## Do not audit attempts to receive rtorrent_client packets.
32486 ## </summary>
32487 ## <param name="domain">
32488 ## <summary>
32489 @@ -74294,17 +77395,17 @@ interface(`corenet_receive_router_client_packets',`
32490 ## </param>
32491 ## <infoflow type="none"/>
32492 #
32493 -interface(`corenet_dontaudit_receive_router_client_packets',`
32494 +interface(`corenet_dontaudit_receive_rtorrent_client_packets',`
32495 gen_require(`
32496 - type router_client_packet_t;
32497 + type rtorrent_client_packet_t;
32498 ')
32499
32500 - dontaudit $1 router_client_packet_t:packet recv;
32501 + dontaudit $1 rtorrent_client_packet_t:packet recv;
32502 ')
32503
32504 ########################################
32505 ## <summary>
32506 -## Send and receive router_client packets.
32507 +## Send and receive rtorrent_client packets.
32508 ## </summary>
32509 ## <param name="domain">
32510 ## <summary>
32511 @@ -74313,14 +77414,14 @@ interface(`corenet_dontaudit_receive_router_client_packets',`
32512 ## </param>
32513 ## <infoflow type="both" weight="10"/>
32514 #
32515 -interface(`corenet_sendrecv_router_client_packets',`
32516 - corenet_send_router_client_packets($1)
32517 - corenet_receive_router_client_packets($1)
32518 +interface(`corenet_sendrecv_rtorrent_client_packets',`
32519 + corenet_send_rtorrent_client_packets($1)
32520 + corenet_receive_rtorrent_client_packets($1)
32521 ')
32522
32523 ########################################
32524 ## <summary>
32525 -## Do not audit attempts to send and receive router_client packets.
32526 +## Do not audit attempts to send and receive rtorrent_client packets.
32527 ## </summary>
32528 ## <param name="domain">
32529 ## <summary>
32530 @@ -74329,14 +77430,14 @@ interface(`corenet_sendrecv_router_client_packets',`
32531 ## </param>
32532 ## <infoflow type="none"/>
32533 #
32534 -interface(`corenet_dontaudit_sendrecv_router_client_packets',`
32535 - corenet_dontaudit_send_router_client_packets($1)
32536 - corenet_dontaudit_receive_router_client_packets($1)
32537 +interface(`corenet_dontaudit_sendrecv_rtorrent_client_packets',`
32538 + corenet_dontaudit_send_rtorrent_client_packets($1)
32539 + corenet_dontaudit_receive_rtorrent_client_packets($1)
32540 ')
32541
32542 ########################################
32543 ## <summary>
32544 -## Relabel packets to router_client the packet type.
32545 +## Relabel packets to rtorrent_client the packet type.
32546 ## </summary>
32547 ## <param name="domain">
32548 ## <summary>
32549 @@ -74344,18 +77445,18 @@ interface(`corenet_dontaudit_sendrecv_router_client_packets',`
32550 ## </summary>
32551 ## </param>
32552 #
32553 -interface(`corenet_relabelto_router_client_packets',`
32554 +interface(`corenet_relabelto_rtorrent_client_packets',`
32555 gen_require(`
32556 - type router_client_packet_t;
32557 + type rtorrent_client_packet_t;
32558 ')
32559
32560 - allow $1 router_client_packet_t:packet relabelto;
32561 + allow $1 rtorrent_client_packet_t:packet relabelto;
32562 ')
32563
32564
32565 ########################################
32566 ## <summary>
32567 -## Send router_server packets.
32568 +## Send rtorrent_server packets.
32569 ## </summary>
32570 ## <param name="domain">
32571 ## <summary>
32572 @@ -74364,17 +77465,17 @@ interface(`corenet_relabelto_router_client_packets',`
32573 ## </param>
32574 ## <infoflow type="write" weight="10"/>
32575 #
32576 -interface(`corenet_send_router_server_packets',`
32577 +interface(`corenet_send_rtorrent_server_packets',`
32578 gen_require(`
32579 - type router_server_packet_t;
32580 + type rtorrent_server_packet_t;
32581 ')
32582
32583 - allow $1 router_server_packet_t:packet send;
32584 + allow $1 rtorrent_server_packet_t:packet send;
32585 ')
32586
32587 ########################################
32588 ## <summary>
32589 -## Do not audit attempts to send router_server packets.
32590 +## Do not audit attempts to send rtorrent_server packets.
32591 ## </summary>
32592 ## <param name="domain">
32593 ## <summary>
32594 @@ -74383,17 +77484,17 @@ interface(`corenet_send_router_server_packets',`
32595 ## </param>
32596 ## <infoflow type="none"/>
32597 #
32598 -interface(`corenet_dontaudit_send_router_server_packets',`
32599 +interface(`corenet_dontaudit_send_rtorrent_server_packets',`
32600 gen_require(`
32601 - type router_server_packet_t;
32602 + type rtorrent_server_packet_t;
32603 ')
32604
32605 - dontaudit $1 router_server_packet_t:packet send;
32606 + dontaudit $1 rtorrent_server_packet_t:packet send;
32607 ')
32608
32609 ########################################
32610 ## <summary>
32611 -## Receive router_server packets.
32612 +## Receive rtorrent_server packets.
32613 ## </summary>
32614 ## <param name="domain">
32615 ## <summary>
32616 @@ -74402,17 +77503,17 @@ interface(`corenet_dontaudit_send_router_server_packets',`
32617 ## </param>
32618 ## <infoflow type="read" weight="10"/>
32619 #
32620 -interface(`corenet_receive_router_server_packets',`
32621 +interface(`corenet_receive_rtorrent_server_packets',`
32622 gen_require(`
32623 - type router_server_packet_t;
32624 + type rtorrent_server_packet_t;
32625 ')
32626
32627 - allow $1 router_server_packet_t:packet recv;
32628 + allow $1 rtorrent_server_packet_t:packet recv;
32629 ')
32630
32631 ########################################
32632 ## <summary>
32633 -## Do not audit attempts to receive router_server packets.
32634 +## Do not audit attempts to receive rtorrent_server packets.
32635 ## </summary>
32636 ## <param name="domain">
32637 ## <summary>
32638 @@ -74421,17 +77522,17 @@ interface(`corenet_receive_router_server_packets',`
32639 ## </param>
32640 ## <infoflow type="none"/>
32641 #
32642 -interface(`corenet_dontaudit_receive_router_server_packets',`
32643 +interface(`corenet_dontaudit_receive_rtorrent_server_packets',`
32644 gen_require(`
32645 - type router_server_packet_t;
32646 + type rtorrent_server_packet_t;
32647 ')
32648
32649 - dontaudit $1 router_server_packet_t:packet recv;
32650 + dontaudit $1 rtorrent_server_packet_t:packet recv;
32651 ')
32652
32653 ########################################
32654 ## <summary>
32655 -## Send and receive router_server packets.
32656 +## Send and receive rtorrent_server packets.
32657 ## </summary>
32658 ## <param name="domain">
32659 ## <summary>
32660 @@ -74440,14 +77541,14 @@ interface(`corenet_dontaudit_receive_router_server_packets',`
32661 ## </param>
32662 ## <infoflow type="both" weight="10"/>
32663 #
32664 -interface(`corenet_sendrecv_router_server_packets',`
32665 - corenet_send_router_server_packets($1)
32666 - corenet_receive_router_server_packets($1)
32667 +interface(`corenet_sendrecv_rtorrent_server_packets',`
32668 + corenet_send_rtorrent_server_packets($1)
32669 + corenet_receive_rtorrent_server_packets($1)
32670 ')
32671
32672 ########################################
32673 ## <summary>
32674 -## Do not audit attempts to send and receive router_server packets.
32675 +## Do not audit attempts to send and receive rtorrent_server packets.
32676 ## </summary>
32677 ## <param name="domain">
32678 ## <summary>
32679 @@ -74456,14 +77557,14 @@ interface(`corenet_sendrecv_router_server_packets',`
32680 ## </param>
32681 ## <infoflow type="none"/>
32682 #
32683 -interface(`corenet_dontaudit_sendrecv_router_server_packets',`
32684 - corenet_dontaudit_send_router_server_packets($1)
32685 - corenet_dontaudit_receive_router_server_packets($1)
32686 +interface(`corenet_dontaudit_sendrecv_rtorrent_server_packets',`
32687 + corenet_dontaudit_send_rtorrent_server_packets($1)
32688 + corenet_dontaudit_receive_rtorrent_server_packets($1)
32689 ')
32690
32691 ########################################
32692 ## <summary>
32693 -## Relabel packets to router_server the packet type.
32694 +## Relabel packets to rtorrent_server the packet type.
32695 ## </summary>
32696 ## <param name="domain">
32697 ## <summary>
32698 @@ -74471,12 +77572,12 @@ interface(`corenet_dontaudit_sendrecv_router_server_packets',`
32699 ## </summary>
32700 ## </param>
32701 #
32702 -interface(`corenet_relabelto_router_server_packets',`
32703 +interface(`corenet_relabelto_rtorrent_server_packets',`
32704 gen_require(`
32705 - type router_server_packet_t;
32706 + type rtorrent_server_packet_t;
32707 ')
32708
32709 - allow $1 router_server_packet_t:packet relabelto;
32710 + allow $1 rtorrent_server_packet_t:packet relabelto;
32711 ')
32712
32713
32714 @@ -74484,7 +77585,7 @@ interface(`corenet_relabelto_router_server_packets',`
32715
32716 ########################################
32717 ## <summary>
32718 -## Send and receive TCP traffic on the rsh port.
32719 +## Send and receive TCP traffic on the rtsp port.
32720 ## </summary>
32721 ## <param name="domain">
32722 ## <summary>
32723 @@ -74493,17 +77594,17 @@ interface(`corenet_relabelto_router_server_packets',`
32724 ## </param>
32725 ## <infoflow type="both" weight="10"/>
32726 #
32727 -interface(`corenet_tcp_sendrecv_rsh_port',`
32728 +interface(`corenet_tcp_sendrecv_rtsp_port',`
32729 gen_require(`
32730 - type rsh_port_t;
32731 + type rtsp_port_t;
32732 ')
32733
32734 - allow $1 rsh_port_t:tcp_socket { send_msg recv_msg };
32735 + allow $1 rtsp_port_t:tcp_socket { send_msg recv_msg };
32736 ')
32737
32738 ########################################
32739 ## <summary>
32740 -## Send UDP traffic on the rsh port.
32741 +## Send UDP traffic on the rtsp port.
32742 ## </summary>
32743 ## <param name="domain">
32744 ## <summary>
32745 @@ -74512,17 +77613,17 @@ interface(`corenet_tcp_sendrecv_rsh_port',`
32746 ## </param>
32747 ## <infoflow type="write" weight="10"/>
32748 #
32749 -interface(`corenet_udp_send_rsh_port',`
32750 +interface(`corenet_udp_send_rtsp_port',`
32751 gen_require(`
32752 - type rsh_port_t;
32753 + type rtsp_port_t;
32754 ')
32755
32756 - allow $1 rsh_port_t:udp_socket send_msg;
32757 + allow $1 rtsp_port_t:udp_socket send_msg;
32758 ')
32759
32760 ########################################
32761 ## <summary>
32762 -## Do not audit attempts to send UDP traffic on the rsh port.
32763 +## Do not audit attempts to send UDP traffic on the rtsp port.
32764 ## </summary>
32765 ## <param name="domain">
32766 ## <summary>
32767 @@ -74531,17 +77632,17 @@ interface(`corenet_udp_send_rsh_port',`
32768 ## </param>
32769 ## <infoflow type="none"/>
32770 #
32771 -interface(`corenet_dontaudit_udp_send_rsh_port',`
32772 +interface(`corenet_dontaudit_udp_send_rtsp_port',`
32773 gen_require(`
32774 - type rsh_port_t;
32775 + type rtsp_port_t;
32776 ')
32777
32778 - dontaudit $1 rsh_port_t:udp_socket send_msg;
32779 + dontaudit $1 rtsp_port_t:udp_socket send_msg;
32780 ')
32781
32782 ########################################
32783 ## <summary>
32784 -## Receive UDP traffic on the rsh port.
32785 +## Receive UDP traffic on the rtsp port.
32786 ## </summary>
32787 ## <param name="domain">
32788 ## <summary>
32789 @@ -74550,17 +77651,17 @@ interface(`corenet_dontaudit_udp_send_rsh_port',`
32790 ## </param>
32791 ## <infoflow type="read" weight="10"/>
32792 #
32793 -interface(`corenet_udp_receive_rsh_port',`
32794 +interface(`corenet_udp_receive_rtsp_port',`
32795 gen_require(`
32796 - type rsh_port_t;
32797 + type rtsp_port_t;
32798 ')
32799
32800 - allow $1 rsh_port_t:udp_socket recv_msg;
32801 + allow $1 rtsp_port_t:udp_socket recv_msg;
32802 ')
32803
32804 ########################################
32805 ## <summary>
32806 -## Do not audit attempts to receive UDP traffic on the rsh port.
32807 +## Do not audit attempts to receive UDP traffic on the rtsp port.
32808 ## </summary>
32809 ## <param name="domain">
32810 ## <summary>
32811 @@ -74569,17 +77670,17 @@ interface(`corenet_udp_receive_rsh_port',`
32812 ## </param>
32813 ## <infoflow type="none"/>
32814 #
32815 -interface(`corenet_dontaudit_udp_receive_rsh_port',`
32816 +interface(`corenet_dontaudit_udp_receive_rtsp_port',`
32817 gen_require(`
32818 - type rsh_port_t;
32819 + type rtsp_port_t;
32820 ')
32821
32822 - dontaudit $1 rsh_port_t:udp_socket recv_msg;
32823 + dontaudit $1 rtsp_port_t:udp_socket recv_msg;
32824 ')
32825
32826 ########################################
32827 ## <summary>
32828 -## Send and receive UDP traffic on the rsh port.
32829 +## Send and receive UDP traffic on the rtsp port.
32830 ## </summary>
32831 ## <param name="domain">
32832 ## <summary>
32833 @@ -74588,15 +77689,15 @@ interface(`corenet_dontaudit_udp_receive_rsh_port',`
32834 ## </param>
32835 ## <infoflow type="both" weight="10"/>
32836 #
32837 -interface(`corenet_udp_sendrecv_rsh_port',`
32838 - corenet_udp_send_rsh_port($1)
32839 - corenet_udp_receive_rsh_port($1)
32840 +interface(`corenet_udp_sendrecv_rtsp_port',`
32841 + corenet_udp_send_rtsp_port($1)
32842 + corenet_udp_receive_rtsp_port($1)
32843 ')
32844
32845 ########################################
32846 ## <summary>
32847 ## Do not audit attempts to send and receive
32848 -## UDP traffic on the rsh port.
32849 +## UDP traffic on the rtsp port.
32850 ## </summary>
32851 ## <param name="domain">
32852 ## <summary>
32853 @@ -74605,14 +77706,14 @@ interface(`corenet_udp_sendrecv_rsh_port',`
32854 ## </param>
32855 ## <infoflow type="none"/>
32856 #
32857 -interface(`corenet_dontaudit_udp_sendrecv_rsh_port',`
32858 - corenet_dontaudit_udp_send_rsh_port($1)
32859 - corenet_dontaudit_udp_receive_rsh_port($1)
32860 +interface(`corenet_dontaudit_udp_sendrecv_rtsp_port',`
32861 + corenet_dontaudit_udp_send_rtsp_port($1)
32862 + corenet_dontaudit_udp_receive_rtsp_port($1)
32863 ')
32864
32865 ########################################
32866 ## <summary>
32867 -## Bind TCP sockets to the rsh port.
32868 +## Bind TCP sockets to the rtsp port.
32869 ## </summary>
32870 ## <param name="domain">
32871 ## <summary>
32872 @@ -74621,18 +77722,18 @@ interface(`corenet_dontaudit_udp_sendrecv_rsh_port',`
32873 ## </param>
32874 ## <infoflow type="none"/>
32875 #
32876 -interface(`corenet_tcp_bind_rsh_port',`
32877 +interface(`corenet_tcp_bind_rtsp_port',`
32878 gen_require(`
32879 - type rsh_port_t;
32880 + type rtsp_port_t;
32881 ')
32882
32883 - allow $1 rsh_port_t:tcp_socket name_bind;
32884 + allow $1 rtsp_port_t:tcp_socket name_bind;
32885 allow $1 self:capability net_bind_service;
32886 ')
32887
32888 ########################################
32889 ## <summary>
32890 -## Bind UDP sockets to the rsh port.
32891 +## Bind UDP sockets to the rtsp port.
32892 ## </summary>
32893 ## <param name="domain">
32894 ## <summary>
32895 @@ -74641,18 +77742,18 @@ interface(`corenet_tcp_bind_rsh_port',`
32896 ## </param>
32897 ## <infoflow type="none"/>
32898 #
32899 -interface(`corenet_udp_bind_rsh_port',`
32900 +interface(`corenet_udp_bind_rtsp_port',`
32901 gen_require(`
32902 - type rsh_port_t;
32903 + type rtsp_port_t;
32904 ')
32905
32906 - allow $1 rsh_port_t:udp_socket name_bind;
32907 + allow $1 rtsp_port_t:udp_socket name_bind;
32908 allow $1 self:capability net_bind_service;
32909 ')
32910
32911 ########################################
32912 ## <summary>
32913 -## Make a TCP connection to the rsh port.
32914 +## Make a TCP connection to the rtsp port.
32915 ## </summary>
32916 ## <param name="domain">
32917 ## <summary>
32918 @@ -74660,18 +77761,18 @@ interface(`corenet_udp_bind_rsh_port',`
32919 ## </summary>
32920 ## </param>
32921 #
32922 -interface(`corenet_tcp_connect_rsh_port',`
32923 +interface(`corenet_tcp_connect_rtsp_port',`
32924 gen_require(`
32925 - type rsh_port_t;
32926 + type rtsp_port_t;
32927 ')
32928
32929 - allow $1 rsh_port_t:tcp_socket name_connect;
32930 + allow $1 rtsp_port_t:tcp_socket name_connect;
32931 ')
32932
32933
32934 ########################################
32935 ## <summary>
32936 -## Send rsh_client packets.
32937 +## Send rtsp_client packets.
32938 ## </summary>
32939 ## <param name="domain">
32940 ## <summary>
32941 @@ -74680,17 +77781,17 @@ interface(`corenet_tcp_connect_rsh_port',`
32942 ## </param>
32943 ## <infoflow type="write" weight="10"/>
32944 #
32945 -interface(`corenet_send_rsh_client_packets',`
32946 +interface(`corenet_send_rtsp_client_packets',`
32947 gen_require(`
32948 - type rsh_client_packet_t;
32949 + type rtsp_client_packet_t;
32950 ')
32951
32952 - allow $1 rsh_client_packet_t:packet send;
32953 + allow $1 rtsp_client_packet_t:packet send;
32954 ')
32955
32956 ########################################
32957 ## <summary>
32958 -## Do not audit attempts to send rsh_client packets.
32959 +## Do not audit attempts to send rtsp_client packets.
32960 ## </summary>
32961 ## <param name="domain">
32962 ## <summary>
32963 @@ -74699,17 +77800,17 @@ interface(`corenet_send_rsh_client_packets',`
32964 ## </param>
32965 ## <infoflow type="none"/>
32966 #
32967 -interface(`corenet_dontaudit_send_rsh_client_packets',`
32968 +interface(`corenet_dontaudit_send_rtsp_client_packets',`
32969 gen_require(`
32970 - type rsh_client_packet_t;
32971 + type rtsp_client_packet_t;
32972 ')
32973
32974 - dontaudit $1 rsh_client_packet_t:packet send;
32975 + dontaudit $1 rtsp_client_packet_t:packet send;
32976 ')
32977
32978 ########################################
32979 ## <summary>
32980 -## Receive rsh_client packets.
32981 +## Receive rtsp_client packets.
32982 ## </summary>
32983 ## <param name="domain">
32984 ## <summary>
32985 @@ -74718,17 +77819,17 @@ interface(`corenet_dontaudit_send_rsh_client_packets',`
32986 ## </param>
32987 ## <infoflow type="read" weight="10"/>
32988 #
32989 -interface(`corenet_receive_rsh_client_packets',`
32990 +interface(`corenet_receive_rtsp_client_packets',`
32991 gen_require(`
32992 - type rsh_client_packet_t;
32993 + type rtsp_client_packet_t;
32994 ')
32995
32996 - allow $1 rsh_client_packet_t:packet recv;
32997 + allow $1 rtsp_client_packet_t:packet recv;
32998 ')
32999
33000 ########################################
33001 ## <summary>
33002 -## Do not audit attempts to receive rsh_client packets.
33003 +## Do not audit attempts to receive rtsp_client packets.
33004 ## </summary>
33005 ## <param name="domain">
33006 ## <summary>
33007 @@ -74737,17 +77838,17 @@ interface(`corenet_receive_rsh_client_packets',`
33008 ## </param>
33009 ## <infoflow type="none"/>
33010 #
33011 -interface(`corenet_dontaudit_receive_rsh_client_packets',`
33012 +interface(`corenet_dontaudit_receive_rtsp_client_packets',`
33013 gen_require(`
33014 - type rsh_client_packet_t;
33015 + type rtsp_client_packet_t;
33016 ')
33017
33018 - dontaudit $1 rsh_client_packet_t:packet recv;
33019 + dontaudit $1 rtsp_client_packet_t:packet recv;
33020 ')
33021
33022 ########################################
33023 ## <summary>
33024 -## Send and receive rsh_client packets.
33025 +## Send and receive rtsp_client packets.
33026 ## </summary>
33027 ## <param name="domain">
33028 ## <summary>
33029 @@ -74756,14 +77857,14 @@ interface(`corenet_dontaudit_receive_rsh_client_packets',`
33030 ## </param>
33031 ## <infoflow type="both" weight="10"/>
33032 #
33033 -interface(`corenet_sendrecv_rsh_client_packets',`
33034 - corenet_send_rsh_client_packets($1)
33035 - corenet_receive_rsh_client_packets($1)
33036 +interface(`corenet_sendrecv_rtsp_client_packets',`
33037 + corenet_send_rtsp_client_packets($1)
33038 + corenet_receive_rtsp_client_packets($1)
33039 ')
33040
33041 ########################################
33042 ## <summary>
33043 -## Do not audit attempts to send and receive rsh_client packets.
33044 +## Do not audit attempts to send and receive rtsp_client packets.
33045 ## </summary>
33046 ## <param name="domain">
33047 ## <summary>
33048 @@ -74772,14 +77873,14 @@ interface(`corenet_sendrecv_rsh_client_packets',`
33049 ## </param>
33050 ## <infoflow type="none"/>
33051 #
33052 -interface(`corenet_dontaudit_sendrecv_rsh_client_packets',`
33053 - corenet_dontaudit_send_rsh_client_packets($1)
33054 - corenet_dontaudit_receive_rsh_client_packets($1)
33055 +interface(`corenet_dontaudit_sendrecv_rtsp_client_packets',`
33056 + corenet_dontaudit_send_rtsp_client_packets($1)
33057 + corenet_dontaudit_receive_rtsp_client_packets($1)
33058 ')
33059
33060 ########################################
33061 ## <summary>
33062 -## Relabel packets to rsh_client the packet type.
33063 +## Relabel packets to rtsp_client the packet type.
33064 ## </summary>
33065 ## <param name="domain">
33066 ## <summary>
33067 @@ -74787,18 +77888,18 @@ interface(`corenet_dontaudit_sendrecv_rsh_client_packets',`
33068 ## </summary>
33069 ## </param>
33070 #
33071 -interface(`corenet_relabelto_rsh_client_packets',`
33072 +interface(`corenet_relabelto_rtsp_client_packets',`
33073 gen_require(`
33074 - type rsh_client_packet_t;
33075 + type rtsp_client_packet_t;
33076 ')
33077
33078 - allow $1 rsh_client_packet_t:packet relabelto;
33079 + allow $1 rtsp_client_packet_t:packet relabelto;
33080 ')
33081
33082
33083 ########################################
33084 ## <summary>
33085 -## Send rsh_server packets.
33086 +## Send rtsp_server packets.
33087 ## </summary>
33088 ## <param name="domain">
33089 ## <summary>
33090 @@ -74807,17 +77908,17 @@ interface(`corenet_relabelto_rsh_client_packets',`
33091 ## </param>
33092 ## <infoflow type="write" weight="10"/>
33093 #
33094 -interface(`corenet_send_rsh_server_packets',`
33095 +interface(`corenet_send_rtsp_server_packets',`
33096 gen_require(`
33097 - type rsh_server_packet_t;
33098 + type rtsp_server_packet_t;
33099 ')
33100
33101 - allow $1 rsh_server_packet_t:packet send;
33102 + allow $1 rtsp_server_packet_t:packet send;
33103 ')
33104
33105 ########################################
33106 ## <summary>
33107 -## Do not audit attempts to send rsh_server packets.
33108 +## Do not audit attempts to send rtsp_server packets.
33109 ## </summary>
33110 ## <param name="domain">
33111 ## <summary>
33112 @@ -74826,17 +77927,17 @@ interface(`corenet_send_rsh_server_packets',`
33113 ## </param>
33114 ## <infoflow type="none"/>
33115 #
33116 -interface(`corenet_dontaudit_send_rsh_server_packets',`
33117 +interface(`corenet_dontaudit_send_rtsp_server_packets',`
33118 gen_require(`
33119 - type rsh_server_packet_t;
33120 + type rtsp_server_packet_t;
33121 ')
33122
33123 - dontaudit $1 rsh_server_packet_t:packet send;
33124 + dontaudit $1 rtsp_server_packet_t:packet send;
33125 ')
33126
33127 ########################################
33128 ## <summary>
33129 -## Receive rsh_server packets.
33130 +## Receive rtsp_server packets.
33131 ## </summary>
33132 ## <param name="domain">
33133 ## <summary>
33134 @@ -74845,17 +77946,17 @@ interface(`corenet_dontaudit_send_rsh_server_packets',`
33135 ## </param>
33136 ## <infoflow type="read" weight="10"/>
33137 #
33138 -interface(`corenet_receive_rsh_server_packets',`
33139 +interface(`corenet_receive_rtsp_server_packets',`
33140 gen_require(`
33141 - type rsh_server_packet_t;
33142 + type rtsp_server_packet_t;
33143 ')
33144
33145 - allow $1 rsh_server_packet_t:packet recv;
33146 + allow $1 rtsp_server_packet_t:packet recv;
33147 ')
33148
33149 ########################################
33150 ## <summary>
33151 -## Do not audit attempts to receive rsh_server packets.
33152 +## Do not audit attempts to receive rtsp_server packets.
33153 ## </summary>
33154 ## <param name="domain">
33155 ## <summary>
33156 @@ -74864,17 +77965,17 @@ interface(`corenet_receive_rsh_server_packets',`
33157 ## </param>
33158 ## <infoflow type="none"/>
33159 #
33160 -interface(`corenet_dontaudit_receive_rsh_server_packets',`
33161 +interface(`corenet_dontaudit_receive_rtsp_server_packets',`
33162 gen_require(`
33163 - type rsh_server_packet_t;
33164 + type rtsp_server_packet_t;
33165 ')
33166
33167 - dontaudit $1 rsh_server_packet_t:packet recv;
33168 + dontaudit $1 rtsp_server_packet_t:packet recv;
33169 ')
33170
33171 ########################################
33172 ## <summary>
33173 -## Send and receive rsh_server packets.
33174 +## Send and receive rtsp_server packets.
33175 ## </summary>
33176 ## <param name="domain">
33177 ## <summary>
33178 @@ -74883,14 +77984,14 @@ interface(`corenet_dontaudit_receive_rsh_server_packets',`
33179 ## </param>
33180 ## <infoflow type="both" weight="10"/>
33181 #
33182 -interface(`corenet_sendrecv_rsh_server_packets',`
33183 - corenet_send_rsh_server_packets($1)
33184 - corenet_receive_rsh_server_packets($1)
33185 +interface(`corenet_sendrecv_rtsp_server_packets',`
33186 + corenet_send_rtsp_server_packets($1)
33187 + corenet_receive_rtsp_server_packets($1)
33188 ')
33189
33190 ########################################
33191 ## <summary>
33192 -## Do not audit attempts to send and receive rsh_server packets.
33193 +## Do not audit attempts to send and receive rtsp_server packets.
33194 ## </summary>
33195 ## <param name="domain">
33196 ## <summary>
33197 @@ -74899,14 +78000,14 @@ interface(`corenet_sendrecv_rsh_server_packets',`
33198 ## </param>
33199 ## <infoflow type="none"/>
33200 #
33201 -interface(`corenet_dontaudit_sendrecv_rsh_server_packets',`
33202 - corenet_dontaudit_send_rsh_server_packets($1)
33203 - corenet_dontaudit_receive_rsh_server_packets($1)
33204 +interface(`corenet_dontaudit_sendrecv_rtsp_server_packets',`
33205 + corenet_dontaudit_send_rtsp_server_packets($1)
33206 + corenet_dontaudit_receive_rtsp_server_packets($1)
33207 ')
33208
33209 ########################################
33210 ## <summary>
33211 -## Relabel packets to rsh_server the packet type.
33212 +## Relabel packets to rtsp_server the packet type.
33213 ## </summary>
33214 ## <param name="domain">
33215 ## <summary>
33216 @@ -74914,12 +78015,12 @@ interface(`corenet_dontaudit_sendrecv_rsh_server_packets',`
33217 ## </summary>
33218 ## </param>
33219 #
33220 -interface(`corenet_relabelto_rsh_server_packets',`
33221 +interface(`corenet_relabelto_rtsp_server_packets',`
33222 gen_require(`
33223 - type rsh_server_packet_t;
33224 + type rtsp_server_packet_t;
33225 ')
33226
33227 - allow $1 rsh_server_packet_t:packet relabelto;
33228 + allow $1 rtsp_server_packet_t:packet relabelto;
33229 ')
33230
33231
33232 @@ -74927,7 +78028,7 @@ interface(`corenet_relabelto_rsh_server_packets',`
33233
33234 ########################################
33235 ## <summary>
33236 -## Send and receive TCP traffic on the rsync port.
33237 +## Send and receive TCP traffic on the rwho port.
33238 ## </summary>
33239 ## <param name="domain">
33240 ## <summary>
33241 @@ -74936,17 +78037,17 @@ interface(`corenet_relabelto_rsh_server_packets',`
33242 ## </param>
33243 ## <infoflow type="both" weight="10"/>
33244 #
33245 -interface(`corenet_tcp_sendrecv_rsync_port',`
33246 +interface(`corenet_tcp_sendrecv_rwho_port',`
33247 gen_require(`
33248 - type rsync_port_t;
33249 + type rwho_port_t;
33250 ')
33251
33252 - allow $1 rsync_port_t:tcp_socket { send_msg recv_msg };
33253 + allow $1 rwho_port_t:tcp_socket { send_msg recv_msg };
33254 ')
33255
33256 ########################################
33257 ## <summary>
33258 -## Send UDP traffic on the rsync port.
33259 +## Send UDP traffic on the rwho port.
33260 ## </summary>
33261 ## <param name="domain">
33262 ## <summary>
33263 @@ -74955,17 +78056,17 @@ interface(`corenet_tcp_sendrecv_rsync_port',`
33264 ## </param>
33265 ## <infoflow type="write" weight="10"/>
33266 #
33267 -interface(`corenet_udp_send_rsync_port',`
33268 +interface(`corenet_udp_send_rwho_port',`
33269 gen_require(`
33270 - type rsync_port_t;
33271 + type rwho_port_t;
33272 ')
33273
33274 - allow $1 rsync_port_t:udp_socket send_msg;
33275 + allow $1 rwho_port_t:udp_socket send_msg;
33276 ')
33277
33278 ########################################
33279 ## <summary>
33280 -## Do not audit attempts to send UDP traffic on the rsync port.
33281 +## Do not audit attempts to send UDP traffic on the rwho port.
33282 ## </summary>
33283 ## <param name="domain">
33284 ## <summary>
33285 @@ -74974,17 +78075,17 @@ interface(`corenet_udp_send_rsync_port',`
33286 ## </param>
33287 ## <infoflow type="none"/>
33288 #
33289 -interface(`corenet_dontaudit_udp_send_rsync_port',`
33290 +interface(`corenet_dontaudit_udp_send_rwho_port',`
33291 gen_require(`
33292 - type rsync_port_t;
33293 + type rwho_port_t;
33294 ')
33295
33296 - dontaudit $1 rsync_port_t:udp_socket send_msg;
33297 + dontaudit $1 rwho_port_t:udp_socket send_msg;
33298 ')
33299
33300 ########################################
33301 ## <summary>
33302 -## Receive UDP traffic on the rsync port.
33303 +## Receive UDP traffic on the rwho port.
33304 ## </summary>
33305 ## <param name="domain">
33306 ## <summary>
33307 @@ -74993,17 +78094,17 @@ interface(`corenet_dontaudit_udp_send_rsync_port',`
33308 ## </param>
33309 ## <infoflow type="read" weight="10"/>
33310 #
33311 -interface(`corenet_udp_receive_rsync_port',`
33312 +interface(`corenet_udp_receive_rwho_port',`
33313 gen_require(`
33314 - type rsync_port_t;
33315 + type rwho_port_t;
33316 ')
33317
33318 - allow $1 rsync_port_t:udp_socket recv_msg;
33319 + allow $1 rwho_port_t:udp_socket recv_msg;
33320 ')
33321
33322 ########################################
33323 ## <summary>
33324 -## Do not audit attempts to receive UDP traffic on the rsync port.
33325 +## Do not audit attempts to receive UDP traffic on the rwho port.
33326 ## </summary>
33327 ## <param name="domain">
33328 ## <summary>
33329 @@ -75012,17 +78113,17 @@ interface(`corenet_udp_receive_rsync_port',`
33330 ## </param>
33331 ## <infoflow type="none"/>
33332 #
33333 -interface(`corenet_dontaudit_udp_receive_rsync_port',`
33334 +interface(`corenet_dontaudit_udp_receive_rwho_port',`
33335 gen_require(`
33336 - type rsync_port_t;
33337 + type rwho_port_t;
33338 ')
33339
33340 - dontaudit $1 rsync_port_t:udp_socket recv_msg;
33341 + dontaudit $1 rwho_port_t:udp_socket recv_msg;
33342 ')
33343
33344 ########################################
33345 ## <summary>
33346 -## Send and receive UDP traffic on the rsync port.
33347 +## Send and receive UDP traffic on the rwho port.
33348 ## </summary>
33349 ## <param name="domain">
33350 ## <summary>
33351 @@ -75031,15 +78132,15 @@ interface(`corenet_dontaudit_udp_receive_rsync_port',`
33352 ## </param>
33353 ## <infoflow type="both" weight="10"/>
33354 #
33355 -interface(`corenet_udp_sendrecv_rsync_port',`
33356 - corenet_udp_send_rsync_port($1)
33357 - corenet_udp_receive_rsync_port($1)
33358 +interface(`corenet_udp_sendrecv_rwho_port',`
33359 + corenet_udp_send_rwho_port($1)
33360 + corenet_udp_receive_rwho_port($1)
33361 ')
33362
33363 ########################################
33364 ## <summary>
33365 ## Do not audit attempts to send and receive
33366 -## UDP traffic on the rsync port.
33367 +## UDP traffic on the rwho port.
33368 ## </summary>
33369 ## <param name="domain">
33370 ## <summary>
33371 @@ -75048,14 +78149,14 @@ interface(`corenet_udp_sendrecv_rsync_port',`
33372 ## </param>
33373 ## <infoflow type="none"/>
33374 #
33375 -interface(`corenet_dontaudit_udp_sendrecv_rsync_port',`
33376 - corenet_dontaudit_udp_send_rsync_port($1)
33377 - corenet_dontaudit_udp_receive_rsync_port($1)
33378 +interface(`corenet_dontaudit_udp_sendrecv_rwho_port',`
33379 + corenet_dontaudit_udp_send_rwho_port($1)
33380 + corenet_dontaudit_udp_receive_rwho_port($1)
33381 ')
33382
33383 ########################################
33384 ## <summary>
33385 -## Bind TCP sockets to the rsync port.
33386 +## Bind TCP sockets to the rwho port.
33387 ## </summary>
33388 ## <param name="domain">
33389 ## <summary>
33390 @@ -75064,18 +78165,18 @@ interface(`corenet_dontaudit_udp_sendrecv_rsync_port',`
33391 ## </param>
33392 ## <infoflow type="none"/>
33393 #
33394 -interface(`corenet_tcp_bind_rsync_port',`
33395 +interface(`corenet_tcp_bind_rwho_port',`
33396 gen_require(`
33397 - type rsync_port_t;
33398 + type rwho_port_t;
33399 ')
33400
33401 - allow $1 rsync_port_t:tcp_socket name_bind;
33402 + allow $1 rwho_port_t:tcp_socket name_bind;
33403 allow $1 self:capability net_bind_service;
33404 ')
33405
33406 ########################################
33407 ## <summary>
33408 -## Bind UDP sockets to the rsync port.
33409 +## Bind UDP sockets to the rwho port.
33410 ## </summary>
33411 ## <param name="domain">
33412 ## <summary>
33413 @@ -75084,18 +78185,18 @@ interface(`corenet_tcp_bind_rsync_port',`
33414 ## </param>
33415 ## <infoflow type="none"/>
33416 #
33417 -interface(`corenet_udp_bind_rsync_port',`
33418 +interface(`corenet_udp_bind_rwho_port',`
33419 gen_require(`
33420 - type rsync_port_t;
33421 + type rwho_port_t;
33422 ')
33423
33424 - allow $1 rsync_port_t:udp_socket name_bind;
33425 + allow $1 rwho_port_t:udp_socket name_bind;
33426 allow $1 self:capability net_bind_service;
33427 ')
33428
33429 ########################################
33430 ## <summary>
33431 -## Make a TCP connection to the rsync port.
33432 +## Make a TCP connection to the rwho port.
33433 ## </summary>
33434 ## <param name="domain">
33435 ## <summary>
33436 @@ -75103,18 +78204,18 @@ interface(`corenet_udp_bind_rsync_port',`
33437 ## </summary>
33438 ## </param>
33439 #
33440 -interface(`corenet_tcp_connect_rsync_port',`
33441 +interface(`corenet_tcp_connect_rwho_port',`
33442 gen_require(`
33443 - type rsync_port_t;
33444 + type rwho_port_t;
33445 ')
33446
33447 - allow $1 rsync_port_t:tcp_socket name_connect;
33448 + allow $1 rwho_port_t:tcp_socket name_connect;
33449 ')
33450
33451
33452 ########################################
33453 ## <summary>
33454 -## Send rsync_client packets.
33455 +## Send rwho_client packets.
33456 ## </summary>
33457 ## <param name="domain">
33458 ## <summary>
33459 @@ -75123,17 +78224,17 @@ interface(`corenet_tcp_connect_rsync_port',`
33460 ## </param>
33461 ## <infoflow type="write" weight="10"/>
33462 #
33463 -interface(`corenet_send_rsync_client_packets',`
33464 +interface(`corenet_send_rwho_client_packets',`
33465 gen_require(`
33466 - type rsync_client_packet_t;
33467 + type rwho_client_packet_t;
33468 ')
33469
33470 - allow $1 rsync_client_packet_t:packet send;
33471 + allow $1 rwho_client_packet_t:packet send;
33472 ')
33473
33474 ########################################
33475 ## <summary>
33476 -## Do not audit attempts to send rsync_client packets.
33477 +## Do not audit attempts to send rwho_client packets.
33478 ## </summary>
33479 ## <param name="domain">
33480 ## <summary>
33481 @@ -75142,17 +78243,17 @@ interface(`corenet_send_rsync_client_packets',`
33482 ## </param>
33483 ## <infoflow type="none"/>
33484 #
33485 -interface(`corenet_dontaudit_send_rsync_client_packets',`
33486 +interface(`corenet_dontaudit_send_rwho_client_packets',`
33487 gen_require(`
33488 - type rsync_client_packet_t;
33489 + type rwho_client_packet_t;
33490 ')
33491
33492 - dontaudit $1 rsync_client_packet_t:packet send;
33493 + dontaudit $1 rwho_client_packet_t:packet send;
33494 ')
33495
33496 ########################################
33497 ## <summary>
33498 -## Receive rsync_client packets.
33499 +## Receive rwho_client packets.
33500 ## </summary>
33501 ## <param name="domain">
33502 ## <summary>
33503 @@ -75161,17 +78262,17 @@ interface(`corenet_dontaudit_send_rsync_client_packets',`
33504 ## </param>
33505 ## <infoflow type="read" weight="10"/>
33506 #
33507 -interface(`corenet_receive_rsync_client_packets',`
33508 +interface(`corenet_receive_rwho_client_packets',`
33509 gen_require(`
33510 - type rsync_client_packet_t;
33511 + type rwho_client_packet_t;
33512 ')
33513
33514 - allow $1 rsync_client_packet_t:packet recv;
33515 + allow $1 rwho_client_packet_t:packet recv;
33516 ')
33517
33518 ########################################
33519 ## <summary>
33520 -## Do not audit attempts to receive rsync_client packets.
33521 +## Do not audit attempts to receive rwho_client packets.
33522 ## </summary>
33523 ## <param name="domain">
33524 ## <summary>
33525 @@ -75180,17 +78281,17 @@ interface(`corenet_receive_rsync_client_packets',`
33526 ## </param>
33527 ## <infoflow type="none"/>
33528 #
33529 -interface(`corenet_dontaudit_receive_rsync_client_packets',`
33530 +interface(`corenet_dontaudit_receive_rwho_client_packets',`
33531 gen_require(`
33532 - type rsync_client_packet_t;
33533 + type rwho_client_packet_t;
33534 ')
33535
33536 - dontaudit $1 rsync_client_packet_t:packet recv;
33537 + dontaudit $1 rwho_client_packet_t:packet recv;
33538 ')
33539
33540 ########################################
33541 ## <summary>
33542 -## Send and receive rsync_client packets.
33543 +## Send and receive rwho_client packets.
33544 ## </summary>
33545 ## <param name="domain">
33546 ## <summary>
33547 @@ -75199,14 +78300,14 @@ interface(`corenet_dontaudit_receive_rsync_client_packets',`
33548 ## </param>
33549 ## <infoflow type="both" weight="10"/>
33550 #
33551 -interface(`corenet_sendrecv_rsync_client_packets',`
33552 - corenet_send_rsync_client_packets($1)
33553 - corenet_receive_rsync_client_packets($1)
33554 +interface(`corenet_sendrecv_rwho_client_packets',`
33555 + corenet_send_rwho_client_packets($1)
33556 + corenet_receive_rwho_client_packets($1)
33557 ')
33558
33559 ########################################
33560 ## <summary>
33561 -## Do not audit attempts to send and receive rsync_client packets.
33562 +## Do not audit attempts to send and receive rwho_client packets.
33563 ## </summary>
33564 ## <param name="domain">
33565 ## <summary>
33566 @@ -75215,14 +78316,14 @@ interface(`corenet_sendrecv_rsync_client_packets',`
33567 ## </param>
33568 ## <infoflow type="none"/>
33569 #
33570 -interface(`corenet_dontaudit_sendrecv_rsync_client_packets',`
33571 - corenet_dontaudit_send_rsync_client_packets($1)
33572 - corenet_dontaudit_receive_rsync_client_packets($1)
33573 +interface(`corenet_dontaudit_sendrecv_rwho_client_packets',`
33574 + corenet_dontaudit_send_rwho_client_packets($1)
33575 + corenet_dontaudit_receive_rwho_client_packets($1)
33576 ')
33577
33578 ########################################
33579 ## <summary>
33580 -## Relabel packets to rsync_client the packet type.
33581 +## Relabel packets to rwho_client the packet type.
33582 ## </summary>
33583 ## <param name="domain">
33584 ## <summary>
33585 @@ -75230,18 +78331,18 @@ interface(`corenet_dontaudit_sendrecv_rsync_client_packets',`
33586 ## </summary>
33587 ## </param>
33588 #
33589 -interface(`corenet_relabelto_rsync_client_packets',`
33590 +interface(`corenet_relabelto_rwho_client_packets',`
33591 gen_require(`
33592 - type rsync_client_packet_t;
33593 + type rwho_client_packet_t;
33594 ')
33595
33596 - allow $1 rsync_client_packet_t:packet relabelto;
33597 + allow $1 rwho_client_packet_t:packet relabelto;
33598 ')
33599
33600
33601 ########################################
33602 ## <summary>
33603 -## Send rsync_server packets.
33604 +## Send rwho_server packets.
33605 ## </summary>
33606 ## <param name="domain">
33607 ## <summary>
33608 @@ -75250,17 +78351,17 @@ interface(`corenet_relabelto_rsync_client_packets',`
33609 ## </param>
33610 ## <infoflow type="write" weight="10"/>
33611 #
33612 -interface(`corenet_send_rsync_server_packets',`
33613 +interface(`corenet_send_rwho_server_packets',`
33614 gen_require(`
33615 - type rsync_server_packet_t;
33616 + type rwho_server_packet_t;
33617 ')
33618
33619 - allow $1 rsync_server_packet_t:packet send;
33620 + allow $1 rwho_server_packet_t:packet send;
33621 ')
33622
33623 ########################################
33624 ## <summary>
33625 -## Do not audit attempts to send rsync_server packets.
33626 +## Do not audit attempts to send rwho_server packets.
33627 ## </summary>
33628 ## <param name="domain">
33629 ## <summary>
33630 @@ -75269,17 +78370,17 @@ interface(`corenet_send_rsync_server_packets',`
33631 ## </param>
33632 ## <infoflow type="none"/>
33633 #
33634 -interface(`corenet_dontaudit_send_rsync_server_packets',`
33635 +interface(`corenet_dontaudit_send_rwho_server_packets',`
33636 gen_require(`
33637 - type rsync_server_packet_t;
33638 + type rwho_server_packet_t;
33639 ')
33640
33641 - dontaudit $1 rsync_server_packet_t:packet send;
33642 + dontaudit $1 rwho_server_packet_t:packet send;
33643 ')
33644
33645 ########################################
33646 ## <summary>
33647 -## Receive rsync_server packets.
33648 +## Receive rwho_server packets.
33649 ## </summary>
33650 ## <param name="domain">
33651 ## <summary>
33652 @@ -75288,17 +78389,17 @@ interface(`corenet_dontaudit_send_rsync_server_packets',`
33653 ## </param>
33654 ## <infoflow type="read" weight="10"/>
33655 #
33656 -interface(`corenet_receive_rsync_server_packets',`
33657 +interface(`corenet_receive_rwho_server_packets',`
33658 gen_require(`
33659 - type rsync_server_packet_t;
33660 + type rwho_server_packet_t;
33661 ')
33662
33663 - allow $1 rsync_server_packet_t:packet recv;
33664 + allow $1 rwho_server_packet_t:packet recv;
33665 ')
33666
33667 ########################################
33668 ## <summary>
33669 -## Do not audit attempts to receive rsync_server packets.
33670 +## Do not audit attempts to receive rwho_server packets.
33671 ## </summary>
33672 ## <param name="domain">
33673 ## <summary>
33674 @@ -75307,17 +78408,17 @@ interface(`corenet_receive_rsync_server_packets',`
33675 ## </param>
33676 ## <infoflow type="none"/>
33677 #
33678 -interface(`corenet_dontaudit_receive_rsync_server_packets',`
33679 +interface(`corenet_dontaudit_receive_rwho_server_packets',`
33680 gen_require(`
33681 - type rsync_server_packet_t;
33682 + type rwho_server_packet_t;
33683 ')
33684
33685 - dontaudit $1 rsync_server_packet_t:packet recv;
33686 + dontaudit $1 rwho_server_packet_t:packet recv;
33687 ')
33688
33689 ########################################
33690 ## <summary>
33691 -## Send and receive rsync_server packets.
33692 +## Send and receive rwho_server packets.
33693 ## </summary>
33694 ## <param name="domain">
33695 ## <summary>
33696 @@ -75326,14 +78427,14 @@ interface(`corenet_dontaudit_receive_rsync_server_packets',`
33697 ## </param>
33698 ## <infoflow type="both" weight="10"/>
33699 #
33700 -interface(`corenet_sendrecv_rsync_server_packets',`
33701 - corenet_send_rsync_server_packets($1)
33702 - corenet_receive_rsync_server_packets($1)
33703 +interface(`corenet_sendrecv_rwho_server_packets',`
33704 + corenet_send_rwho_server_packets($1)
33705 + corenet_receive_rwho_server_packets($1)
33706 ')
33707
33708 ########################################
33709 ## <summary>
33710 -## Do not audit attempts to send and receive rsync_server packets.
33711 +## Do not audit attempts to send and receive rwho_server packets.
33712 ## </summary>
33713 ## <param name="domain">
33714 ## <summary>
33715 @@ -75342,14 +78443,14 @@ interface(`corenet_sendrecv_rsync_server_packets',`
33716 ## </param>
33717 ## <infoflow type="none"/>
33718 #
33719 -interface(`corenet_dontaudit_sendrecv_rsync_server_packets',`
33720 - corenet_dontaudit_send_rsync_server_packets($1)
33721 - corenet_dontaudit_receive_rsync_server_packets($1)
33722 +interface(`corenet_dontaudit_sendrecv_rwho_server_packets',`
33723 + corenet_dontaudit_send_rwho_server_packets($1)
33724 + corenet_dontaudit_receive_rwho_server_packets($1)
33725 ')
33726
33727 ########################################
33728 ## <summary>
33729 -## Relabel packets to rsync_server the packet type.
33730 +## Relabel packets to rwho_server the packet type.
33731 ## </summary>
33732 ## <param name="domain">
33733 ## <summary>
33734 @@ -75357,12 +78458,12 @@ interface(`corenet_dontaudit_sendrecv_rsync_server_packets',`
33735 ## </summary>
33736 ## </param>
33737 #
33738 -interface(`corenet_relabelto_rsync_server_packets',`
33739 +interface(`corenet_relabelto_rwho_server_packets',`
33740 gen_require(`
33741 - type rsync_server_packet_t;
33742 + type rwho_server_packet_t;
33743 ')
33744
33745 - allow $1 rsync_server_packet_t:packet relabelto;
33746 + allow $1 rwho_server_packet_t:packet relabelto;
33747 ')
33748
33749
33750 @@ -75370,7 +78471,7 @@ interface(`corenet_relabelto_rsync_server_packets',`
33751
33752 ########################################
33753 ## <summary>
33754 -## Send and receive TCP traffic on the rtorrent port.
33755 +## Send and receive TCP traffic on the salt port.
33756 ## </summary>
33757 ## <param name="domain">
33758 ## <summary>
33759 @@ -75379,17 +78480,17 @@ interface(`corenet_relabelto_rsync_server_packets',`
33760 ## </param>
33761 ## <infoflow type="both" weight="10"/>
33762 #
33763 -interface(`corenet_tcp_sendrecv_rtorrent_port',`
33764 +interface(`corenet_tcp_sendrecv_salt_port',`
33765 gen_require(`
33766 - type rtorrent_port_t;
33767 + type salt_port_t;
33768 ')
33769
33770 - allow $1 rtorrent_port_t:tcp_socket { send_msg recv_msg };
33771 + allow $1 salt_port_t:tcp_socket { send_msg recv_msg };
33772 ')
33773
33774 ########################################
33775 ## <summary>
33776 -## Send UDP traffic on the rtorrent port.
33777 +## Send UDP traffic on the salt port.
33778 ## </summary>
33779 ## <param name="domain">
33780 ## <summary>
33781 @@ -75398,17 +78499,17 @@ interface(`corenet_tcp_sendrecv_rtorrent_port',`
33782 ## </param>
33783 ## <infoflow type="write" weight="10"/>
33784 #
33785 -interface(`corenet_udp_send_rtorrent_port',`
33786 +interface(`corenet_udp_send_salt_port',`
33787 gen_require(`
33788 - type rtorrent_port_t;
33789 + type salt_port_t;
33790 ')
33791
33792 - allow $1 rtorrent_port_t:udp_socket send_msg;
33793 + allow $1 salt_port_t:udp_socket send_msg;
33794 ')
33795
33796 ########################################
33797 ## <summary>
33798 -## Do not audit attempts to send UDP traffic on the rtorrent port.
33799 +## Do not audit attempts to send UDP traffic on the salt port.
33800 ## </summary>
33801 ## <param name="domain">
33802 ## <summary>
33803 @@ -75417,17 +78518,17 @@ interface(`corenet_udp_send_rtorrent_port',`
33804 ## </param>
33805 ## <infoflow type="none"/>
33806 #
33807 -interface(`corenet_dontaudit_udp_send_rtorrent_port',`
33808 +interface(`corenet_dontaudit_udp_send_salt_port',`
33809 gen_require(`
33810 - type rtorrent_port_t;
33811 + type salt_port_t;
33812 ')
33813
33814 - dontaudit $1 rtorrent_port_t:udp_socket send_msg;
33815 + dontaudit $1 salt_port_t:udp_socket send_msg;
33816 ')
33817
33818 ########################################
33819 ## <summary>
33820 -## Receive UDP traffic on the rtorrent port.
33821 +## Receive UDP traffic on the salt port.
33822 ## </summary>
33823 ## <param name="domain">
33824 ## <summary>
33825 @@ -75436,17 +78537,17 @@ interface(`corenet_dontaudit_udp_send_rtorrent_port',`
33826 ## </param>
33827 ## <infoflow type="read" weight="10"/>
33828 #
33829 -interface(`corenet_udp_receive_rtorrent_port',`
33830 +interface(`corenet_udp_receive_salt_port',`
33831 gen_require(`
33832 - type rtorrent_port_t;
33833 + type salt_port_t;
33834 ')
33835
33836 - allow $1 rtorrent_port_t:udp_socket recv_msg;
33837 + allow $1 salt_port_t:udp_socket recv_msg;
33838 ')
33839
33840 ########################################
33841 ## <summary>
33842 -## Do not audit attempts to receive UDP traffic on the rtorrent port.
33843 +## Do not audit attempts to receive UDP traffic on the salt port.
33844 ## </summary>
33845 ## <param name="domain">
33846 ## <summary>
33847 @@ -75455,17 +78556,17 @@ interface(`corenet_udp_receive_rtorrent_port',`
33848 ## </param>
33849 ## <infoflow type="none"/>
33850 #
33851 -interface(`corenet_dontaudit_udp_receive_rtorrent_port',`
33852 +interface(`corenet_dontaudit_udp_receive_salt_port',`
33853 gen_require(`
33854 - type rtorrent_port_t;
33855 + type salt_port_t;
33856 ')
33857
33858 - dontaudit $1 rtorrent_port_t:udp_socket recv_msg;
33859 + dontaudit $1 salt_port_t:udp_socket recv_msg;
33860 ')
33861
33862 ########################################
33863 ## <summary>
33864 -## Send and receive UDP traffic on the rtorrent port.
33865 +## Send and receive UDP traffic on the salt port.
33866 ## </summary>
33867 ## <param name="domain">
33868 ## <summary>
33869 @@ -75474,15 +78575,15 @@ interface(`corenet_dontaudit_udp_receive_rtorrent_port',`
33870 ## </param>
33871 ## <infoflow type="both" weight="10"/>
33872 #
33873 -interface(`corenet_udp_sendrecv_rtorrent_port',`
33874 - corenet_udp_send_rtorrent_port($1)
33875 - corenet_udp_receive_rtorrent_port($1)
33876 +interface(`corenet_udp_sendrecv_salt_port',`
33877 + corenet_udp_send_salt_port($1)
33878 + corenet_udp_receive_salt_port($1)
33879 ')
33880
33881 ########################################
33882 ## <summary>
33883 ## Do not audit attempts to send and receive
33884 -## UDP traffic on the rtorrent port.
33885 +## UDP traffic on the salt port.
33886 ## </summary>
33887 ## <param name="domain">
33888 ## <summary>
33889 @@ -75491,14 +78592,14 @@ interface(`corenet_udp_sendrecv_rtorrent_port',`
33890 ## </param>
33891 ## <infoflow type="none"/>
33892 #
33893 -interface(`corenet_dontaudit_udp_sendrecv_rtorrent_port',`
33894 - corenet_dontaudit_udp_send_rtorrent_port($1)
33895 - corenet_dontaudit_udp_receive_rtorrent_port($1)
33896 +interface(`corenet_dontaudit_udp_sendrecv_salt_port',`
33897 + corenet_dontaudit_udp_send_salt_port($1)
33898 + corenet_dontaudit_udp_receive_salt_port($1)
33899 ')
33900
33901 ########################################
33902 ## <summary>
33903 -## Bind TCP sockets to the rtorrent port.
33904 +## Bind TCP sockets to the salt port.
33905 ## </summary>
33906 ## <param name="domain">
33907 ## <summary>
33908 @@ -75507,18 +78608,18 @@ interface(`corenet_dontaudit_udp_sendrecv_rtorrent_port',`
33909 ## </param>
33910 ## <infoflow type="none"/>
33911 #
33912 -interface(`corenet_tcp_bind_rtorrent_port',`
33913 +interface(`corenet_tcp_bind_salt_port',`
33914 gen_require(`
33915 - type rtorrent_port_t;
33916 + type salt_port_t;
33917 ')
33918
33919 - allow $1 rtorrent_port_t:tcp_socket name_bind;
33920 + allow $1 salt_port_t:tcp_socket name_bind;
33921
33922 ')
33923
33924 ########################################
33925 ## <summary>
33926 -## Bind UDP sockets to the rtorrent port.
33927 +## Bind UDP sockets to the salt port.
33928 ## </summary>
33929 ## <param name="domain">
33930 ## <summary>
33931 @@ -75527,18 +78628,18 @@ interface(`corenet_tcp_bind_rtorrent_port',`
33932 ## </param>
33933 ## <infoflow type="none"/>
33934 #
33935 -interface(`corenet_udp_bind_rtorrent_port',`
33936 +interface(`corenet_udp_bind_salt_port',`
33937 gen_require(`
33938 - type rtorrent_port_t;
33939 + type salt_port_t;
33940 ')
33941
33942 - allow $1 rtorrent_port_t:udp_socket name_bind;
33943 + allow $1 salt_port_t:udp_socket name_bind;
33944
33945 ')
33946
33947 ########################################
33948 ## <summary>
33949 -## Make a TCP connection to the rtorrent port.
33950 +## Make a TCP connection to the salt port.
33951 ## </summary>
33952 ## <param name="domain">
33953 ## <summary>
33954 @@ -75546,18 +78647,18 @@ interface(`corenet_udp_bind_rtorrent_port',`
33955 ## </summary>
33956 ## </param>
33957 #
33958 -interface(`corenet_tcp_connect_rtorrent_port',`
33959 +interface(`corenet_tcp_connect_salt_port',`
33960 gen_require(`
33961 - type rtorrent_port_t;
33962 + type salt_port_t;
33963 ')
33964
33965 - allow $1 rtorrent_port_t:tcp_socket name_connect;
33966 + allow $1 salt_port_t:tcp_socket name_connect;
33967 ')
33968
33969
33970 ########################################
33971 ## <summary>
33972 -## Send rtorrent_client packets.
33973 +## Send salt_client packets.
33974 ## </summary>
33975 ## <param name="domain">
33976 ## <summary>
33977 @@ -75566,17 +78667,17 @@ interface(`corenet_tcp_connect_rtorrent_port',`
33978 ## </param>
33979 ## <infoflow type="write" weight="10"/>
33980 #
33981 -interface(`corenet_send_rtorrent_client_packets',`
33982 +interface(`corenet_send_salt_client_packets',`
33983 gen_require(`
33984 - type rtorrent_client_packet_t;
33985 + type salt_client_packet_t;
33986 ')
33987
33988 - allow $1 rtorrent_client_packet_t:packet send;
33989 + allow $1 salt_client_packet_t:packet send;
33990 ')
33991
33992 ########################################
33993 ## <summary>
33994 -## Do not audit attempts to send rtorrent_client packets.
33995 +## Do not audit attempts to send salt_client packets.
33996 ## </summary>
33997 ## <param name="domain">
33998 ## <summary>
33999 @@ -75585,17 +78686,17 @@ interface(`corenet_send_rtorrent_client_packets',`
34000 ## </param>
34001 ## <infoflow type="none"/>
34002 #
34003 -interface(`corenet_dontaudit_send_rtorrent_client_packets',`
34004 +interface(`corenet_dontaudit_send_salt_client_packets',`
34005 gen_require(`
34006 - type rtorrent_client_packet_t;
34007 + type salt_client_packet_t;
34008 ')
34009
34010 - dontaudit $1 rtorrent_client_packet_t:packet send;
34011 + dontaudit $1 salt_client_packet_t:packet send;
34012 ')
34013
34014 ########################################
34015 ## <summary>
34016 -## Receive rtorrent_client packets.
34017 +## Receive salt_client packets.
34018 ## </summary>
34019 ## <param name="domain">
34020 ## <summary>
34021 @@ -75604,17 +78705,17 @@ interface(`corenet_dontaudit_send_rtorrent_client_packets',`
34022 ## </param>
34023 ## <infoflow type="read" weight="10"/>
34024 #
34025 -interface(`corenet_receive_rtorrent_client_packets',`
34026 +interface(`corenet_receive_salt_client_packets',`
34027 gen_require(`
34028 - type rtorrent_client_packet_t;
34029 + type salt_client_packet_t;
34030 ')
34031
34032 - allow $1 rtorrent_client_packet_t:packet recv;
34033 + allow $1 salt_client_packet_t:packet recv;
34034 ')
34035
34036 ########################################
34037 ## <summary>
34038 -## Do not audit attempts to receive rtorrent_client packets.
34039 +## Do not audit attempts to receive salt_client packets.
34040 ## </summary>
34041 ## <param name="domain">
34042 ## <summary>
34043 @@ -75623,17 +78724,17 @@ interface(`corenet_receive_rtorrent_client_packets',`
34044 ## </param>
34045 ## <infoflow type="none"/>
34046 #
34047 -interface(`corenet_dontaudit_receive_rtorrent_client_packets',`
34048 +interface(`corenet_dontaudit_receive_salt_client_packets',`
34049 gen_require(`
34050 - type rtorrent_client_packet_t;
34051 + type salt_client_packet_t;
34052 ')
34053
34054 - dontaudit $1 rtorrent_client_packet_t:packet recv;
34055 + dontaudit $1 salt_client_packet_t:packet recv;
34056 ')
34057
34058 ########################################
34059 ## <summary>
34060 -## Send and receive rtorrent_client packets.
34061 +## Send and receive salt_client packets.
34062 ## </summary>
34063 ## <param name="domain">
34064 ## <summary>
34065 @@ -75642,14 +78743,14 @@ interface(`corenet_dontaudit_receive_rtorrent_client_packets',`
34066 ## </param>
34067 ## <infoflow type="both" weight="10"/>
34068 #
34069 -interface(`corenet_sendrecv_rtorrent_client_packets',`
34070 - corenet_send_rtorrent_client_packets($1)
34071 - corenet_receive_rtorrent_client_packets($1)
34072 +interface(`corenet_sendrecv_salt_client_packets',`
34073 + corenet_send_salt_client_packets($1)
34074 + corenet_receive_salt_client_packets($1)
34075 ')
34076
34077 ########################################
34078 ## <summary>
34079 -## Do not audit attempts to send and receive rtorrent_client packets.
34080 +## Do not audit attempts to send and receive salt_client packets.
34081 ## </summary>
34082 ## <param name="domain">
34083 ## <summary>
34084 @@ -75658,14 +78759,14 @@ interface(`corenet_sendrecv_rtorrent_client_packets',`
34085 ## </param>
34086 ## <infoflow type="none"/>
34087 #
34088 -interface(`corenet_dontaudit_sendrecv_rtorrent_client_packets',`
34089 - corenet_dontaudit_send_rtorrent_client_packets($1)
34090 - corenet_dontaudit_receive_rtorrent_client_packets($1)
34091 +interface(`corenet_dontaudit_sendrecv_salt_client_packets',`
34092 + corenet_dontaudit_send_salt_client_packets($1)
34093 + corenet_dontaudit_receive_salt_client_packets($1)
34094 ')
34095
34096 ########################################
34097 ## <summary>
34098 -## Relabel packets to rtorrent_client the packet type.
34099 +## Relabel packets to salt_client the packet type.
34100 ## </summary>
34101 ## <param name="domain">
34102 ## <summary>
34103 @@ -75673,18 +78774,18 @@ interface(`corenet_dontaudit_sendrecv_rtorrent_client_packets',`
34104 ## </summary>
34105 ## </param>
34106 #
34107 -interface(`corenet_relabelto_rtorrent_client_packets',`
34108 +interface(`corenet_relabelto_salt_client_packets',`
34109 gen_require(`
34110 - type rtorrent_client_packet_t;
34111 + type salt_client_packet_t;
34112 ')
34113
34114 - allow $1 rtorrent_client_packet_t:packet relabelto;
34115 + allow $1 salt_client_packet_t:packet relabelto;
34116 ')
34117
34118
34119 ########################################
34120 ## <summary>
34121 -## Send rtorrent_server packets.
34122 +## Send salt_server packets.
34123 ## </summary>
34124 ## <param name="domain">
34125 ## <summary>
34126 @@ -75693,17 +78794,17 @@ interface(`corenet_relabelto_rtorrent_client_packets',`
34127 ## </param>
34128 ## <infoflow type="write" weight="10"/>
34129 #
34130 -interface(`corenet_send_rtorrent_server_packets',`
34131 +interface(`corenet_send_salt_server_packets',`
34132 gen_require(`
34133 - type rtorrent_server_packet_t;
34134 + type salt_server_packet_t;
34135 ')
34136
34137 - allow $1 rtorrent_server_packet_t:packet send;
34138 + allow $1 salt_server_packet_t:packet send;
34139 ')
34140
34141 ########################################
34142 ## <summary>
34143 -## Do not audit attempts to send rtorrent_server packets.
34144 +## Do not audit attempts to send salt_server packets.
34145 ## </summary>
34146 ## <param name="domain">
34147 ## <summary>
34148 @@ -75712,17 +78813,17 @@ interface(`corenet_send_rtorrent_server_packets',`
34149 ## </param>
34150 ## <infoflow type="none"/>
34151 #
34152 -interface(`corenet_dontaudit_send_rtorrent_server_packets',`
34153 +interface(`corenet_dontaudit_send_salt_server_packets',`
34154 gen_require(`
34155 - type rtorrent_server_packet_t;
34156 + type salt_server_packet_t;
34157 ')
34158
34159 - dontaudit $1 rtorrent_server_packet_t:packet send;
34160 + dontaudit $1 salt_server_packet_t:packet send;
34161 ')
34162
34163 ########################################
34164 ## <summary>
34165 -## Receive rtorrent_server packets.
34166 +## Receive salt_server packets.
34167 ## </summary>
34168 ## <param name="domain">
34169 ## <summary>
34170 @@ -75731,17 +78832,17 @@ interface(`corenet_dontaudit_send_rtorrent_server_packets',`
34171 ## </param>
34172 ## <infoflow type="read" weight="10"/>
34173 #
34174 -interface(`corenet_receive_rtorrent_server_packets',`
34175 +interface(`corenet_receive_salt_server_packets',`
34176 gen_require(`
34177 - type rtorrent_server_packet_t;
34178 + type salt_server_packet_t;
34179 ')
34180
34181 - allow $1 rtorrent_server_packet_t:packet recv;
34182 + allow $1 salt_server_packet_t:packet recv;
34183 ')
34184
34185 ########################################
34186 ## <summary>
34187 -## Do not audit attempts to receive rtorrent_server packets.
34188 +## Do not audit attempts to receive salt_server packets.
34189 ## </summary>
34190 ## <param name="domain">
34191 ## <summary>
34192 @@ -75750,17 +78851,17 @@ interface(`corenet_receive_rtorrent_server_packets',`
34193 ## </param>
34194 ## <infoflow type="none"/>
34195 #
34196 -interface(`corenet_dontaudit_receive_rtorrent_server_packets',`
34197 +interface(`corenet_dontaudit_receive_salt_server_packets',`
34198 gen_require(`
34199 - type rtorrent_server_packet_t;
34200 + type salt_server_packet_t;
34201 ')
34202
34203 - dontaudit $1 rtorrent_server_packet_t:packet recv;
34204 + dontaudit $1 salt_server_packet_t:packet recv;
34205 ')
34206
34207 ########################################
34208 ## <summary>
34209 -## Send and receive rtorrent_server packets.
34210 +## Send and receive salt_server packets.
34211 ## </summary>
34212 ## <param name="domain">
34213 ## <summary>
34214 @@ -75769,14 +78870,14 @@ interface(`corenet_dontaudit_receive_rtorrent_server_packets',`
34215 ## </param>
34216 ## <infoflow type="both" weight="10"/>
34217 #
34218 -interface(`corenet_sendrecv_rtorrent_server_packets',`
34219 - corenet_send_rtorrent_server_packets($1)
34220 - corenet_receive_rtorrent_server_packets($1)
34221 +interface(`corenet_sendrecv_salt_server_packets',`
34222 + corenet_send_salt_server_packets($1)
34223 + corenet_receive_salt_server_packets($1)
34224 ')
34225
34226 ########################################
34227 ## <summary>
34228 -## Do not audit attempts to send and receive rtorrent_server packets.
34229 +## Do not audit attempts to send and receive salt_server packets.
34230 ## </summary>
34231 ## <param name="domain">
34232 ## <summary>
34233 @@ -75785,14 +78886,14 @@ interface(`corenet_sendrecv_rtorrent_server_packets',`
34234 ## </param>
34235 ## <infoflow type="none"/>
34236 #
34237 -interface(`corenet_dontaudit_sendrecv_rtorrent_server_packets',`
34238 - corenet_dontaudit_send_rtorrent_server_packets($1)
34239 - corenet_dontaudit_receive_rtorrent_server_packets($1)
34240 +interface(`corenet_dontaudit_sendrecv_salt_server_packets',`
34241 + corenet_dontaudit_send_salt_server_packets($1)
34242 + corenet_dontaudit_receive_salt_server_packets($1)
34243 ')
34244
34245 ########################################
34246 ## <summary>
34247 -## Relabel packets to rtorrent_server the packet type.
34248 +## Relabel packets to salt_server the packet type.
34249 ## </summary>
34250 ## <param name="domain">
34251 ## <summary>
34252 @@ -75800,12 +78901,12 @@ interface(`corenet_dontaudit_sendrecv_rtorrent_server_packets',`
34253 ## </summary>
34254 ## </param>
34255 #
34256 -interface(`corenet_relabelto_rtorrent_server_packets',`
34257 +interface(`corenet_relabelto_salt_server_packets',`
34258 gen_require(`
34259 - type rtorrent_server_packet_t;
34260 + type salt_server_packet_t;
34261 ')
34262
34263 - allow $1 rtorrent_server_packet_t:packet relabelto;
34264 + allow $1 salt_server_packet_t:packet relabelto;
34265 ')
34266
34267
34268 @@ -75813,7 +78914,7 @@ interface(`corenet_relabelto_rtorrent_server_packets',`
34269
34270 ########################################
34271 ## <summary>
34272 -## Send and receive TCP traffic on the rtsp port.
34273 +## Send and receive TCP traffic on the sap port.
34274 ## </summary>
34275 ## <param name="domain">
34276 ## <summary>
34277 @@ -75822,17 +78923,17 @@ interface(`corenet_relabelto_rtorrent_server_packets',`
34278 ## </param>
34279 ## <infoflow type="both" weight="10"/>
34280 #
34281 -interface(`corenet_tcp_sendrecv_rtsp_port',`
34282 +interface(`corenet_tcp_sendrecv_sap_port',`
34283 gen_require(`
34284 - type rtsp_port_t;
34285 + type sap_port_t;
34286 ')
34287
34288 - allow $1 rtsp_port_t:tcp_socket { send_msg recv_msg };
34289 + allow $1 sap_port_t:tcp_socket { send_msg recv_msg };
34290 ')
34291
34292 ########################################
34293 ## <summary>
34294 -## Send UDP traffic on the rtsp port.
34295 +## Send UDP traffic on the sap port.
34296 ## </summary>
34297 ## <param name="domain">
34298 ## <summary>
34299 @@ -75841,17 +78942,17 @@ interface(`corenet_tcp_sendrecv_rtsp_port',`
34300 ## </param>
34301 ## <infoflow type="write" weight="10"/>
34302 #
34303 -interface(`corenet_udp_send_rtsp_port',`
34304 +interface(`corenet_udp_send_sap_port',`
34305 gen_require(`
34306 - type rtsp_port_t;
34307 + type sap_port_t;
34308 ')
34309
34310 - allow $1 rtsp_port_t:udp_socket send_msg;
34311 + allow $1 sap_port_t:udp_socket send_msg;
34312 ')
34313
34314 ########################################
34315 ## <summary>
34316 -## Do not audit attempts to send UDP traffic on the rtsp port.
34317 +## Do not audit attempts to send UDP traffic on the sap port.
34318 ## </summary>
34319 ## <param name="domain">
34320 ## <summary>
34321 @@ -75860,17 +78961,17 @@ interface(`corenet_udp_send_rtsp_port',`
34322 ## </param>
34323 ## <infoflow type="none"/>
34324 #
34325 -interface(`corenet_dontaudit_udp_send_rtsp_port',`
34326 +interface(`corenet_dontaudit_udp_send_sap_port',`
34327 gen_require(`
34328 - type rtsp_port_t;
34329 + type sap_port_t;
34330 ')
34331
34332 - dontaudit $1 rtsp_port_t:udp_socket send_msg;
34333 + dontaudit $1 sap_port_t:udp_socket send_msg;
34334 ')
34335
34336 ########################################
34337 ## <summary>
34338 -## Receive UDP traffic on the rtsp port.
34339 +## Receive UDP traffic on the sap port.
34340 ## </summary>
34341 ## <param name="domain">
34342 ## <summary>
34343 @@ -75879,17 +78980,17 @@ interface(`corenet_dontaudit_udp_send_rtsp_port',`
34344 ## </param>
34345 ## <infoflow type="read" weight="10"/>
34346 #
34347 -interface(`corenet_udp_receive_rtsp_port',`
34348 +interface(`corenet_udp_receive_sap_port',`
34349 gen_require(`
34350 - type rtsp_port_t;
34351 + type sap_port_t;
34352 ')
34353
34354 - allow $1 rtsp_port_t:udp_socket recv_msg;
34355 + allow $1 sap_port_t:udp_socket recv_msg;
34356 ')
34357
34358 ########################################
34359 ## <summary>
34360 -## Do not audit attempts to receive UDP traffic on the rtsp port.
34361 +## Do not audit attempts to receive UDP traffic on the sap port.
34362 ## </summary>
34363 ## <param name="domain">
34364 ## <summary>
34365 @@ -75898,17 +78999,17 @@ interface(`corenet_udp_receive_rtsp_port',`
34366 ## </param>
34367 ## <infoflow type="none"/>
34368 #
34369 -interface(`corenet_dontaudit_udp_receive_rtsp_port',`
34370 +interface(`corenet_dontaudit_udp_receive_sap_port',`
34371 gen_require(`
34372 - type rtsp_port_t;
34373 + type sap_port_t;
34374 ')
34375
34376 - dontaudit $1 rtsp_port_t:udp_socket recv_msg;
34377 + dontaudit $1 sap_port_t:udp_socket recv_msg;
34378 ')
34379
34380 ########################################
34381 ## <summary>
34382 -## Send and receive UDP traffic on the rtsp port.
34383 +## Send and receive UDP traffic on the sap port.
34384 ## </summary>
34385 ## <param name="domain">
34386 ## <summary>
34387 @@ -75917,15 +79018,15 @@ interface(`corenet_dontaudit_udp_receive_rtsp_port',`
34388 ## </param>
34389 ## <infoflow type="both" weight="10"/>
34390 #
34391 -interface(`corenet_udp_sendrecv_rtsp_port',`
34392 - corenet_udp_send_rtsp_port($1)
34393 - corenet_udp_receive_rtsp_port($1)
34394 +interface(`corenet_udp_sendrecv_sap_port',`
34395 + corenet_udp_send_sap_port($1)
34396 + corenet_udp_receive_sap_port($1)
34397 ')
34398
34399 ########################################
34400 ## <summary>
34401 ## Do not audit attempts to send and receive
34402 -## UDP traffic on the rtsp port.
34403 +## UDP traffic on the sap port.
34404 ## </summary>
34405 ## <param name="domain">
34406 ## <summary>
34407 @@ -75934,14 +79035,14 @@ interface(`corenet_udp_sendrecv_rtsp_port',`
34408 ## </param>
34409 ## <infoflow type="none"/>
34410 #
34411 -interface(`corenet_dontaudit_udp_sendrecv_rtsp_port',`
34412 - corenet_dontaudit_udp_send_rtsp_port($1)
34413 - corenet_dontaudit_udp_receive_rtsp_port($1)
34414 +interface(`corenet_dontaudit_udp_sendrecv_sap_port',`
34415 + corenet_dontaudit_udp_send_sap_port($1)
34416 + corenet_dontaudit_udp_receive_sap_port($1)
34417 ')
34418
34419 ########################################
34420 ## <summary>
34421 -## Bind TCP sockets to the rtsp port.
34422 +## Bind TCP sockets to the sap port.
34423 ## </summary>
34424 ## <param name="domain">
34425 ## <summary>
34426 @@ -75950,18 +79051,18 @@ interface(`corenet_dontaudit_udp_sendrecv_rtsp_port',`
34427 ## </param>
34428 ## <infoflow type="none"/>
34429 #
34430 -interface(`corenet_tcp_bind_rtsp_port',`
34431 +interface(`corenet_tcp_bind_sap_port',`
34432 gen_require(`
34433 - type rtsp_port_t;
34434 + type sap_port_t;
34435 ')
34436
34437 - allow $1 rtsp_port_t:tcp_socket name_bind;
34438 - allow $1 self:capability net_bind_service;
34439 + allow $1 sap_port_t:tcp_socket name_bind;
34440 +
34441 ')
34442
34443 ########################################
34444 ## <summary>
34445 -## Bind UDP sockets to the rtsp port.
34446 +## Bind UDP sockets to the sap port.
34447 ## </summary>
34448 ## <param name="domain">
34449 ## <summary>
34450 @@ -75970,18 +79071,18 @@ interface(`corenet_tcp_bind_rtsp_port',`
34451 ## </param>
34452 ## <infoflow type="none"/>
34453 #
34454 -interface(`corenet_udp_bind_rtsp_port',`
34455 +interface(`corenet_udp_bind_sap_port',`
34456 gen_require(`
34457 - type rtsp_port_t;
34458 + type sap_port_t;
34459 ')
34460
34461 - allow $1 rtsp_port_t:udp_socket name_bind;
34462 - allow $1 self:capability net_bind_service;
34463 + allow $1 sap_port_t:udp_socket name_bind;
34464 +
34465 ')
34466
34467 ########################################
34468 ## <summary>
34469 -## Make a TCP connection to the rtsp port.
34470 +## Make a TCP connection to the sap port.
34471 ## </summary>
34472 ## <param name="domain">
34473 ## <summary>
34474 @@ -75989,18 +79090,18 @@ interface(`corenet_udp_bind_rtsp_port',`
34475 ## </summary>
34476 ## </param>
34477 #
34478 -interface(`corenet_tcp_connect_rtsp_port',`
34479 +interface(`corenet_tcp_connect_sap_port',`
34480 gen_require(`
34481 - type rtsp_port_t;
34482 + type sap_port_t;
34483 ')
34484
34485 - allow $1 rtsp_port_t:tcp_socket name_connect;
34486 + allow $1 sap_port_t:tcp_socket name_connect;
34487 ')
34488
34489
34490 ########################################
34491 ## <summary>
34492 -## Send rtsp_client packets.
34493 +## Send sap_client packets.
34494 ## </summary>
34495 ## <param name="domain">
34496 ## <summary>
34497 @@ -76009,17 +79110,17 @@ interface(`corenet_tcp_connect_rtsp_port',`
34498 ## </param>
34499 ## <infoflow type="write" weight="10"/>
34500 #
34501 -interface(`corenet_send_rtsp_client_packets',`
34502 +interface(`corenet_send_sap_client_packets',`
34503 gen_require(`
34504 - type rtsp_client_packet_t;
34505 + type sap_client_packet_t;
34506 ')
34507
34508 - allow $1 rtsp_client_packet_t:packet send;
34509 + allow $1 sap_client_packet_t:packet send;
34510 ')
34511
34512 ########################################
34513 ## <summary>
34514 -## Do not audit attempts to send rtsp_client packets.
34515 +## Do not audit attempts to send sap_client packets.
34516 ## </summary>
34517 ## <param name="domain">
34518 ## <summary>
34519 @@ -76028,17 +79129,17 @@ interface(`corenet_send_rtsp_client_packets',`
34520 ## </param>
34521 ## <infoflow type="none"/>
34522 #
34523 -interface(`corenet_dontaudit_send_rtsp_client_packets',`
34524 +interface(`corenet_dontaudit_send_sap_client_packets',`
34525 gen_require(`
34526 - type rtsp_client_packet_t;
34527 + type sap_client_packet_t;
34528 ')
34529
34530 - dontaudit $1 rtsp_client_packet_t:packet send;
34531 + dontaudit $1 sap_client_packet_t:packet send;
34532 ')
34533
34534 ########################################
34535 ## <summary>
34536 -## Receive rtsp_client packets.
34537 +## Receive sap_client packets.
34538 ## </summary>
34539 ## <param name="domain">
34540 ## <summary>
34541 @@ -76047,17 +79148,17 @@ interface(`corenet_dontaudit_send_rtsp_client_packets',`
34542 ## </param>
34543 ## <infoflow type="read" weight="10"/>
34544 #
34545 -interface(`corenet_receive_rtsp_client_packets',`
34546 +interface(`corenet_receive_sap_client_packets',`
34547 gen_require(`
34548 - type rtsp_client_packet_t;
34549 + type sap_client_packet_t;
34550 ')
34551
34552 - allow $1 rtsp_client_packet_t:packet recv;
34553 + allow $1 sap_client_packet_t:packet recv;
34554 ')
34555
34556 ########################################
34557 ## <summary>
34558 -## Do not audit attempts to receive rtsp_client packets.
34559 +## Do not audit attempts to receive sap_client packets.
34560 ## </summary>
34561 ## <param name="domain">
34562 ## <summary>
34563 @@ -76066,17 +79167,17 @@ interface(`corenet_receive_rtsp_client_packets',`
34564 ## </param>
34565 ## <infoflow type="none"/>
34566 #
34567 -interface(`corenet_dontaudit_receive_rtsp_client_packets',`
34568 +interface(`corenet_dontaudit_receive_sap_client_packets',`
34569 gen_require(`
34570 - type rtsp_client_packet_t;
34571 + type sap_client_packet_t;
34572 ')
34573
34574 - dontaudit $1 rtsp_client_packet_t:packet recv;
34575 + dontaudit $1 sap_client_packet_t:packet recv;
34576 ')
34577
34578 ########################################
34579 ## <summary>
34580 -## Send and receive rtsp_client packets.
34581 +## Send and receive sap_client packets.
34582 ## </summary>
34583 ## <param name="domain">
34584 ## <summary>
34585 @@ -76085,14 +79186,14 @@ interface(`corenet_dontaudit_receive_rtsp_client_packets',`
34586 ## </param>
34587 ## <infoflow type="both" weight="10"/>
34588 #
34589 -interface(`corenet_sendrecv_rtsp_client_packets',`
34590 - corenet_send_rtsp_client_packets($1)
34591 - corenet_receive_rtsp_client_packets($1)
34592 +interface(`corenet_sendrecv_sap_client_packets',`
34593 + corenet_send_sap_client_packets($1)
34594 + corenet_receive_sap_client_packets($1)
34595 ')
34596
34597 ########################################
34598 ## <summary>
34599 -## Do not audit attempts to send and receive rtsp_client packets.
34600 +## Do not audit attempts to send and receive sap_client packets.
34601 ## </summary>
34602 ## <param name="domain">
34603 ## <summary>
34604 @@ -76101,14 +79202,14 @@ interface(`corenet_sendrecv_rtsp_client_packets',`
34605 ## </param>
34606 ## <infoflow type="none"/>
34607 #
34608 -interface(`corenet_dontaudit_sendrecv_rtsp_client_packets',`
34609 - corenet_dontaudit_send_rtsp_client_packets($1)
34610 - corenet_dontaudit_receive_rtsp_client_packets($1)
34611 +interface(`corenet_dontaudit_sendrecv_sap_client_packets',`
34612 + corenet_dontaudit_send_sap_client_packets($1)
34613 + corenet_dontaudit_receive_sap_client_packets($1)
34614 ')
34615
34616 ########################################
34617 ## <summary>
34618 -## Relabel packets to rtsp_client the packet type.
34619 +## Relabel packets to sap_client the packet type.
34620 ## </summary>
34621 ## <param name="domain">
34622 ## <summary>
34623 @@ -76116,18 +79217,18 @@ interface(`corenet_dontaudit_sendrecv_rtsp_client_packets',`
34624 ## </summary>
34625 ## </param>
34626 #
34627 -interface(`corenet_relabelto_rtsp_client_packets',`
34628 +interface(`corenet_relabelto_sap_client_packets',`
34629 gen_require(`
34630 - type rtsp_client_packet_t;
34631 + type sap_client_packet_t;
34632 ')
34633
34634 - allow $1 rtsp_client_packet_t:packet relabelto;
34635 + allow $1 sap_client_packet_t:packet relabelto;
34636 ')
34637
34638
34639 ########################################
34640 ## <summary>
34641 -## Send rtsp_server packets.
34642 +## Send sap_server packets.
34643 ## </summary>
34644 ## <param name="domain">
34645 ## <summary>
34646 @@ -76136,17 +79237,17 @@ interface(`corenet_relabelto_rtsp_client_packets',`
34647 ## </param>
34648 ## <infoflow type="write" weight="10"/>
34649 #
34650 -interface(`corenet_send_rtsp_server_packets',`
34651 +interface(`corenet_send_sap_server_packets',`
34652 gen_require(`
34653 - type rtsp_server_packet_t;
34654 + type sap_server_packet_t;
34655 ')
34656
34657 - allow $1 rtsp_server_packet_t:packet send;
34658 + allow $1 sap_server_packet_t:packet send;
34659 ')
34660
34661 ########################################
34662 ## <summary>
34663 -## Do not audit attempts to send rtsp_server packets.
34664 +## Do not audit attempts to send sap_server packets.
34665 ## </summary>
34666 ## <param name="domain">
34667 ## <summary>
34668 @@ -76155,17 +79256,17 @@ interface(`corenet_send_rtsp_server_packets',`
34669 ## </param>
34670 ## <infoflow type="none"/>
34671 #
34672 -interface(`corenet_dontaudit_send_rtsp_server_packets',`
34673 +interface(`corenet_dontaudit_send_sap_server_packets',`
34674 gen_require(`
34675 - type rtsp_server_packet_t;
34676 + type sap_server_packet_t;
34677 ')
34678
34679 - dontaudit $1 rtsp_server_packet_t:packet send;
34680 + dontaudit $1 sap_server_packet_t:packet send;
34681 ')
34682
34683 ########################################
34684 ## <summary>
34685 -## Receive rtsp_server packets.
34686 +## Receive sap_server packets.
34687 ## </summary>
34688 ## <param name="domain">
34689 ## <summary>
34690 @@ -76174,17 +79275,17 @@ interface(`corenet_dontaudit_send_rtsp_server_packets',`
34691 ## </param>
34692 ## <infoflow type="read" weight="10"/>
34693 #
34694 -interface(`corenet_receive_rtsp_server_packets',`
34695 +interface(`corenet_receive_sap_server_packets',`
34696 gen_require(`
34697 - type rtsp_server_packet_t;
34698 + type sap_server_packet_t;
34699 ')
34700
34701 - allow $1 rtsp_server_packet_t:packet recv;
34702 + allow $1 sap_server_packet_t:packet recv;
34703 ')
34704
34705 ########################################
34706 ## <summary>
34707 -## Do not audit attempts to receive rtsp_server packets.
34708 +## Do not audit attempts to receive sap_server packets.
34709 ## </summary>
34710 ## <param name="domain">
34711 ## <summary>
34712 @@ -76193,17 +79294,17 @@ interface(`corenet_receive_rtsp_server_packets',`
34713 ## </param>
34714 ## <infoflow type="none"/>
34715 #
34716 -interface(`corenet_dontaudit_receive_rtsp_server_packets',`
34717 +interface(`corenet_dontaudit_receive_sap_server_packets',`
34718 gen_require(`
34719 - type rtsp_server_packet_t;
34720 + type sap_server_packet_t;
34721 ')
34722
34723 - dontaudit $1 rtsp_server_packet_t:packet recv;
34724 + dontaudit $1 sap_server_packet_t:packet recv;
34725 ')
34726
34727 ########################################
34728 ## <summary>
34729 -## Send and receive rtsp_server packets.
34730 +## Send and receive sap_server packets.
34731 ## </summary>
34732 ## <param name="domain">
34733 ## <summary>
34734 @@ -76212,14 +79313,14 @@ interface(`corenet_dontaudit_receive_rtsp_server_packets',`
34735 ## </param>
34736 ## <infoflow type="both" weight="10"/>
34737 #
34738 -interface(`corenet_sendrecv_rtsp_server_packets',`
34739 - corenet_send_rtsp_server_packets($1)
34740 - corenet_receive_rtsp_server_packets($1)
34741 +interface(`corenet_sendrecv_sap_server_packets',`
34742 + corenet_send_sap_server_packets($1)
34743 + corenet_receive_sap_server_packets($1)
34744 ')
34745
34746 ########################################
34747 ## <summary>
34748 -## Do not audit attempts to send and receive rtsp_server packets.
34749 +## Do not audit attempts to send and receive sap_server packets.
34750 ## </summary>
34751 ## <param name="domain">
34752 ## <summary>
34753 @@ -76228,14 +79329,14 @@ interface(`corenet_sendrecv_rtsp_server_packets',`
34754 ## </param>
34755 ## <infoflow type="none"/>
34756 #
34757 -interface(`corenet_dontaudit_sendrecv_rtsp_server_packets',`
34758 - corenet_dontaudit_send_rtsp_server_packets($1)
34759 - corenet_dontaudit_receive_rtsp_server_packets($1)
34760 +interface(`corenet_dontaudit_sendrecv_sap_server_packets',`
34761 + corenet_dontaudit_send_sap_server_packets($1)
34762 + corenet_dontaudit_receive_sap_server_packets($1)
34763 ')
34764
34765 ########################################
34766 ## <summary>
34767 -## Relabel packets to rtsp_server the packet type.
34768 +## Relabel packets to sap_server the packet type.
34769 ## </summary>
34770 ## <param name="domain">
34771 ## <summary>
34772 @@ -76243,12 +79344,12 @@ interface(`corenet_dontaudit_sendrecv_rtsp_server_packets',`
34773 ## </summary>
34774 ## </param>
34775 #
34776 -interface(`corenet_relabelto_rtsp_server_packets',`
34777 +interface(`corenet_relabelto_sap_server_packets',`
34778 gen_require(`
34779 - type rtsp_server_packet_t;
34780 + type sap_server_packet_t;
34781 ')
34782
34783 - allow $1 rtsp_server_packet_t:packet relabelto;
34784 + allow $1 sap_server_packet_t:packet relabelto;
34785 ')
34786
34787
34788 @@ -76256,7 +79357,7 @@ interface(`corenet_relabelto_rtsp_server_packets',`
34789
34790 ########################################
34791 ## <summary>
34792 -## Send and receive TCP traffic on the rwho port.
34793 +## Send and receive TCP traffic on the servistaitsm port.
34794 ## </summary>
34795 ## <param name="domain">
34796 ## <summary>
34797 @@ -76265,17 +79366,17 @@ interface(`corenet_relabelto_rtsp_server_packets',`
34798 ## </param>
34799 ## <infoflow type="both" weight="10"/>
34800 #
34801 -interface(`corenet_tcp_sendrecv_rwho_port',`
34802 +interface(`corenet_tcp_sendrecv_servistaitsm_port',`
34803 gen_require(`
34804 - type rwho_port_t;
34805 + type servistaitsm_port_t;
34806 ')
34807
34808 - allow $1 rwho_port_t:tcp_socket { send_msg recv_msg };
34809 + allow $1 servistaitsm_port_t:tcp_socket { send_msg recv_msg };
34810 ')
34811
34812 ########################################
34813 ## <summary>
34814 -## Send UDP traffic on the rwho port.
34815 +## Send UDP traffic on the servistaitsm port.
34816 ## </summary>
34817 ## <param name="domain">
34818 ## <summary>
34819 @@ -76284,17 +79385,17 @@ interface(`corenet_tcp_sendrecv_rwho_port',`
34820 ## </param>
34821 ## <infoflow type="write" weight="10"/>
34822 #
34823 -interface(`corenet_udp_send_rwho_port',`
34824 +interface(`corenet_udp_send_servistaitsm_port',`
34825 gen_require(`
34826 - type rwho_port_t;
34827 + type servistaitsm_port_t;
34828 ')
34829
34830 - allow $1 rwho_port_t:udp_socket send_msg;
34831 + allow $1 servistaitsm_port_t:udp_socket send_msg;
34832 ')
34833
34834 ########################################
34835 ## <summary>
34836 -## Do not audit attempts to send UDP traffic on the rwho port.
34837 +## Do not audit attempts to send UDP traffic on the servistaitsm port.
34838 ## </summary>
34839 ## <param name="domain">
34840 ## <summary>
34841 @@ -76303,17 +79404,17 @@ interface(`corenet_udp_send_rwho_port',`
34842 ## </param>
34843 ## <infoflow type="none"/>
34844 #
34845 -interface(`corenet_dontaudit_udp_send_rwho_port',`
34846 +interface(`corenet_dontaudit_udp_send_servistaitsm_port',`
34847 gen_require(`
34848 - type rwho_port_t;
34849 + type servistaitsm_port_t;
34850 ')
34851
34852 - dontaudit $1 rwho_port_t:udp_socket send_msg;
34853 + dontaudit $1 servistaitsm_port_t:udp_socket send_msg;
34854 ')
34855
34856 ########################################
34857 ## <summary>
34858 -## Receive UDP traffic on the rwho port.
34859 +## Receive UDP traffic on the servistaitsm port.
34860 ## </summary>
34861 ## <param name="domain">
34862 ## <summary>
34863 @@ -76322,17 +79423,17 @@ interface(`corenet_dontaudit_udp_send_rwho_port',`
34864 ## </param>
34865 ## <infoflow type="read" weight="10"/>
34866 #
34867 -interface(`corenet_udp_receive_rwho_port',`
34868 +interface(`corenet_udp_receive_servistaitsm_port',`
34869 gen_require(`
34870 - type rwho_port_t;
34871 + type servistaitsm_port_t;
34872 ')
34873
34874 - allow $1 rwho_port_t:udp_socket recv_msg;
34875 + allow $1 servistaitsm_port_t:udp_socket recv_msg;
34876 ')
34877
34878 ########################################
34879 ## <summary>
34880 -## Do not audit attempts to receive UDP traffic on the rwho port.
34881 +## Do not audit attempts to receive UDP traffic on the servistaitsm port.
34882 ## </summary>
34883 ## <param name="domain">
34884 ## <summary>
34885 @@ -76341,17 +79442,17 @@ interface(`corenet_udp_receive_rwho_port',`
34886 ## </param>
34887 ## <infoflow type="none"/>
34888 #
34889 -interface(`corenet_dontaudit_udp_receive_rwho_port',`
34890 +interface(`corenet_dontaudit_udp_receive_servistaitsm_port',`
34891 gen_require(`
34892 - type rwho_port_t;
34893 + type servistaitsm_port_t;
34894 ')
34895
34896 - dontaudit $1 rwho_port_t:udp_socket recv_msg;
34897 + dontaudit $1 servistaitsm_port_t:udp_socket recv_msg;
34898 ')
34899
34900 ########################################
34901 ## <summary>
34902 -## Send and receive UDP traffic on the rwho port.
34903 +## Send and receive UDP traffic on the servistaitsm port.
34904 ## </summary>
34905 ## <param name="domain">
34906 ## <summary>
34907 @@ -76360,15 +79461,15 @@ interface(`corenet_dontaudit_udp_receive_rwho_port',`
34908 ## </param>
34909 ## <infoflow type="both" weight="10"/>
34910 #
34911 -interface(`corenet_udp_sendrecv_rwho_port',`
34912 - corenet_udp_send_rwho_port($1)
34913 - corenet_udp_receive_rwho_port($1)
34914 +interface(`corenet_udp_sendrecv_servistaitsm_port',`
34915 + corenet_udp_send_servistaitsm_port($1)
34916 + corenet_udp_receive_servistaitsm_port($1)
34917 ')
34918
34919 ########################################
34920 ## <summary>
34921 ## Do not audit attempts to send and receive
34922 -## UDP traffic on the rwho port.
34923 +## UDP traffic on the servistaitsm port.
34924 ## </summary>
34925 ## <param name="domain">
34926 ## <summary>
34927 @@ -76377,14 +79478,14 @@ interface(`corenet_udp_sendrecv_rwho_port',`
34928 ## </param>
34929 ## <infoflow type="none"/>
34930 #
34931 -interface(`corenet_dontaudit_udp_sendrecv_rwho_port',`
34932 - corenet_dontaudit_udp_send_rwho_port($1)
34933 - corenet_dontaudit_udp_receive_rwho_port($1)
34934 +interface(`corenet_dontaudit_udp_sendrecv_servistaitsm_port',`
34935 + corenet_dontaudit_udp_send_servistaitsm_port($1)
34936 + corenet_dontaudit_udp_receive_servistaitsm_port($1)
34937 ')
34938
34939 ########################################
34940 ## <summary>
34941 -## Bind TCP sockets to the rwho port.
34942 +## Bind TCP sockets to the servistaitsm port.
34943 ## </summary>
34944 ## <param name="domain">
34945 ## <summary>
34946 @@ -76393,18 +79494,18 @@ interface(`corenet_dontaudit_udp_sendrecv_rwho_port',`
34947 ## </param>
34948 ## <infoflow type="none"/>
34949 #
34950 -interface(`corenet_tcp_bind_rwho_port',`
34951 +interface(`corenet_tcp_bind_servistaitsm_port',`
34952 gen_require(`
34953 - type rwho_port_t;
34954 + type servistaitsm_port_t;
34955 ')
34956
34957 - allow $1 rwho_port_t:tcp_socket name_bind;
34958 - allow $1 self:capability net_bind_service;
34959 + allow $1 servistaitsm_port_t:tcp_socket name_bind;
34960 +
34961 ')
34962
34963 ########################################
34964 ## <summary>
34965 -## Bind UDP sockets to the rwho port.
34966 +## Bind UDP sockets to the servistaitsm port.
34967 ## </summary>
34968 ## <param name="domain">
34969 ## <summary>
34970 @@ -76413,18 +79514,18 @@ interface(`corenet_tcp_bind_rwho_port',`
34971 ## </param>
34972 ## <infoflow type="none"/>
34973 #
34974 -interface(`corenet_udp_bind_rwho_port',`
34975 +interface(`corenet_udp_bind_servistaitsm_port',`
34976 gen_require(`
34977 - type rwho_port_t;
34978 + type servistaitsm_port_t;
34979 ')
34980
34981 - allow $1 rwho_port_t:udp_socket name_bind;
34982 - allow $1 self:capability net_bind_service;
34983 + allow $1 servistaitsm_port_t:udp_socket name_bind;
34984 +
34985 ')
34986
34987 ########################################
34988 ## <summary>
34989 -## Make a TCP connection to the rwho port.
34990 +## Make a TCP connection to the servistaitsm port.
34991 ## </summary>
34992 ## <param name="domain">
34993 ## <summary>
34994 @@ -76432,18 +79533,18 @@ interface(`corenet_udp_bind_rwho_port',`
34995 ## </summary>
34996 ## </param>
34997 #
34998 -interface(`corenet_tcp_connect_rwho_port',`
34999 +interface(`corenet_tcp_connect_servistaitsm_port',`
35000 gen_require(`
35001 - type rwho_port_t;
35002 + type servistaitsm_port_t;
35003 ')
35004
35005 - allow $1 rwho_port_t:tcp_socket name_connect;
35006 + allow $1 servistaitsm_port_t:tcp_socket name_connect;
35007 ')
35008
35009
35010 ########################################
35011 ## <summary>
35012 -## Send rwho_client packets.
35013 +## Send servistaitsm_client packets.
35014 ## </summary>
35015 ## <param name="domain">
35016 ## <summary>
35017 @@ -76452,17 +79553,17 @@ interface(`corenet_tcp_connect_rwho_port',`
35018 ## </param>
35019 ## <infoflow type="write" weight="10"/>
35020 #
35021 -interface(`corenet_send_rwho_client_packets',`
35022 +interface(`corenet_send_servistaitsm_client_packets',`
35023 gen_require(`
35024 - type rwho_client_packet_t;
35025 + type servistaitsm_client_packet_t;
35026 ')
35027
35028 - allow $1 rwho_client_packet_t:packet send;
35029 + allow $1 servistaitsm_client_packet_t:packet send;
35030 ')
35031
35032 ########################################
35033 ## <summary>
35034 -## Do not audit attempts to send rwho_client packets.
35035 +## Do not audit attempts to send servistaitsm_client packets.
35036 ## </summary>
35037 ## <param name="domain">
35038 ## <summary>
35039 @@ -76471,17 +79572,17 @@ interface(`corenet_send_rwho_client_packets',`
35040 ## </param>
35041 ## <infoflow type="none"/>
35042 #
35043 -interface(`corenet_dontaudit_send_rwho_client_packets',`
35044 +interface(`corenet_dontaudit_send_servistaitsm_client_packets',`
35045 gen_require(`
35046 - type rwho_client_packet_t;
35047 + type servistaitsm_client_packet_t;
35048 ')
35049
35050 - dontaudit $1 rwho_client_packet_t:packet send;
35051 + dontaudit $1 servistaitsm_client_packet_t:packet send;
35052 ')
35053
35054 ########################################
35055 ## <summary>
35056 -## Receive rwho_client packets.
35057 +## Receive servistaitsm_client packets.
35058 ## </summary>
35059 ## <param name="domain">
35060 ## <summary>
35061 @@ -76490,17 +79591,17 @@ interface(`corenet_dontaudit_send_rwho_client_packets',`
35062 ## </param>
35063 ## <infoflow type="read" weight="10"/>
35064 #
35065 -interface(`corenet_receive_rwho_client_packets',`
35066 +interface(`corenet_receive_servistaitsm_client_packets',`
35067 gen_require(`
35068 - type rwho_client_packet_t;
35069 + type servistaitsm_client_packet_t;
35070 ')
35071
35072 - allow $1 rwho_client_packet_t:packet recv;
35073 + allow $1 servistaitsm_client_packet_t:packet recv;
35074 ')
35075
35076 ########################################
35077 ## <summary>
35078 -## Do not audit attempts to receive rwho_client packets.
35079 +## Do not audit attempts to receive servistaitsm_client packets.
35080 ## </summary>
35081 ## <param name="domain">
35082 ## <summary>
35083 @@ -76509,17 +79610,17 @@ interface(`corenet_receive_rwho_client_packets',`
35084 ## </param>
35085 ## <infoflow type="none"/>
35086 #
35087 -interface(`corenet_dontaudit_receive_rwho_client_packets',`
35088 +interface(`corenet_dontaudit_receive_servistaitsm_client_packets',`
35089 gen_require(`
35090 - type rwho_client_packet_t;
35091 + type servistaitsm_client_packet_t;
35092 ')
35093
35094 - dontaudit $1 rwho_client_packet_t:packet recv;
35095 + dontaudit $1 servistaitsm_client_packet_t:packet recv;
35096 ')
35097
35098 ########################################
35099 ## <summary>
35100 -## Send and receive rwho_client packets.
35101 +## Send and receive servistaitsm_client packets.
35102 ## </summary>
35103 ## <param name="domain">
35104 ## <summary>
35105 @@ -76528,14 +79629,14 @@ interface(`corenet_dontaudit_receive_rwho_client_packets',`
35106 ## </param>
35107 ## <infoflow type="both" weight="10"/>
35108 #
35109 -interface(`corenet_sendrecv_rwho_client_packets',`
35110 - corenet_send_rwho_client_packets($1)
35111 - corenet_receive_rwho_client_packets($1)
35112 +interface(`corenet_sendrecv_servistaitsm_client_packets',`
35113 + corenet_send_servistaitsm_client_packets($1)
35114 + corenet_receive_servistaitsm_client_packets($1)
35115 ')
35116
35117 ########################################
35118 ## <summary>
35119 -## Do not audit attempts to send and receive rwho_client packets.
35120 +## Do not audit attempts to send and receive servistaitsm_client packets.
35121 ## </summary>
35122 ## <param name="domain">
35123 ## <summary>
35124 @@ -76544,14 +79645,14 @@ interface(`corenet_sendrecv_rwho_client_packets',`
35125 ## </param>
35126 ## <infoflow type="none"/>
35127 #
35128 -interface(`corenet_dontaudit_sendrecv_rwho_client_packets',`
35129 - corenet_dontaudit_send_rwho_client_packets($1)
35130 - corenet_dontaudit_receive_rwho_client_packets($1)
35131 +interface(`corenet_dontaudit_sendrecv_servistaitsm_client_packets',`
35132 + corenet_dontaudit_send_servistaitsm_client_packets($1)
35133 + corenet_dontaudit_receive_servistaitsm_client_packets($1)
35134 ')
35135
35136 ########################################
35137 ## <summary>
35138 -## Relabel packets to rwho_client the packet type.
35139 +## Relabel packets to servistaitsm_client the packet type.
35140 ## </summary>
35141 ## <param name="domain">
35142 ## <summary>
35143 @@ -76559,18 +79660,18 @@ interface(`corenet_dontaudit_sendrecv_rwho_client_packets',`
35144 ## </summary>
35145 ## </param>
35146 #
35147 -interface(`corenet_relabelto_rwho_client_packets',`
35148 +interface(`corenet_relabelto_servistaitsm_client_packets',`
35149 gen_require(`
35150 - type rwho_client_packet_t;
35151 + type servistaitsm_client_packet_t;
35152 ')
35153
35154 - allow $1 rwho_client_packet_t:packet relabelto;
35155 + allow $1 servistaitsm_client_packet_t:packet relabelto;
35156 ')
35157
35158
35159 ########################################
35160 ## <summary>
35161 -## Send rwho_server packets.
35162 +## Send servistaitsm_server packets.
35163 ## </summary>
35164 ## <param name="domain">
35165 ## <summary>
35166 @@ -76579,17 +79680,17 @@ interface(`corenet_relabelto_rwho_client_packets',`
35167 ## </param>
35168 ## <infoflow type="write" weight="10"/>
35169 #
35170 -interface(`corenet_send_rwho_server_packets',`
35171 +interface(`corenet_send_servistaitsm_server_packets',`
35172 gen_require(`
35173 - type rwho_server_packet_t;
35174 + type servistaitsm_server_packet_t;
35175 ')
35176
35177 - allow $1 rwho_server_packet_t:packet send;
35178 + allow $1 servistaitsm_server_packet_t:packet send;
35179 ')
35180
35181 ########################################
35182 ## <summary>
35183 -## Do not audit attempts to send rwho_server packets.
35184 +## Do not audit attempts to send servistaitsm_server packets.
35185 ## </summary>
35186 ## <param name="domain">
35187 ## <summary>
35188 @@ -76598,17 +79699,17 @@ interface(`corenet_send_rwho_server_packets',`
35189 ## </param>
35190 ## <infoflow type="none"/>
35191 #
35192 -interface(`corenet_dontaudit_send_rwho_server_packets',`
35193 +interface(`corenet_dontaudit_send_servistaitsm_server_packets',`
35194 gen_require(`
35195 - type rwho_server_packet_t;
35196 + type servistaitsm_server_packet_t;
35197 ')
35198
35199 - dontaudit $1 rwho_server_packet_t:packet send;
35200 + dontaudit $1 servistaitsm_server_packet_t:packet send;
35201 ')
35202
35203 ########################################
35204 ## <summary>
35205 -## Receive rwho_server packets.
35206 +## Receive servistaitsm_server packets.
35207 ## </summary>
35208 ## <param name="domain">
35209 ## <summary>
35210 @@ -76617,17 +79718,17 @@ interface(`corenet_dontaudit_send_rwho_server_packets',`
35211 ## </param>
35212 ## <infoflow type="read" weight="10"/>
35213 #
35214 -interface(`corenet_receive_rwho_server_packets',`
35215 +interface(`corenet_receive_servistaitsm_server_packets',`
35216 gen_require(`
35217 - type rwho_server_packet_t;
35218 + type servistaitsm_server_packet_t;
35219 ')
35220
35221 - allow $1 rwho_server_packet_t:packet recv;
35222 + allow $1 servistaitsm_server_packet_t:packet recv;
35223 ')
35224
35225 ########################################
35226 ## <summary>
35227 -## Do not audit attempts to receive rwho_server packets.
35228 +## Do not audit attempts to receive servistaitsm_server packets.
35229 ## </summary>
35230 ## <param name="domain">
35231 ## <summary>
35232 @@ -76636,17 +79737,17 @@ interface(`corenet_receive_rwho_server_packets',`
35233 ## </param>
35234 ## <infoflow type="none"/>
35235 #
35236 -interface(`corenet_dontaudit_receive_rwho_server_packets',`
35237 +interface(`corenet_dontaudit_receive_servistaitsm_server_packets',`
35238 gen_require(`
35239 - type rwho_server_packet_t;
35240 + type servistaitsm_server_packet_t;
35241 ')
35242
35243 - dontaudit $1 rwho_server_packet_t:packet recv;
35244 + dontaudit $1 servistaitsm_server_packet_t:packet recv;
35245 ')
35246
35247 ########################################
35248 ## <summary>
35249 -## Send and receive rwho_server packets.
35250 +## Send and receive servistaitsm_server packets.
35251 ## </summary>
35252 ## <param name="domain">
35253 ## <summary>
35254 @@ -76655,14 +79756,14 @@ interface(`corenet_dontaudit_receive_rwho_server_packets',`
35255 ## </param>
35256 ## <infoflow type="both" weight="10"/>
35257 #
35258 -interface(`corenet_sendrecv_rwho_server_packets',`
35259 - corenet_send_rwho_server_packets($1)
35260 - corenet_receive_rwho_server_packets($1)
35261 +interface(`corenet_sendrecv_servistaitsm_server_packets',`
35262 + corenet_send_servistaitsm_server_packets($1)
35263 + corenet_receive_servistaitsm_server_packets($1)
35264 ')
35265
35266 ########################################
35267 ## <summary>
35268 -## Do not audit attempts to send and receive rwho_server packets.
35269 +## Do not audit attempts to send and receive servistaitsm_server packets.
35270 ## </summary>
35271 ## <param name="domain">
35272 ## <summary>
35273 @@ -76671,14 +79772,14 @@ interface(`corenet_sendrecv_rwho_server_packets',`
35274 ## </param>
35275 ## <infoflow type="none"/>
35276 #
35277 -interface(`corenet_dontaudit_sendrecv_rwho_server_packets',`
35278 - corenet_dontaudit_send_rwho_server_packets($1)
35279 - corenet_dontaudit_receive_rwho_server_packets($1)
35280 +interface(`corenet_dontaudit_sendrecv_servistaitsm_server_packets',`
35281 + corenet_dontaudit_send_servistaitsm_server_packets($1)
35282 + corenet_dontaudit_receive_servistaitsm_server_packets($1)
35283 ')
35284
35285 ########################################
35286 ## <summary>
35287 -## Relabel packets to rwho_server the packet type.
35288 +## Relabel packets to servistaitsm_server the packet type.
35289 ## </summary>
35290 ## <param name="domain">
35291 ## <summary>
35292 @@ -76686,12 +79787,12 @@ interface(`corenet_dontaudit_sendrecv_rwho_server_packets',`
35293 ## </summary>
35294 ## </param>
35295 #
35296 -interface(`corenet_relabelto_rwho_server_packets',`
35297 +interface(`corenet_relabelto_servistaitsm_server_packets',`
35298 gen_require(`
35299 - type rwho_server_packet_t;
35300 + type servistaitsm_server_packet_t;
35301 ')
35302
35303 - allow $1 rwho_server_packet_t:packet relabelto;
35304 + allow $1 servistaitsm_server_packet_t:packet relabelto;
35305 ')
35306
35307
35308 @@ -76699,7 +79800,7 @@ interface(`corenet_relabelto_rwho_server_packets',`
35309
35310 ########################################
35311 ## <summary>
35312 -## Send and receive TCP traffic on the salt port.
35313 +## Send and receive TCP traffic on the sieve port.
35314 ## </summary>
35315 ## <param name="domain">
35316 ## <summary>
35317 @@ -76708,17 +79809,17 @@ interface(`corenet_relabelto_rwho_server_packets',`
35318 ## </param>
35319 ## <infoflow type="both" weight="10"/>
35320 #
35321 -interface(`corenet_tcp_sendrecv_salt_port',`
35322 +interface(`corenet_tcp_sendrecv_sieve_port',`
35323 gen_require(`
35324 - type salt_port_t;
35325 + type sieve_port_t;
35326 ')
35327
35328 - allow $1 salt_port_t:tcp_socket { send_msg recv_msg };
35329 + allow $1 sieve_port_t:tcp_socket { send_msg recv_msg };
35330 ')
35331
35332 ########################################
35333 ## <summary>
35334 -## Send UDP traffic on the salt port.
35335 +## Send UDP traffic on the sieve port.
35336 ## </summary>
35337 ## <param name="domain">
35338 ## <summary>
35339 @@ -76727,17 +79828,17 @@ interface(`corenet_tcp_sendrecv_salt_port',`
35340 ## </param>
35341 ## <infoflow type="write" weight="10"/>
35342 #
35343 -interface(`corenet_udp_send_salt_port',`
35344 +interface(`corenet_udp_send_sieve_port',`
35345 gen_require(`
35346 - type salt_port_t;
35347 + type sieve_port_t;
35348 ')
35349
35350 - allow $1 salt_port_t:udp_socket send_msg;
35351 + allow $1 sieve_port_t:udp_socket send_msg;
35352 ')
35353
35354 ########################################
35355 ## <summary>
35356 -## Do not audit attempts to send UDP traffic on the salt port.
35357 +## Do not audit attempts to send UDP traffic on the sieve port.
35358 ## </summary>
35359 ## <param name="domain">
35360 ## <summary>
35361 @@ -76746,17 +79847,17 @@ interface(`corenet_udp_send_salt_port',`
35362 ## </param>
35363 ## <infoflow type="none"/>
35364 #
35365 -interface(`corenet_dontaudit_udp_send_salt_port',`
35366 +interface(`corenet_dontaudit_udp_send_sieve_port',`
35367 gen_require(`
35368 - type salt_port_t;
35369 + type sieve_port_t;
35370 ')
35371
35372 - dontaudit $1 salt_port_t:udp_socket send_msg;
35373 + dontaudit $1 sieve_port_t:udp_socket send_msg;
35374 ')
35375
35376 ########################################
35377 ## <summary>
35378 -## Receive UDP traffic on the salt port.
35379 +## Receive UDP traffic on the sieve port.
35380 ## </summary>
35381 ## <param name="domain">
35382 ## <summary>
35383 @@ -76765,17 +79866,17 @@ interface(`corenet_dontaudit_udp_send_salt_port',`
35384 ## </param>
35385 ## <infoflow type="read" weight="10"/>
35386 #
35387 -interface(`corenet_udp_receive_salt_port',`
35388 +interface(`corenet_udp_receive_sieve_port',`
35389 gen_require(`
35390 - type salt_port_t;
35391 + type sieve_port_t;
35392 ')
35393
35394 - allow $1 salt_port_t:udp_socket recv_msg;
35395 + allow $1 sieve_port_t:udp_socket recv_msg;
35396 ')
35397
35398 ########################################
35399 ## <summary>
35400 -## Do not audit attempts to receive UDP traffic on the salt port.
35401 +## Do not audit attempts to receive UDP traffic on the sieve port.
35402 ## </summary>
35403 ## <param name="domain">
35404 ## <summary>
35405 @@ -76784,17 +79885,17 @@ interface(`corenet_udp_receive_salt_port',`
35406 ## </param>
35407 ## <infoflow type="none"/>
35408 #
35409 -interface(`corenet_dontaudit_udp_receive_salt_port',`
35410 +interface(`corenet_dontaudit_udp_receive_sieve_port',`
35411 gen_require(`
35412 - type salt_port_t;
35413 + type sieve_port_t;
35414 ')
35415
35416 - dontaudit $1 salt_port_t:udp_socket recv_msg;
35417 + dontaudit $1 sieve_port_t:udp_socket recv_msg;
35418 ')
35419
35420 ########################################
35421 ## <summary>
35422 -## Send and receive UDP traffic on the salt port.
35423 +## Send and receive UDP traffic on the sieve port.
35424 ## </summary>
35425 ## <param name="domain">
35426 ## <summary>
35427 @@ -76803,15 +79904,15 @@ interface(`corenet_dontaudit_udp_receive_salt_port',`
35428 ## </param>
35429 ## <infoflow type="both" weight="10"/>
35430 #
35431 -interface(`corenet_udp_sendrecv_salt_port',`
35432 - corenet_udp_send_salt_port($1)
35433 - corenet_udp_receive_salt_port($1)
35434 +interface(`corenet_udp_sendrecv_sieve_port',`
35435 + corenet_udp_send_sieve_port($1)
35436 + corenet_udp_receive_sieve_port($1)
35437 ')
35438
35439 ########################################
35440 ## <summary>
35441 ## Do not audit attempts to send and receive
35442 -## UDP traffic on the salt port.
35443 +## UDP traffic on the sieve port.
35444 ## </summary>
35445 ## <param name="domain">
35446 ## <summary>
35447 @@ -76820,14 +79921,14 @@ interface(`corenet_udp_sendrecv_salt_port',`
35448 ## </param>
35449 ## <infoflow type="none"/>
35450 #
35451 -interface(`corenet_dontaudit_udp_sendrecv_salt_port',`
35452 - corenet_dontaudit_udp_send_salt_port($1)
35453 - corenet_dontaudit_udp_receive_salt_port($1)
35454 +interface(`corenet_dontaudit_udp_sendrecv_sieve_port',`
35455 + corenet_dontaudit_udp_send_sieve_port($1)
35456 + corenet_dontaudit_udp_receive_sieve_port($1)
35457 ')
35458
35459 ########################################
35460 ## <summary>
35461 -## Bind TCP sockets to the salt port.
35462 +## Bind TCP sockets to the sieve port.
35463 ## </summary>
35464 ## <param name="domain">
35465 ## <summary>
35466 @@ -76836,18 +79937,18 @@ interface(`corenet_dontaudit_udp_sendrecv_salt_port',`
35467 ## </param>
35468 ## <infoflow type="none"/>
35469 #
35470 -interface(`corenet_tcp_bind_salt_port',`
35471 +interface(`corenet_tcp_bind_sieve_port',`
35472 gen_require(`
35473 - type salt_port_t;
35474 + type sieve_port_t;
35475 ')
35476
35477 - allow $1 salt_port_t:tcp_socket name_bind;
35478 + allow $1 sieve_port_t:tcp_socket name_bind;
35479
35480 ')
35481
35482 ########################################
35483 ## <summary>
35484 -## Bind UDP sockets to the salt port.
35485 +## Bind UDP sockets to the sieve port.
35486 ## </summary>
35487 ## <param name="domain">
35488 ## <summary>
35489 @@ -76856,18 +79957,18 @@ interface(`corenet_tcp_bind_salt_port',`
35490 ## </param>
35491 ## <infoflow type="none"/>
35492 #
35493 -interface(`corenet_udp_bind_salt_port',`
35494 +interface(`corenet_udp_bind_sieve_port',`
35495 gen_require(`
35496 - type salt_port_t;
35497 + type sieve_port_t;
35498 ')
35499
35500 - allow $1 salt_port_t:udp_socket name_bind;
35501 + allow $1 sieve_port_t:udp_socket name_bind;
35502
35503 ')
35504
35505 ########################################
35506 ## <summary>
35507 -## Make a TCP connection to the salt port.
35508 +## Make a TCP connection to the sieve port.
35509 ## </summary>
35510 ## <param name="domain">
35511 ## <summary>
35512 @@ -76875,18 +79976,18 @@ interface(`corenet_udp_bind_salt_port',`
35513 ## </summary>
35514 ## </param>
35515 #
35516 -interface(`corenet_tcp_connect_salt_port',`
35517 +interface(`corenet_tcp_connect_sieve_port',`
35518 gen_require(`
35519 - type salt_port_t;
35520 + type sieve_port_t;
35521 ')
35522
35523 - allow $1 salt_port_t:tcp_socket name_connect;
35524 + allow $1 sieve_port_t:tcp_socket name_connect;
35525 ')
35526
35527
35528 ########################################
35529 ## <summary>
35530 -## Send salt_client packets.
35531 +## Send sieve_client packets.
35532 ## </summary>
35533 ## <param name="domain">
35534 ## <summary>
35535 @@ -76895,17 +79996,17 @@ interface(`corenet_tcp_connect_salt_port',`
35536 ## </param>
35537 ## <infoflow type="write" weight="10"/>
35538 #
35539 -interface(`corenet_send_salt_client_packets',`
35540 +interface(`corenet_send_sieve_client_packets',`
35541 gen_require(`
35542 - type salt_client_packet_t;
35543 + type sieve_client_packet_t;
35544 ')
35545
35546 - allow $1 salt_client_packet_t:packet send;
35547 + allow $1 sieve_client_packet_t:packet send;
35548 ')
35549
35550 ########################################
35551 ## <summary>
35552 -## Do not audit attempts to send salt_client packets.
35553 +## Do not audit attempts to send sieve_client packets.
35554 ## </summary>
35555 ## <param name="domain">
35556 ## <summary>
35557 @@ -76914,17 +80015,17 @@ interface(`corenet_send_salt_client_packets',`
35558 ## </param>
35559 ## <infoflow type="none"/>
35560 #
35561 -interface(`corenet_dontaudit_send_salt_client_packets',`
35562 +interface(`corenet_dontaudit_send_sieve_client_packets',`
35563 gen_require(`
35564 - type salt_client_packet_t;
35565 + type sieve_client_packet_t;
35566 ')
35567
35568 - dontaudit $1 salt_client_packet_t:packet send;
35569 + dontaudit $1 sieve_client_packet_t:packet send;
35570 ')
35571
35572 ########################################
35573 ## <summary>
35574 -## Receive salt_client packets.
35575 +## Receive sieve_client packets.
35576 ## </summary>
35577 ## <param name="domain">
35578 ## <summary>
35579 @@ -76933,17 +80034,17 @@ interface(`corenet_dontaudit_send_salt_client_packets',`
35580 ## </param>
35581 ## <infoflow type="read" weight="10"/>
35582 #
35583 -interface(`corenet_receive_salt_client_packets',`
35584 +interface(`corenet_receive_sieve_client_packets',`
35585 gen_require(`
35586 - type salt_client_packet_t;
35587 + type sieve_client_packet_t;
35588 ')
35589
35590 - allow $1 salt_client_packet_t:packet recv;
35591 + allow $1 sieve_client_packet_t:packet recv;
35592 ')
35593
35594 ########################################
35595 ## <summary>
35596 -## Do not audit attempts to receive salt_client packets.
35597 +## Do not audit attempts to receive sieve_client packets.
35598 ## </summary>
35599 ## <param name="domain">
35600 ## <summary>
35601 @@ -76952,17 +80053,17 @@ interface(`corenet_receive_salt_client_packets',`
35602 ## </param>
35603 ## <infoflow type="none"/>
35604 #
35605 -interface(`corenet_dontaudit_receive_salt_client_packets',`
35606 +interface(`corenet_dontaudit_receive_sieve_client_packets',`
35607 gen_require(`
35608 - type salt_client_packet_t;
35609 + type sieve_client_packet_t;
35610 ')
35611
35612 - dontaudit $1 salt_client_packet_t:packet recv;
35613 + dontaudit $1 sieve_client_packet_t:packet recv;
35614 ')
35615
35616 ########################################
35617 ## <summary>
35618 -## Send and receive salt_client packets.
35619 +## Send and receive sieve_client packets.
35620 ## </summary>
35621 ## <param name="domain">
35622 ## <summary>
35623 @@ -76971,14 +80072,14 @@ interface(`corenet_dontaudit_receive_salt_client_packets',`
35624 ## </param>
35625 ## <infoflow type="both" weight="10"/>
35626 #
35627 -interface(`corenet_sendrecv_salt_client_packets',`
35628 - corenet_send_salt_client_packets($1)
35629 - corenet_receive_salt_client_packets($1)
35630 +interface(`corenet_sendrecv_sieve_client_packets',`
35631 + corenet_send_sieve_client_packets($1)
35632 + corenet_receive_sieve_client_packets($1)
35633 ')
35634
35635 ########################################
35636 ## <summary>
35637 -## Do not audit attempts to send and receive salt_client packets.
35638 +## Do not audit attempts to send and receive sieve_client packets.
35639 ## </summary>
35640 ## <param name="domain">
35641 ## <summary>
35642 @@ -76987,14 +80088,14 @@ interface(`corenet_sendrecv_salt_client_packets',`
35643 ## </param>
35644 ## <infoflow type="none"/>
35645 #
35646 -interface(`corenet_dontaudit_sendrecv_salt_client_packets',`
35647 - corenet_dontaudit_send_salt_client_packets($1)
35648 - corenet_dontaudit_receive_salt_client_packets($1)
35649 +interface(`corenet_dontaudit_sendrecv_sieve_client_packets',`
35650 + corenet_dontaudit_send_sieve_client_packets($1)
35651 + corenet_dontaudit_receive_sieve_client_packets($1)
35652 ')
35653
35654 ########################################
35655 ## <summary>
35656 -## Relabel packets to salt_client the packet type.
35657 +## Relabel packets to sieve_client the packet type.
35658 ## </summary>
35659 ## <param name="domain">
35660 ## <summary>
35661 @@ -77002,18 +80103,18 @@ interface(`corenet_dontaudit_sendrecv_salt_client_packets',`
35662 ## </summary>
35663 ## </param>
35664 #
35665 -interface(`corenet_relabelto_salt_client_packets',`
35666 +interface(`corenet_relabelto_sieve_client_packets',`
35667 gen_require(`
35668 - type salt_client_packet_t;
35669 + type sieve_client_packet_t;
35670 ')
35671
35672 - allow $1 salt_client_packet_t:packet relabelto;
35673 + allow $1 sieve_client_packet_t:packet relabelto;
35674 ')
35675
35676
35677 ########################################
35678 ## <summary>
35679 -## Send salt_server packets.
35680 +## Send sieve_server packets.
35681 ## </summary>
35682 ## <param name="domain">
35683 ## <summary>
35684 @@ -77022,17 +80123,17 @@ interface(`corenet_relabelto_salt_client_packets',`
35685 ## </param>
35686 ## <infoflow type="write" weight="10"/>
35687 #
35688 -interface(`corenet_send_salt_server_packets',`
35689 +interface(`corenet_send_sieve_server_packets',`
35690 gen_require(`
35691 - type salt_server_packet_t;
35692 + type sieve_server_packet_t;
35693 ')
35694
35695 - allow $1 salt_server_packet_t:packet send;
35696 + allow $1 sieve_server_packet_t:packet send;
35697 ')
35698
35699 ########################################
35700 ## <summary>
35701 -## Do not audit attempts to send salt_server packets.
35702 +## Do not audit attempts to send sieve_server packets.
35703 ## </summary>
35704 ## <param name="domain">
35705 ## <summary>
35706 @@ -77041,17 +80142,17 @@ interface(`corenet_send_salt_server_packets',`
35707 ## </param>
35708 ## <infoflow type="none"/>
35709 #
35710 -interface(`corenet_dontaudit_send_salt_server_packets',`
35711 +interface(`corenet_dontaudit_send_sieve_server_packets',`
35712 gen_require(`
35713 - type salt_server_packet_t;
35714 + type sieve_server_packet_t;
35715 ')
35716
35717 - dontaudit $1 salt_server_packet_t:packet send;
35718 + dontaudit $1 sieve_server_packet_t:packet send;
35719 ')
35720
35721 ########################################
35722 ## <summary>
35723 -## Receive salt_server packets.
35724 +## Receive sieve_server packets.
35725 ## </summary>
35726 ## <param name="domain">
35727 ## <summary>
35728 @@ -77060,17 +80161,17 @@ interface(`corenet_dontaudit_send_salt_server_packets',`
35729 ## </param>
35730 ## <infoflow type="read" weight="10"/>
35731 #
35732 -interface(`corenet_receive_salt_server_packets',`
35733 +interface(`corenet_receive_sieve_server_packets',`
35734 gen_require(`
35735 - type salt_server_packet_t;
35736 + type sieve_server_packet_t;
35737 ')
35738
35739 - allow $1 salt_server_packet_t:packet recv;
35740 + allow $1 sieve_server_packet_t:packet recv;
35741 ')
35742
35743 ########################################
35744 ## <summary>
35745 -## Do not audit attempts to receive salt_server packets.
35746 +## Do not audit attempts to receive sieve_server packets.
35747 ## </summary>
35748 ## <param name="domain">
35749 ## <summary>
35750 @@ -77079,17 +80180,17 @@ interface(`corenet_receive_salt_server_packets',`
35751 ## </param>
35752 ## <infoflow type="none"/>
35753 #
35754 -interface(`corenet_dontaudit_receive_salt_server_packets',`
35755 +interface(`corenet_dontaudit_receive_sieve_server_packets',`
35756 gen_require(`
35757 - type salt_server_packet_t;
35758 + type sieve_server_packet_t;
35759 ')
35760
35761 - dontaudit $1 salt_server_packet_t:packet recv;
35762 + dontaudit $1 sieve_server_packet_t:packet recv;
35763 ')
35764
35765 ########################################
35766 ## <summary>
35767 -## Send and receive salt_server packets.
35768 +## Send and receive sieve_server packets.
35769 ## </summary>
35770 ## <param name="domain">
35771 ## <summary>
35772 @@ -77098,14 +80199,14 @@ interface(`corenet_dontaudit_receive_salt_server_packets',`
35773 ## </param>
35774 ## <infoflow type="both" weight="10"/>
35775 #
35776 -interface(`corenet_sendrecv_salt_server_packets',`
35777 - corenet_send_salt_server_packets($1)
35778 - corenet_receive_salt_server_packets($1)
35779 +interface(`corenet_sendrecv_sieve_server_packets',`
35780 + corenet_send_sieve_server_packets($1)
35781 + corenet_receive_sieve_server_packets($1)
35782 ')
35783
35784 ########################################
35785 ## <summary>
35786 -## Do not audit attempts to send and receive salt_server packets.
35787 +## Do not audit attempts to send and receive sieve_server packets.
35788 ## </summary>
35789 ## <param name="domain">
35790 ## <summary>
35791 @@ -77114,14 +80215,14 @@ interface(`corenet_sendrecv_salt_server_packets',`
35792 ## </param>
35793 ## <infoflow type="none"/>
35794 #
35795 -interface(`corenet_dontaudit_sendrecv_salt_server_packets',`
35796 - corenet_dontaudit_send_salt_server_packets($1)
35797 - corenet_dontaudit_receive_salt_server_packets($1)
35798 +interface(`corenet_dontaudit_sendrecv_sieve_server_packets',`
35799 + corenet_dontaudit_send_sieve_server_packets($1)
35800 + corenet_dontaudit_receive_sieve_server_packets($1)
35801 ')
35802
35803 ########################################
35804 ## <summary>
35805 -## Relabel packets to salt_server the packet type.
35806 +## Relabel packets to sieve_server the packet type.
35807 ## </summary>
35808 ## <param name="domain">
35809 ## <summary>
35810 @@ -77129,12 +80230,12 @@ interface(`corenet_dontaudit_sendrecv_salt_server_packets',`
35811 ## </summary>
35812 ## </param>
35813 #
35814 -interface(`corenet_relabelto_salt_server_packets',`
35815 +interface(`corenet_relabelto_sieve_server_packets',`
35816 gen_require(`
35817 - type salt_server_packet_t;
35818 + type sieve_server_packet_t;
35819 ')
35820
35821 - allow $1 salt_server_packet_t:packet relabelto;
35822 + allow $1 sieve_server_packet_t:packet relabelto;
35823 ')
35824
35825
35826 @@ -77142,7 +80243,7 @@ interface(`corenet_relabelto_salt_server_packets',`
35827
35828 ########################################
35829 ## <summary>
35830 -## Send and receive TCP traffic on the sap port.
35831 +## Send and receive TCP traffic on the sip port.
35832 ## </summary>
35833 ## <param name="domain">
35834 ## <summary>
35835 @@ -77151,17 +80252,17 @@ interface(`corenet_relabelto_salt_server_packets',`
35836 ## </param>
35837 ## <infoflow type="both" weight="10"/>
35838 #
35839 -interface(`corenet_tcp_sendrecv_sap_port',`
35840 +interface(`corenet_tcp_sendrecv_sip_port',`
35841 gen_require(`
35842 - type sap_port_t;
35843 + type sip_port_t;
35844 ')
35845
35846 - allow $1 sap_port_t:tcp_socket { send_msg recv_msg };
35847 + allow $1 sip_port_t:tcp_socket { send_msg recv_msg };
35848 ')
35849
35850 ########################################
35851 ## <summary>
35852 -## Send UDP traffic on the sap port.
35853 +## Send UDP traffic on the sip port.
35854 ## </summary>
35855 ## <param name="domain">
35856 ## <summary>
35857 @@ -77170,17 +80271,17 @@ interface(`corenet_tcp_sendrecv_sap_port',`
35858 ## </param>
35859 ## <infoflow type="write" weight="10"/>
35860 #
35861 -interface(`corenet_udp_send_sap_port',`
35862 +interface(`corenet_udp_send_sip_port',`
35863 gen_require(`
35864 - type sap_port_t;
35865 + type sip_port_t;
35866 ')
35867
35868 - allow $1 sap_port_t:udp_socket send_msg;
35869 + allow $1 sip_port_t:udp_socket send_msg;
35870 ')
35871
35872 ########################################
35873 ## <summary>
35874 -## Do not audit attempts to send UDP traffic on the sap port.
35875 +## Do not audit attempts to send UDP traffic on the sip port.
35876 ## </summary>
35877 ## <param name="domain">
35878 ## <summary>
35879 @@ -77189,17 +80290,17 @@ interface(`corenet_udp_send_sap_port',`
35880 ## </param>
35881 ## <infoflow type="none"/>
35882 #
35883 -interface(`corenet_dontaudit_udp_send_sap_port',`
35884 +interface(`corenet_dontaudit_udp_send_sip_port',`
35885 gen_require(`
35886 - type sap_port_t;
35887 + type sip_port_t;
35888 ')
35889
35890 - dontaudit $1 sap_port_t:udp_socket send_msg;
35891 + dontaudit $1 sip_port_t:udp_socket send_msg;
35892 ')
35893
35894 ########################################
35895 ## <summary>
35896 -## Receive UDP traffic on the sap port.
35897 +## Receive UDP traffic on the sip port.
35898 ## </summary>
35899 ## <param name="domain">
35900 ## <summary>
35901 @@ -77208,17 +80309,17 @@ interface(`corenet_dontaudit_udp_send_sap_port',`
35902 ## </param>
35903 ## <infoflow type="read" weight="10"/>
35904 #
35905 -interface(`corenet_udp_receive_sap_port',`
35906 +interface(`corenet_udp_receive_sip_port',`
35907 gen_require(`
35908 - type sap_port_t;
35909 + type sip_port_t;
35910 ')
35911
35912 - allow $1 sap_port_t:udp_socket recv_msg;
35913 + allow $1 sip_port_t:udp_socket recv_msg;
35914 ')
35915
35916 ########################################
35917 ## <summary>
35918 -## Do not audit attempts to receive UDP traffic on the sap port.
35919 +## Do not audit attempts to receive UDP traffic on the sip port.
35920 ## </summary>
35921 ## <param name="domain">
35922 ## <summary>
35923 @@ -77227,17 +80328,17 @@ interface(`corenet_udp_receive_sap_port',`
35924 ## </param>
35925 ## <infoflow type="none"/>
35926 #
35927 -interface(`corenet_dontaudit_udp_receive_sap_port',`
35928 +interface(`corenet_dontaudit_udp_receive_sip_port',`
35929 gen_require(`
35930 - type sap_port_t;
35931 + type sip_port_t;
35932 ')
35933
35934 - dontaudit $1 sap_port_t:udp_socket recv_msg;
35935 + dontaudit $1 sip_port_t:udp_socket recv_msg;
35936 ')
35937
35938 ########################################
35939 ## <summary>
35940 -## Send and receive UDP traffic on the sap port.
35941 +## Send and receive UDP traffic on the sip port.
35942 ## </summary>
35943 ## <param name="domain">
35944 ## <summary>
35945 @@ -77246,15 +80347,15 @@ interface(`corenet_dontaudit_udp_receive_sap_port',`
35946 ## </param>
35947 ## <infoflow type="both" weight="10"/>
35948 #
35949 -interface(`corenet_udp_sendrecv_sap_port',`
35950 - corenet_udp_send_sap_port($1)
35951 - corenet_udp_receive_sap_port($1)
35952 +interface(`corenet_udp_sendrecv_sip_port',`
35953 + corenet_udp_send_sip_port($1)
35954 + corenet_udp_receive_sip_port($1)
35955 ')
35956
35957 ########################################
35958 ## <summary>
35959 ## Do not audit attempts to send and receive
35960 -## UDP traffic on the sap port.
35961 +## UDP traffic on the sip port.
35962 ## </summary>
35963 ## <param name="domain">
35964 ## <summary>
35965 @@ -77263,14 +80364,14 @@ interface(`corenet_udp_sendrecv_sap_port',`
35966 ## </param>
35967 ## <infoflow type="none"/>
35968 #
35969 -interface(`corenet_dontaudit_udp_sendrecv_sap_port',`
35970 - corenet_dontaudit_udp_send_sap_port($1)
35971 - corenet_dontaudit_udp_receive_sap_port($1)
35972 +interface(`corenet_dontaudit_udp_sendrecv_sip_port',`
35973 + corenet_dontaudit_udp_send_sip_port($1)
35974 + corenet_dontaudit_udp_receive_sip_port($1)
35975 ')
35976
35977 ########################################
35978 ## <summary>
35979 -## Bind TCP sockets to the sap port.
35980 +## Bind TCP sockets to the sip port.
35981 ## </summary>
35982 ## <param name="domain">
35983 ## <summary>
35984 @@ -77279,18 +80380,18 @@ interface(`corenet_dontaudit_udp_sendrecv_sap_port',`
35985 ## </param>
35986 ## <infoflow type="none"/>
35987 #
35988 -interface(`corenet_tcp_bind_sap_port',`
35989 +interface(`corenet_tcp_bind_sip_port',`
35990 gen_require(`
35991 - type sap_port_t;
35992 + type sip_port_t;
35993 ')
35994
35995 - allow $1 sap_port_t:tcp_socket name_bind;
35996 + allow $1 sip_port_t:tcp_socket name_bind;
35997
35998 ')
35999
36000 ########################################
36001 ## <summary>
36002 -## Bind UDP sockets to the sap port.
36003 +## Bind UDP sockets to the sip port.
36004 ## </summary>
36005 ## <param name="domain">
36006 ## <summary>
36007 @@ -77299,18 +80400,18 @@ interface(`corenet_tcp_bind_sap_port',`
36008 ## </param>
36009 ## <infoflow type="none"/>
36010 #
36011 -interface(`corenet_udp_bind_sap_port',`
36012 +interface(`corenet_udp_bind_sip_port',`
36013 gen_require(`
36014 - type sap_port_t;
36015 + type sip_port_t;
36016 ')
36017
36018 - allow $1 sap_port_t:udp_socket name_bind;
36019 + allow $1 sip_port_t:udp_socket name_bind;
36020
36021 ')
36022
36023 ########################################
36024 ## <summary>
36025 -## Make a TCP connection to the sap port.
36026 +## Make a TCP connection to the sip port.
36027 ## </summary>
36028 ## <param name="domain">
36029 ## <summary>
36030 @@ -77318,18 +80419,18 @@ interface(`corenet_udp_bind_sap_port',`
36031 ## </summary>
36032 ## </param>
36033 #
36034 -interface(`corenet_tcp_connect_sap_port',`
36035 +interface(`corenet_tcp_connect_sip_port',`
36036 gen_require(`
36037 - type sap_port_t;
36038 + type sip_port_t;
36039 ')
36040
36041 - allow $1 sap_port_t:tcp_socket name_connect;
36042 + allow $1 sip_port_t:tcp_socket name_connect;
36043 ')
36044
36045
36046 ########################################
36047 ## <summary>
36048 -## Send sap_client packets.
36049 +## Send sip_client packets.
36050 ## </summary>
36051 ## <param name="domain">
36052 ## <summary>
36053 @@ -77338,17 +80439,17 @@ interface(`corenet_tcp_connect_sap_port',`
36054 ## </param>
36055 ## <infoflow type="write" weight="10"/>
36056 #
36057 -interface(`corenet_send_sap_client_packets',`
36058 +interface(`corenet_send_sip_client_packets',`
36059 gen_require(`
36060 - type sap_client_packet_t;
36061 + type sip_client_packet_t;
36062 ')
36063
36064 - allow $1 sap_client_packet_t:packet send;
36065 + allow $1 sip_client_packet_t:packet send;
36066 ')
36067
36068 ########################################
36069 ## <summary>
36070 -## Do not audit attempts to send sap_client packets.
36071 +## Do not audit attempts to send sip_client packets.
36072 ## </summary>
36073 ## <param name="domain">
36074 ## <summary>
36075 @@ -77357,17 +80458,17 @@ interface(`corenet_send_sap_client_packets',`
36076 ## </param>
36077 ## <infoflow type="none"/>
36078 #
36079 -interface(`corenet_dontaudit_send_sap_client_packets',`
36080 +interface(`corenet_dontaudit_send_sip_client_packets',`
36081 gen_require(`
36082 - type sap_client_packet_t;
36083 + type sip_client_packet_t;
36084 ')
36085
36086 - dontaudit $1 sap_client_packet_t:packet send;
36087 + dontaudit $1 sip_client_packet_t:packet send;
36088 ')
36089
36090 ########################################
36091 ## <summary>
36092 -## Receive sap_client packets.
36093 +## Receive sip_client packets.
36094 ## </summary>
36095 ## <param name="domain">
36096 ## <summary>
36097 @@ -77376,17 +80477,17 @@ interface(`corenet_dontaudit_send_sap_client_packets',`
36098 ## </param>
36099 ## <infoflow type="read" weight="10"/>
36100 #
36101 -interface(`corenet_receive_sap_client_packets',`
36102 +interface(`corenet_receive_sip_client_packets',`
36103 gen_require(`
36104 - type sap_client_packet_t;
36105 + type sip_client_packet_t;
36106 ')
36107
36108 - allow $1 sap_client_packet_t:packet recv;
36109 + allow $1 sip_client_packet_t:packet recv;
36110 ')
36111
36112 ########################################
36113 ## <summary>
36114 -## Do not audit attempts to receive sap_client packets.
36115 +## Do not audit attempts to receive sip_client packets.
36116 ## </summary>
36117 ## <param name="domain">
36118 ## <summary>
36119 @@ -77395,17 +80496,17 @@ interface(`corenet_receive_sap_client_packets',`
36120 ## </param>
36121 ## <infoflow type="none"/>
36122 #
36123 -interface(`corenet_dontaudit_receive_sap_client_packets',`
36124 +interface(`corenet_dontaudit_receive_sip_client_packets',`
36125 gen_require(`
36126 - type sap_client_packet_t;
36127 + type sip_client_packet_t;
36128 ')
36129
36130 - dontaudit $1 sap_client_packet_t:packet recv;
36131 + dontaudit $1 sip_client_packet_t:packet recv;
36132 ')
36133
36134 ########################################
36135 ## <summary>
36136 -## Send and receive sap_client packets.
36137 +## Send and receive sip_client packets.
36138 ## </summary>
36139 ## <param name="domain">
36140 ## <summary>
36141 @@ -77414,14 +80515,14 @@ interface(`corenet_dontaudit_receive_sap_client_packets',`
36142 ## </param>
36143 ## <infoflow type="both" weight="10"/>
36144 #
36145 -interface(`corenet_sendrecv_sap_client_packets',`
36146 - corenet_send_sap_client_packets($1)
36147 - corenet_receive_sap_client_packets($1)
36148 +interface(`corenet_sendrecv_sip_client_packets',`
36149 + corenet_send_sip_client_packets($1)
36150 + corenet_receive_sip_client_packets($1)
36151 ')
36152
36153 ########################################
36154 ## <summary>
36155 -## Do not audit attempts to send and receive sap_client packets.
36156 +## Do not audit attempts to send and receive sip_client packets.
36157 ## </summary>
36158 ## <param name="domain">
36159 ## <summary>
36160 @@ -77430,14 +80531,14 @@ interface(`corenet_sendrecv_sap_client_packets',`
36161 ## </param>
36162 ## <infoflow type="none"/>
36163 #
36164 -interface(`corenet_dontaudit_sendrecv_sap_client_packets',`
36165 - corenet_dontaudit_send_sap_client_packets($1)
36166 - corenet_dontaudit_receive_sap_client_packets($1)
36167 +interface(`corenet_dontaudit_sendrecv_sip_client_packets',`
36168 + corenet_dontaudit_send_sip_client_packets($1)
36169 + corenet_dontaudit_receive_sip_client_packets($1)
36170 ')
36171
36172 ########################################
36173 ## <summary>
36174 -## Relabel packets to sap_client the packet type.
36175 +## Relabel packets to sip_client the packet type.
36176 ## </summary>
36177 ## <param name="domain">
36178 ## <summary>
36179 @@ -77445,18 +80546,18 @@ interface(`corenet_dontaudit_sendrecv_sap_client_packets',`
36180 ## </summary>
36181 ## </param>
36182 #
36183 -interface(`corenet_relabelto_sap_client_packets',`
36184 +interface(`corenet_relabelto_sip_client_packets',`
36185 gen_require(`
36186 - type sap_client_packet_t;
36187 + type sip_client_packet_t;
36188 ')
36189
36190 - allow $1 sap_client_packet_t:packet relabelto;
36191 + allow $1 sip_client_packet_t:packet relabelto;
36192 ')
36193
36194
36195 ########################################
36196 ## <summary>
36197 -## Send sap_server packets.
36198 +## Send sip_server packets.
36199 ## </summary>
36200 ## <param name="domain">
36201 ## <summary>
36202 @@ -77465,17 +80566,17 @@ interface(`corenet_relabelto_sap_client_packets',`
36203 ## </param>
36204 ## <infoflow type="write" weight="10"/>
36205 #
36206 -interface(`corenet_send_sap_server_packets',`
36207 +interface(`corenet_send_sip_server_packets',`
36208 gen_require(`
36209 - type sap_server_packet_t;
36210 + type sip_server_packet_t;
36211 ')
36212
36213 - allow $1 sap_server_packet_t:packet send;
36214 + allow $1 sip_server_packet_t:packet send;
36215 ')
36216
36217 ########################################
36218 ## <summary>
36219 -## Do not audit attempts to send sap_server packets.
36220 +## Do not audit attempts to send sip_server packets.
36221 ## </summary>
36222 ## <param name="domain">
36223 ## <summary>
36224 @@ -77484,17 +80585,17 @@ interface(`corenet_send_sap_server_packets',`
36225 ## </param>
36226 ## <infoflow type="none"/>
36227 #
36228 -interface(`corenet_dontaudit_send_sap_server_packets',`
36229 +interface(`corenet_dontaudit_send_sip_server_packets',`
36230 gen_require(`
36231 - type sap_server_packet_t;
36232 + type sip_server_packet_t;
36233 ')
36234
36235 - dontaudit $1 sap_server_packet_t:packet send;
36236 + dontaudit $1 sip_server_packet_t:packet send;
36237 ')
36238
36239 ########################################
36240 ## <summary>
36241 -## Receive sap_server packets.
36242 +## Receive sip_server packets.
36243 ## </summary>
36244 ## <param name="domain">
36245 ## <summary>
36246 @@ -77503,17 +80604,17 @@ interface(`corenet_dontaudit_send_sap_server_packets',`
36247 ## </param>
36248 ## <infoflow type="read" weight="10"/>
36249 #
36250 -interface(`corenet_receive_sap_server_packets',`
36251 +interface(`corenet_receive_sip_server_packets',`
36252 gen_require(`
36253 - type sap_server_packet_t;
36254 + type sip_server_packet_t;
36255 ')
36256
36257 - allow $1 sap_server_packet_t:packet recv;
36258 + allow $1 sip_server_packet_t:packet recv;
36259 ')
36260
36261 ########################################
36262 ## <summary>
36263 -## Do not audit attempts to receive sap_server packets.
36264 +## Do not audit attempts to receive sip_server packets.
36265 ## </summary>
36266 ## <param name="domain">
36267 ## <summary>
36268 @@ -77522,17 +80623,17 @@ interface(`corenet_receive_sap_server_packets',`
36269 ## </param>
36270 ## <infoflow type="none"/>
36271 #
36272 -interface(`corenet_dontaudit_receive_sap_server_packets',`
36273 +interface(`corenet_dontaudit_receive_sip_server_packets',`
36274 gen_require(`
36275 - type sap_server_packet_t;
36276 + type sip_server_packet_t;
36277 ')
36278
36279 - dontaudit $1 sap_server_packet_t:packet recv;
36280 + dontaudit $1 sip_server_packet_t:packet recv;
36281 ')
36282
36283 ########################################
36284 ## <summary>
36285 -## Send and receive sap_server packets.
36286 +## Send and receive sip_server packets.
36287 ## </summary>
36288 ## <param name="domain">
36289 ## <summary>
36290 @@ -77541,14 +80642,14 @@ interface(`corenet_dontaudit_receive_sap_server_packets',`
36291 ## </param>
36292 ## <infoflow type="both" weight="10"/>
36293 #
36294 -interface(`corenet_sendrecv_sap_server_packets',`
36295 - corenet_send_sap_server_packets($1)
36296 - corenet_receive_sap_server_packets($1)
36297 +interface(`corenet_sendrecv_sip_server_packets',`
36298 + corenet_send_sip_server_packets($1)
36299 + corenet_receive_sip_server_packets($1)
36300 ')
36301
36302 ########################################
36303 ## <summary>
36304 -## Do not audit attempts to send and receive sap_server packets.
36305 +## Do not audit attempts to send and receive sip_server packets.
36306 ## </summary>
36307 ## <param name="domain">
36308 ## <summary>
36309 @@ -77557,14 +80658,14 @@ interface(`corenet_sendrecv_sap_server_packets',`
36310 ## </param>
36311 ## <infoflow type="none"/>
36312 #
36313 -interface(`corenet_dontaudit_sendrecv_sap_server_packets',`
36314 - corenet_dontaudit_send_sap_server_packets($1)
36315 - corenet_dontaudit_receive_sap_server_packets($1)
36316 +interface(`corenet_dontaudit_sendrecv_sip_server_packets',`
36317 + corenet_dontaudit_send_sip_server_packets($1)
36318 + corenet_dontaudit_receive_sip_server_packets($1)
36319 ')
36320
36321 ########################################
36322 ## <summary>
36323 -## Relabel packets to sap_server the packet type.
36324 +## Relabel packets to sip_server the packet type.
36325 ## </summary>
36326 ## <param name="domain">
36327 ## <summary>
36328 @@ -77572,12 +80673,12 @@ interface(`corenet_dontaudit_sendrecv_sap_server_packets',`
36329 ## </summary>
36330 ## </param>
36331 #
36332 -interface(`corenet_relabelto_sap_server_packets',`
36333 +interface(`corenet_relabelto_sip_server_packets',`
36334 gen_require(`
36335 - type sap_server_packet_t;
36336 + type sip_server_packet_t;
36337 ')
36338
36339 - allow $1 sap_server_packet_t:packet relabelto;
36340 + allow $1 sip_server_packet_t:packet relabelto;
36341 ')
36342
36343
36344 @@ -77585,7 +80686,7 @@ interface(`corenet_relabelto_sap_server_packets',`
36345
36346 ########################################
36347 ## <summary>
36348 -## Send and receive TCP traffic on the servistaitsm port.
36349 +## Send and receive TCP traffic on the sixxsconfig port.
36350 ## </summary>
36351 ## <param name="domain">
36352 ## <summary>
36353 @@ -77594,17 +80695,17 @@ interface(`corenet_relabelto_sap_server_packets',`
36354 ## </param>
36355 ## <infoflow type="both" weight="10"/>
36356 #
36357 -interface(`corenet_tcp_sendrecv_servistaitsm_port',`
36358 +interface(`corenet_tcp_sendrecv_sixxsconfig_port',`
36359 gen_require(`
36360 - type servistaitsm_port_t;
36361 + type sixxsconfig_port_t;
36362 ')
36363
36364 - allow $1 servistaitsm_port_t:tcp_socket { send_msg recv_msg };
36365 + allow $1 sixxsconfig_port_t:tcp_socket { send_msg recv_msg };
36366 ')
36367
36368 ########################################
36369 ## <summary>
36370 -## Send UDP traffic on the servistaitsm port.
36371 +## Send UDP traffic on the sixxsconfig port.
36372 ## </summary>
36373 ## <param name="domain">
36374 ## <summary>
36375 @@ -77613,17 +80714,17 @@ interface(`corenet_tcp_sendrecv_servistaitsm_port',`
36376 ## </param>
36377 ## <infoflow type="write" weight="10"/>
36378 #
36379 -interface(`corenet_udp_send_servistaitsm_port',`
36380 +interface(`corenet_udp_send_sixxsconfig_port',`
36381 gen_require(`
36382 - type servistaitsm_port_t;
36383 + type sixxsconfig_port_t;
36384 ')
36385
36386 - allow $1 servistaitsm_port_t:udp_socket send_msg;
36387 + allow $1 sixxsconfig_port_t:udp_socket send_msg;
36388 ')
36389
36390 ########################################
36391 ## <summary>
36392 -## Do not audit attempts to send UDP traffic on the servistaitsm port.
36393 +## Do not audit attempts to send UDP traffic on the sixxsconfig port.
36394 ## </summary>
36395 ## <param name="domain">
36396 ## <summary>
36397 @@ -77632,17 +80733,17 @@ interface(`corenet_udp_send_servistaitsm_port',`
36398 ## </param>
36399 ## <infoflow type="none"/>
36400 #
36401 -interface(`corenet_dontaudit_udp_send_servistaitsm_port',`
36402 +interface(`corenet_dontaudit_udp_send_sixxsconfig_port',`
36403 gen_require(`
36404 - type servistaitsm_port_t;
36405 + type sixxsconfig_port_t;
36406 ')
36407
36408 - dontaudit $1 servistaitsm_port_t:udp_socket send_msg;
36409 + dontaudit $1 sixxsconfig_port_t:udp_socket send_msg;
36410 ')
36411
36412 ########################################
36413 ## <summary>
36414 -## Receive UDP traffic on the servistaitsm port.
36415 +## Receive UDP traffic on the sixxsconfig port.
36416 ## </summary>
36417 ## <param name="domain">
36418 ## <summary>
36419 @@ -77651,17 +80752,17 @@ interface(`corenet_dontaudit_udp_send_servistaitsm_port',`
36420 ## </param>
36421 ## <infoflow type="read" weight="10"/>
36422 #
36423 -interface(`corenet_udp_receive_servistaitsm_port',`
36424 +interface(`corenet_udp_receive_sixxsconfig_port',`
36425 gen_require(`
36426 - type servistaitsm_port_t;
36427 + type sixxsconfig_port_t;
36428 ')
36429
36430 - allow $1 servistaitsm_port_t:udp_socket recv_msg;
36431 + allow $1 sixxsconfig_port_t:udp_socket recv_msg;
36432 ')
36433
36434 ########################################
36435 ## <summary>
36436 -## Do not audit attempts to receive UDP traffic on the servistaitsm port.
36437 +## Do not audit attempts to receive UDP traffic on the sixxsconfig port.
36438 ## </summary>
36439 ## <param name="domain">
36440 ## <summary>
36441 @@ -77670,17 +80771,17 @@ interface(`corenet_udp_receive_servistaitsm_port',`
36442 ## </param>
36443 ## <infoflow type="none"/>
36444 #
36445 -interface(`corenet_dontaudit_udp_receive_servistaitsm_port',`
36446 +interface(`corenet_dontaudit_udp_receive_sixxsconfig_port',`
36447 gen_require(`
36448 - type servistaitsm_port_t;
36449 + type sixxsconfig_port_t;
36450 ')
36451
36452 - dontaudit $1 servistaitsm_port_t:udp_socket recv_msg;
36453 + dontaudit $1 sixxsconfig_port_t:udp_socket recv_msg;
36454 ')
36455
36456 ########################################
36457 ## <summary>
36458 -## Send and receive UDP traffic on the servistaitsm port.
36459 +## Send and receive UDP traffic on the sixxsconfig port.
36460 ## </summary>
36461 ## <param name="domain">
36462 ## <summary>
36463 @@ -77689,15 +80790,15 @@ interface(`corenet_dontaudit_udp_receive_servistaitsm_port',`
36464 ## </param>
36465 ## <infoflow type="both" weight="10"/>
36466 #
36467 -interface(`corenet_udp_sendrecv_servistaitsm_port',`
36468 - corenet_udp_send_servistaitsm_port($1)
36469 - corenet_udp_receive_servistaitsm_port($1)
36470 +interface(`corenet_udp_sendrecv_sixxsconfig_port',`
36471 + corenet_udp_send_sixxsconfig_port($1)
36472 + corenet_udp_receive_sixxsconfig_port($1)
36473 ')
36474
36475 ########################################
36476 ## <summary>
36477 ## Do not audit attempts to send and receive
36478 -## UDP traffic on the servistaitsm port.
36479 +## UDP traffic on the sixxsconfig port.
36480 ## </summary>
36481 ## <param name="domain">
36482 ## <summary>
36483 @@ -77706,14 +80807,14 @@ interface(`corenet_udp_sendrecv_servistaitsm_port',`
36484 ## </param>
36485 ## <infoflow type="none"/>
36486 #
36487 -interface(`corenet_dontaudit_udp_sendrecv_servistaitsm_port',`
36488 - corenet_dontaudit_udp_send_servistaitsm_port($1)
36489 - corenet_dontaudit_udp_receive_servistaitsm_port($1)
36490 +interface(`corenet_dontaudit_udp_sendrecv_sixxsconfig_port',`
36491 + corenet_dontaudit_udp_send_sixxsconfig_port($1)
36492 + corenet_dontaudit_udp_receive_sixxsconfig_port($1)
36493 ')
36494
36495 ########################################
36496 ## <summary>
36497 -## Bind TCP sockets to the servistaitsm port.
36498 +## Bind TCP sockets to the sixxsconfig port.
36499 ## </summary>
36500 ## <param name="domain">
36501 ## <summary>
36502 @@ -77722,18 +80823,18 @@ interface(`corenet_dontaudit_udp_sendrecv_servistaitsm_port',`
36503 ## </param>
36504 ## <infoflow type="none"/>
36505 #
36506 -interface(`corenet_tcp_bind_servistaitsm_port',`
36507 +interface(`corenet_tcp_bind_sixxsconfig_port',`
36508 gen_require(`
36509 - type servistaitsm_port_t;
36510 + type sixxsconfig_port_t;
36511 ')
36512
36513 - allow $1 servistaitsm_port_t:tcp_socket name_bind;
36514 + allow $1 sixxsconfig_port_t:tcp_socket name_bind;
36515
36516 ')
36517
36518 ########################################
36519 ## <summary>
36520 -## Bind UDP sockets to the servistaitsm port.
36521 +## Bind UDP sockets to the sixxsconfig port.
36522 ## </summary>
36523 ## <param name="domain">
36524 ## <summary>
36525 @@ -77742,18 +80843,18 @@ interface(`corenet_tcp_bind_servistaitsm_port',`
36526 ## </param>
36527 ## <infoflow type="none"/>
36528 #
36529 -interface(`corenet_udp_bind_servistaitsm_port',`
36530 +interface(`corenet_udp_bind_sixxsconfig_port',`
36531 gen_require(`
36532 - type servistaitsm_port_t;
36533 + type sixxsconfig_port_t;
36534 ')
36535
36536 - allow $1 servistaitsm_port_t:udp_socket name_bind;
36537 + allow $1 sixxsconfig_port_t:udp_socket name_bind;
36538
36539 ')
36540
36541 ########################################
36542 ## <summary>
36543 -## Make a TCP connection to the servistaitsm port.
36544 +## Make a TCP connection to the sixxsconfig port.
36545 ## </summary>
36546 ## <param name="domain">
36547 ## <summary>
36548 @@ -77761,18 +80862,18 @@ interface(`corenet_udp_bind_servistaitsm_port',`
36549 ## </summary>
36550 ## </param>
36551 #
36552 -interface(`corenet_tcp_connect_servistaitsm_port',`
36553 +interface(`corenet_tcp_connect_sixxsconfig_port',`
36554 gen_require(`
36555 - type servistaitsm_port_t;
36556 + type sixxsconfig_port_t;
36557 ')
36558
36559 - allow $1 servistaitsm_port_t:tcp_socket name_connect;
36560 + allow $1 sixxsconfig_port_t:tcp_socket name_connect;
36561 ')
36562
36563
36564 ########################################
36565 ## <summary>
36566 -## Send servistaitsm_client packets.
36567 +## Send sixxsconfig_client packets.
36568 ## </summary>
36569 ## <param name="domain">
36570 ## <summary>
36571 @@ -77781,17 +80882,17 @@ interface(`corenet_tcp_connect_servistaitsm_port',`
36572 ## </param>
36573 ## <infoflow type="write" weight="10"/>
36574 #
36575 -interface(`corenet_send_servistaitsm_client_packets',`
36576 +interface(`corenet_send_sixxsconfig_client_packets',`
36577 gen_require(`
36578 - type servistaitsm_client_packet_t;
36579 + type sixxsconfig_client_packet_t;
36580 ')
36581
36582 - allow $1 servistaitsm_client_packet_t:packet send;
36583 + allow $1 sixxsconfig_client_packet_t:packet send;
36584 ')
36585
36586 ########################################
36587 ## <summary>
36588 -## Do not audit attempts to send servistaitsm_client packets.
36589 +## Do not audit attempts to send sixxsconfig_client packets.
36590 ## </summary>
36591 ## <param name="domain">
36592 ## <summary>
36593 @@ -77800,17 +80901,17 @@ interface(`corenet_send_servistaitsm_client_packets',`
36594 ## </param>
36595 ## <infoflow type="none"/>
36596 #
36597 -interface(`corenet_dontaudit_send_servistaitsm_client_packets',`
36598 +interface(`corenet_dontaudit_send_sixxsconfig_client_packets',`
36599 gen_require(`
36600 - type servistaitsm_client_packet_t;
36601 + type sixxsconfig_client_packet_t;
36602 ')
36603
36604 - dontaudit $1 servistaitsm_client_packet_t:packet send;
36605 + dontaudit $1 sixxsconfig_client_packet_t:packet send;
36606 ')
36607
36608 ########################################
36609 ## <summary>
36610 -## Receive servistaitsm_client packets.
36611 +## Receive sixxsconfig_client packets.
36612 ## </summary>
36613 ## <param name="domain">
36614 ## <summary>
36615 @@ -77819,17 +80920,17 @@ interface(`corenet_dontaudit_send_servistaitsm_client_packets',`
36616 ## </param>
36617 ## <infoflow type="read" weight="10"/>
36618 #
36619 -interface(`corenet_receive_servistaitsm_client_packets',`
36620 +interface(`corenet_receive_sixxsconfig_client_packets',`
36621 gen_require(`
36622 - type servistaitsm_client_packet_t;
36623 + type sixxsconfig_client_packet_t;
36624 ')
36625
36626 - allow $1 servistaitsm_client_packet_t:packet recv;
36627 + allow $1 sixxsconfig_client_packet_t:packet recv;
36628 ')
36629
36630 ########################################
36631 ## <summary>
36632 -## Do not audit attempts to receive servistaitsm_client packets.
36633 +## Do not audit attempts to receive sixxsconfig_client packets.
36634 ## </summary>
36635 ## <param name="domain">
36636 ## <summary>
36637 @@ -77838,17 +80939,17 @@ interface(`corenet_receive_servistaitsm_client_packets',`
36638 ## </param>
36639 ## <infoflow type="none"/>
36640 #
36641 -interface(`corenet_dontaudit_receive_servistaitsm_client_packets',`
36642 +interface(`corenet_dontaudit_receive_sixxsconfig_client_packets',`
36643 gen_require(`
36644 - type servistaitsm_client_packet_t;
36645 + type sixxsconfig_client_packet_t;
36646 ')
36647
36648 - dontaudit $1 servistaitsm_client_packet_t:packet recv;
36649 + dontaudit $1 sixxsconfig_client_packet_t:packet recv;
36650 ')
36651
36652 ########################################
36653 ## <summary>
36654 -## Send and receive servistaitsm_client packets.
36655 +## Send and receive sixxsconfig_client packets.
36656 ## </summary>
36657 ## <param name="domain">
36658 ## <summary>
36659 @@ -77857,14 +80958,14 @@ interface(`corenet_dontaudit_receive_servistaitsm_client_packets',`
36660 ## </param>
36661 ## <infoflow type="both" weight="10"/>
36662 #
36663 -interface(`corenet_sendrecv_servistaitsm_client_packets',`
36664 - corenet_send_servistaitsm_client_packets($1)
36665 - corenet_receive_servistaitsm_client_packets($1)
36666 +interface(`corenet_sendrecv_sixxsconfig_client_packets',`
36667 + corenet_send_sixxsconfig_client_packets($1)
36668 + corenet_receive_sixxsconfig_client_packets($1)
36669 ')
36670
36671 ########################################
36672 ## <summary>
36673 -## Do not audit attempts to send and receive servistaitsm_client packets.
36674 +## Do not audit attempts to send and receive sixxsconfig_client packets.
36675 ## </summary>
36676 ## <param name="domain">
36677 ## <summary>
36678 @@ -77873,14 +80974,14 @@ interface(`corenet_sendrecv_servistaitsm_client_packets',`
36679 ## </param>
36680 ## <infoflow type="none"/>
36681 #
36682 -interface(`corenet_dontaudit_sendrecv_servistaitsm_client_packets',`
36683 - corenet_dontaudit_send_servistaitsm_client_packets($1)
36684 - corenet_dontaudit_receive_servistaitsm_client_packets($1)
36685 +interface(`corenet_dontaudit_sendrecv_sixxsconfig_client_packets',`
36686 + corenet_dontaudit_send_sixxsconfig_client_packets($1)
36687 + corenet_dontaudit_receive_sixxsconfig_client_packets($1)
36688 ')
36689
36690 ########################################
36691 ## <summary>
36692 -## Relabel packets to servistaitsm_client the packet type.
36693 +## Relabel packets to sixxsconfig_client the packet type.
36694 ## </summary>
36695 ## <param name="domain">
36696 ## <summary>
36697 @@ -77888,18 +80989,18 @@ interface(`corenet_dontaudit_sendrecv_servistaitsm_client_packets',`
36698 ## </summary>
36699 ## </param>
36700 #
36701 -interface(`corenet_relabelto_servistaitsm_client_packets',`
36702 +interface(`corenet_relabelto_sixxsconfig_client_packets',`
36703 gen_require(`
36704 - type servistaitsm_client_packet_t;
36705 + type sixxsconfig_client_packet_t;
36706 ')
36707
36708 - allow $1 servistaitsm_client_packet_t:packet relabelto;
36709 + allow $1 sixxsconfig_client_packet_t:packet relabelto;
36710 ')
36711
36712
36713 ########################################
36714 ## <summary>
36715 -## Send servistaitsm_server packets.
36716 +## Send sixxsconfig_server packets.
36717 ## </summary>
36718 ## <param name="domain">
36719 ## <summary>
36720 @@ -77908,17 +81009,17 @@ interface(`corenet_relabelto_servistaitsm_client_packets',`
36721 ## </param>
36722 ## <infoflow type="write" weight="10"/>
36723 #
36724 -interface(`corenet_send_servistaitsm_server_packets',`
36725 +interface(`corenet_send_sixxsconfig_server_packets',`
36726 gen_require(`
36727 - type servistaitsm_server_packet_t;
36728 + type sixxsconfig_server_packet_t;
36729 ')
36730
36731 - allow $1 servistaitsm_server_packet_t:packet send;
36732 + allow $1 sixxsconfig_server_packet_t:packet send;
36733 ')
36734
36735 ########################################
36736 ## <summary>
36737 -## Do not audit attempts to send servistaitsm_server packets.
36738 +## Do not audit attempts to send sixxsconfig_server packets.
36739 ## </summary>
36740 ## <param name="domain">
36741 ## <summary>
36742 @@ -77927,17 +81028,17 @@ interface(`corenet_send_servistaitsm_server_packets',`
36743 ## </param>
36744 ## <infoflow type="none"/>
36745 #
36746 -interface(`corenet_dontaudit_send_servistaitsm_server_packets',`
36747 +interface(`corenet_dontaudit_send_sixxsconfig_server_packets',`
36748 gen_require(`
36749 - type servistaitsm_server_packet_t;
36750 + type sixxsconfig_server_packet_t;
36751 ')
36752
36753 - dontaudit $1 servistaitsm_server_packet_t:packet send;
36754 + dontaudit $1 sixxsconfig_server_packet_t:packet send;
36755 ')
36756
36757 ########################################
36758 ## <summary>
36759 -## Receive servistaitsm_server packets.
36760 +## Receive sixxsconfig_server packets.
36761 ## </summary>
36762 ## <param name="domain">
36763 ## <summary>
36764 @@ -77946,17 +81047,17 @@ interface(`corenet_dontaudit_send_servistaitsm_server_packets',`
36765 ## </param>
36766 ## <infoflow type="read" weight="10"/>
36767 #
36768 -interface(`corenet_receive_servistaitsm_server_packets',`
36769 +interface(`corenet_receive_sixxsconfig_server_packets',`
36770 gen_require(`
36771 - type servistaitsm_server_packet_t;
36772 + type sixxsconfig_server_packet_t;
36773 ')
36774
36775 - allow $1 servistaitsm_server_packet_t:packet recv;
36776 + allow $1 sixxsconfig_server_packet_t:packet recv;
36777 ')
36778
36779 ########################################
36780 ## <summary>
36781 -## Do not audit attempts to receive servistaitsm_server packets.
36782 +## Do not audit attempts to receive sixxsconfig_server packets.
36783 ## </summary>
36784 ## <param name="domain">
36785 ## <summary>
36786 @@ -77965,17 +81066,17 @@ interface(`corenet_receive_servistaitsm_server_packets',`
36787 ## </param>
36788 ## <infoflow type="none"/>
36789 #
36790 -interface(`corenet_dontaudit_receive_servistaitsm_server_packets',`
36791 +interface(`corenet_dontaudit_receive_sixxsconfig_server_packets',`
36792 gen_require(`
36793 - type servistaitsm_server_packet_t;
36794 + type sixxsconfig_server_packet_t;
36795 ')
36796
36797 - dontaudit $1 servistaitsm_server_packet_t:packet recv;
36798 + dontaudit $1 sixxsconfig_server_packet_t:packet recv;
36799 ')
36800
36801 ########################################
36802 ## <summary>
36803 -## Send and receive servistaitsm_server packets.
36804 +## Send and receive sixxsconfig_server packets.
36805 ## </summary>
36806 ## <param name="domain">
36807 ## <summary>
36808 @@ -77984,14 +81085,14 @@ interface(`corenet_dontaudit_receive_servistaitsm_server_packets',`
36809 ## </param>
36810 ## <infoflow type="both" weight="10"/>
36811 #
36812 -interface(`corenet_sendrecv_servistaitsm_server_packets',`
36813 - corenet_send_servistaitsm_server_packets($1)
36814 - corenet_receive_servistaitsm_server_packets($1)
36815 +interface(`corenet_sendrecv_sixxsconfig_server_packets',`
36816 + corenet_send_sixxsconfig_server_packets($1)
36817 + corenet_receive_sixxsconfig_server_packets($1)
36818 ')
36819
36820 ########################################
36821 ## <summary>
36822 -## Do not audit attempts to send and receive servistaitsm_server packets.
36823 +## Do not audit attempts to send and receive sixxsconfig_server packets.
36824 ## </summary>
36825 ## <param name="domain">
36826 ## <summary>
36827 @@ -78000,14 +81101,14 @@ interface(`corenet_sendrecv_servistaitsm_server_packets',`
36828 ## </param>
36829 ## <infoflow type="none"/>
36830 #
36831 -interface(`corenet_dontaudit_sendrecv_servistaitsm_server_packets',`
36832 - corenet_dontaudit_send_servistaitsm_server_packets($1)
36833 - corenet_dontaudit_receive_servistaitsm_server_packets($1)
36834 +interface(`corenet_dontaudit_sendrecv_sixxsconfig_server_packets',`
36835 + corenet_dontaudit_send_sixxsconfig_server_packets($1)
36836 + corenet_dontaudit_receive_sixxsconfig_server_packets($1)
36837 ')
36838
36839 ########################################
36840 ## <summary>
36841 -## Relabel packets to servistaitsm_server the packet type.
36842 +## Relabel packets to sixxsconfig_server the packet type.
36843 ## </summary>
36844 ## <param name="domain">
36845 ## <summary>
36846 @@ -78015,12 +81116,12 @@ interface(`corenet_dontaudit_sendrecv_servistaitsm_server_packets',`
36847 ## </summary>
36848 ## </param>
36849 #
36850 -interface(`corenet_relabelto_servistaitsm_server_packets',`
36851 +interface(`corenet_relabelto_sixxsconfig_server_packets',`
36852 gen_require(`
36853 - type servistaitsm_server_packet_t;
36854 + type sixxsconfig_server_packet_t;
36855 ')
36856
36857 - allow $1 servistaitsm_server_packet_t:packet relabelto;
36858 + allow $1 sixxsconfig_server_packet_t:packet relabelto;
36859 ')
36860
36861
36862 @@ -78028,7 +81129,7 @@ interface(`corenet_relabelto_servistaitsm_server_packets',`
36863
36864 ########################################
36865 ## <summary>
36866 -## Send and receive TCP traffic on the sieve port.
36867 +## Send and receive TCP traffic on the smbd port.
36868 ## </summary>
36869 ## <param name="domain">
36870 ## <summary>
36871 @@ -78037,17 +81138,17 @@ interface(`corenet_relabelto_servistaitsm_server_packets',`
36872 ## </param>
36873 ## <infoflow type="both" weight="10"/>
36874 #
36875 -interface(`corenet_tcp_sendrecv_sieve_port',`
36876 +interface(`corenet_tcp_sendrecv_smbd_port',`
36877 gen_require(`
36878 - type sieve_port_t;
36879 + type smbd_port_t;
36880 ')
36881
36882 - allow $1 sieve_port_t:tcp_socket { send_msg recv_msg };
36883 + allow $1 smbd_port_t:tcp_socket { send_msg recv_msg };
36884 ')
36885
36886 ########################################
36887 ## <summary>
36888 -## Send UDP traffic on the sieve port.
36889 +## Send UDP traffic on the smbd port.
36890 ## </summary>
36891 ## <param name="domain">
36892 ## <summary>
36893 @@ -78056,17 +81157,17 @@ interface(`corenet_tcp_sendrecv_sieve_port',`
36894 ## </param>
36895 ## <infoflow type="write" weight="10"/>
36896 #
36897 -interface(`corenet_udp_send_sieve_port',`
36898 +interface(`corenet_udp_send_smbd_port',`
36899 gen_require(`
36900 - type sieve_port_t;
36901 + type smbd_port_t;
36902 ')
36903
36904 - allow $1 sieve_port_t:udp_socket send_msg;
36905 + allow $1 smbd_port_t:udp_socket send_msg;
36906 ')
36907
36908 ########################################
36909 ## <summary>
36910 -## Do not audit attempts to send UDP traffic on the sieve port.
36911 +## Do not audit attempts to send UDP traffic on the smbd port.
36912 ## </summary>
36913 ## <param name="domain">
36914 ## <summary>
36915 @@ -78075,17 +81176,17 @@ interface(`corenet_udp_send_sieve_port',`
36916 ## </param>
36917 ## <infoflow type="none"/>
36918 #
36919 -interface(`corenet_dontaudit_udp_send_sieve_port',`
36920 +interface(`corenet_dontaudit_udp_send_smbd_port',`
36921 gen_require(`
36922 - type sieve_port_t;
36923 + type smbd_port_t;
36924 ')
36925
36926 - dontaudit $1 sieve_port_t:udp_socket send_msg;
36927 + dontaudit $1 smbd_port_t:udp_socket send_msg;
36928 ')
36929
36930 ########################################
36931 ## <summary>
36932 -## Receive UDP traffic on the sieve port.
36933 +## Receive UDP traffic on the smbd port.
36934 ## </summary>
36935 ## <param name="domain">
36936 ## <summary>
36937 @@ -78094,17 +81195,17 @@ interface(`corenet_dontaudit_udp_send_sieve_port',`
36938 ## </param>
36939 ## <infoflow type="read" weight="10"/>
36940 #
36941 -interface(`corenet_udp_receive_sieve_port',`
36942 +interface(`corenet_udp_receive_smbd_port',`
36943 gen_require(`
36944 - type sieve_port_t;
36945 + type smbd_port_t;
36946 ')
36947
36948 - allow $1 sieve_port_t:udp_socket recv_msg;
36949 + allow $1 smbd_port_t:udp_socket recv_msg;
36950 ')
36951
36952 ########################################
36953 ## <summary>
36954 -## Do not audit attempts to receive UDP traffic on the sieve port.
36955 +## Do not audit attempts to receive UDP traffic on the smbd port.
36956 ## </summary>
36957 ## <param name="domain">
36958 ## <summary>
36959 @@ -78113,17 +81214,17 @@ interface(`corenet_udp_receive_sieve_port',`
36960 ## </param>
36961 ## <infoflow type="none"/>
36962 #
36963 -interface(`corenet_dontaudit_udp_receive_sieve_port',`
36964 +interface(`corenet_dontaudit_udp_receive_smbd_port',`
36965 gen_require(`
36966 - type sieve_port_t;
36967 + type smbd_port_t;
36968 ')
36969
36970 - dontaudit $1 sieve_port_t:udp_socket recv_msg;
36971 + dontaudit $1 smbd_port_t:udp_socket recv_msg;
36972 ')
36973
36974 ########################################
36975 ## <summary>
36976 -## Send and receive UDP traffic on the sieve port.
36977 +## Send and receive UDP traffic on the smbd port.
36978 ## </summary>
36979 ## <param name="domain">
36980 ## <summary>
36981 @@ -78132,15 +81233,15 @@ interface(`corenet_dontaudit_udp_receive_sieve_port',`
36982 ## </param>
36983 ## <infoflow type="both" weight="10"/>
36984 #
36985 -interface(`corenet_udp_sendrecv_sieve_port',`
36986 - corenet_udp_send_sieve_port($1)
36987 - corenet_udp_receive_sieve_port($1)
36988 +interface(`corenet_udp_sendrecv_smbd_port',`
36989 + corenet_udp_send_smbd_port($1)
36990 + corenet_udp_receive_smbd_port($1)
36991 ')
36992
36993 ########################################
36994 ## <summary>
36995 ## Do not audit attempts to send and receive
36996 -## UDP traffic on the sieve port.
36997 +## UDP traffic on the smbd port.
36998 ## </summary>
36999 ## <param name="domain">
37000 ## <summary>
37001 @@ -78149,14 +81250,14 @@ interface(`corenet_udp_sendrecv_sieve_port',`
37002 ## </param>
37003 ## <infoflow type="none"/>
37004 #
37005 -interface(`corenet_dontaudit_udp_sendrecv_sieve_port',`
37006 - corenet_dontaudit_udp_send_sieve_port($1)
37007 - corenet_dontaudit_udp_receive_sieve_port($1)
37008 +interface(`corenet_dontaudit_udp_sendrecv_smbd_port',`
37009 + corenet_dontaudit_udp_send_smbd_port($1)
37010 + corenet_dontaudit_udp_receive_smbd_port($1)
37011 ')
37012
37013 ########################################
37014 ## <summary>
37015 -## Bind TCP sockets to the sieve port.
37016 +## Bind TCP sockets to the smbd port.
37017 ## </summary>
37018 ## <param name="domain">
37019 ## <summary>
37020 @@ -78165,18 +81266,18 @@ interface(`corenet_dontaudit_udp_sendrecv_sieve_port',`
37021 ## </param>
37022 ## <infoflow type="none"/>
37023 #
37024 -interface(`corenet_tcp_bind_sieve_port',`
37025 +interface(`corenet_tcp_bind_smbd_port',`
37026 gen_require(`
37027 - type sieve_port_t;
37028 + type smbd_port_t;
37029 ')
37030
37031 - allow $1 sieve_port_t:tcp_socket name_bind;
37032 -
37033 + allow $1 smbd_port_t:tcp_socket name_bind;
37034 + allow $1 self:capability net_bind_service;
37035 ')
37036
37037 ########################################
37038 ## <summary>
37039 -## Bind UDP sockets to the sieve port.
37040 +## Bind UDP sockets to the smbd port.
37041 ## </summary>
37042 ## <param name="domain">
37043 ## <summary>
37044 @@ -78185,18 +81286,18 @@ interface(`corenet_tcp_bind_sieve_port',`
37045 ## </param>
37046 ## <infoflow type="none"/>
37047 #
37048 -interface(`corenet_udp_bind_sieve_port',`
37049 +interface(`corenet_udp_bind_smbd_port',`
37050 gen_require(`
37051 - type sieve_port_t;
37052 + type smbd_port_t;
37053 ')
37054
37055 - allow $1 sieve_port_t:udp_socket name_bind;
37056 -
37057 + allow $1 smbd_port_t:udp_socket name_bind;
37058 + allow $1 self:capability net_bind_service;
37059 ')
37060
37061 ########################################
37062 ## <summary>
37063 -## Make a TCP connection to the sieve port.
37064 +## Make a TCP connection to the smbd port.
37065 ## </summary>
37066 ## <param name="domain">
37067 ## <summary>
37068 @@ -78204,18 +81305,18 @@ interface(`corenet_udp_bind_sieve_port',`
37069 ## </summary>
37070 ## </param>
37071 #
37072 -interface(`corenet_tcp_connect_sieve_port',`
37073 +interface(`corenet_tcp_connect_smbd_port',`
37074 gen_require(`
37075 - type sieve_port_t;
37076 + type smbd_port_t;
37077 ')
37078
37079 - allow $1 sieve_port_t:tcp_socket name_connect;
37080 + allow $1 smbd_port_t:tcp_socket name_connect;
37081 ')
37082
37083
37084 ########################################
37085 ## <summary>
37086 -## Send sieve_client packets.
37087 +## Send smbd_client packets.
37088 ## </summary>
37089 ## <param name="domain">
37090 ## <summary>
37091 @@ -78224,17 +81325,17 @@ interface(`corenet_tcp_connect_sieve_port',`
37092 ## </param>
37093 ## <infoflow type="write" weight="10"/>
37094 #
37095 -interface(`corenet_send_sieve_client_packets',`
37096 +interface(`corenet_send_smbd_client_packets',`
37097 gen_require(`
37098 - type sieve_client_packet_t;
37099 + type smbd_client_packet_t;
37100 ')
37101
37102 - allow $1 sieve_client_packet_t:packet send;
37103 + allow $1 smbd_client_packet_t:packet send;
37104 ')
37105
37106 ########################################
37107 ## <summary>
37108 -## Do not audit attempts to send sieve_client packets.
37109 +## Do not audit attempts to send smbd_client packets.
37110 ## </summary>
37111 ## <param name="domain">
37112 ## <summary>
37113 @@ -78243,17 +81344,17 @@ interface(`corenet_send_sieve_client_packets',`
37114 ## </param>
37115 ## <infoflow type="none"/>
37116 #
37117 -interface(`corenet_dontaudit_send_sieve_client_packets',`
37118 +interface(`corenet_dontaudit_send_smbd_client_packets',`
37119 gen_require(`
37120 - type sieve_client_packet_t;
37121 + type smbd_client_packet_t;
37122 ')
37123
37124 - dontaudit $1 sieve_client_packet_t:packet send;
37125 + dontaudit $1 smbd_client_packet_t:packet send;
37126 ')
37127
37128 ########################################
37129 ## <summary>
37130 -## Receive sieve_client packets.
37131 +## Receive smbd_client packets.
37132 ## </summary>
37133 ## <param name="domain">
37134 ## <summary>
37135 @@ -78262,17 +81363,17 @@ interface(`corenet_dontaudit_send_sieve_client_packets',`
37136 ## </param>
37137 ## <infoflow type="read" weight="10"/>
37138 #
37139 -interface(`corenet_receive_sieve_client_packets',`
37140 +interface(`corenet_receive_smbd_client_packets',`
37141 gen_require(`
37142 - type sieve_client_packet_t;
37143 + type smbd_client_packet_t;
37144 ')
37145
37146 - allow $1 sieve_client_packet_t:packet recv;
37147 + allow $1 smbd_client_packet_t:packet recv;
37148 ')
37149
37150 ########################################
37151 ## <summary>
37152 -## Do not audit attempts to receive sieve_client packets.
37153 +## Do not audit attempts to receive smbd_client packets.
37154 ## </summary>
37155 ## <param name="domain">
37156 ## <summary>
37157 @@ -78281,17 +81382,17 @@ interface(`corenet_receive_sieve_client_packets',`
37158 ## </param>
37159 ## <infoflow type="none"/>
37160 #
37161 -interface(`corenet_dontaudit_receive_sieve_client_packets',`
37162 +interface(`corenet_dontaudit_receive_smbd_client_packets',`
37163 gen_require(`
37164 - type sieve_client_packet_t;
37165 + type smbd_client_packet_t;
37166 ')
37167
37168 - dontaudit $1 sieve_client_packet_t:packet recv;
37169 + dontaudit $1 smbd_client_packet_t:packet recv;
37170 ')
37171
37172 ########################################
37173 ## <summary>
37174 -## Send and receive sieve_client packets.
37175 +## Send and receive smbd_client packets.
37176 ## </summary>
37177 ## <param name="domain">
37178 ## <summary>
37179 @@ -78300,14 +81401,14 @@ interface(`corenet_dontaudit_receive_sieve_client_packets',`
37180 ## </param>
37181 ## <infoflow type="both" weight="10"/>
37182 #
37183 -interface(`corenet_sendrecv_sieve_client_packets',`
37184 - corenet_send_sieve_client_packets($1)
37185 - corenet_receive_sieve_client_packets($1)
37186 +interface(`corenet_sendrecv_smbd_client_packets',`
37187 + corenet_send_smbd_client_packets($1)
37188 + corenet_receive_smbd_client_packets($1)
37189 ')
37190
37191 ########################################
37192 ## <summary>
37193 -## Do not audit attempts to send and receive sieve_client packets.
37194 +## Do not audit attempts to send and receive smbd_client packets.
37195 ## </summary>
37196 ## <param name="domain">
37197 ## <summary>
37198 @@ -78316,14 +81417,14 @@ interface(`corenet_sendrecv_sieve_client_packets',`
37199 ## </param>
37200 ## <infoflow type="none"/>
37201 #
37202 -interface(`corenet_dontaudit_sendrecv_sieve_client_packets',`
37203 - corenet_dontaudit_send_sieve_client_packets($1)
37204 - corenet_dontaudit_receive_sieve_client_packets($1)
37205 +interface(`corenet_dontaudit_sendrecv_smbd_client_packets',`
37206 + corenet_dontaudit_send_smbd_client_packets($1)
37207 + corenet_dontaudit_receive_smbd_client_packets($1)
37208 ')
37209
37210 ########################################
37211 ## <summary>
37212 -## Relabel packets to sieve_client the packet type.
37213 +## Relabel packets to smbd_client the packet type.
37214 ## </summary>
37215 ## <param name="domain">
37216 ## <summary>
37217 @@ -78331,18 +81432,18 @@ interface(`corenet_dontaudit_sendrecv_sieve_client_packets',`
37218 ## </summary>
37219 ## </param>
37220 #
37221 -interface(`corenet_relabelto_sieve_client_packets',`
37222 +interface(`corenet_relabelto_smbd_client_packets',`
37223 gen_require(`
37224 - type sieve_client_packet_t;
37225 + type smbd_client_packet_t;
37226 ')
37227
37228 - allow $1 sieve_client_packet_t:packet relabelto;
37229 + allow $1 smbd_client_packet_t:packet relabelto;
37230 ')
37231
37232
37233 ########################################
37234 ## <summary>
37235 -## Send sieve_server packets.
37236 +## Send smbd_server packets.
37237 ## </summary>
37238 ## <param name="domain">
37239 ## <summary>
37240 @@ -78351,17 +81452,17 @@ interface(`corenet_relabelto_sieve_client_packets',`
37241 ## </param>
37242 ## <infoflow type="write" weight="10"/>
37243 #
37244 -interface(`corenet_send_sieve_server_packets',`
37245 +interface(`corenet_send_smbd_server_packets',`
37246 gen_require(`
37247 - type sieve_server_packet_t;
37248 + type smbd_server_packet_t;
37249 ')
37250
37251 - allow $1 sieve_server_packet_t:packet send;
37252 + allow $1 smbd_server_packet_t:packet send;
37253 ')
37254
37255 ########################################
37256 ## <summary>
37257 -## Do not audit attempts to send sieve_server packets.
37258 +## Do not audit attempts to send smbd_server packets.
37259 ## </summary>
37260 ## <param name="domain">
37261 ## <summary>
37262 @@ -78370,17 +81471,17 @@ interface(`corenet_send_sieve_server_packets',`
37263 ## </param>
37264 ## <infoflow type="none"/>
37265 #
37266 -interface(`corenet_dontaudit_send_sieve_server_packets',`
37267 +interface(`corenet_dontaudit_send_smbd_server_packets',`
37268 gen_require(`
37269 - type sieve_server_packet_t;
37270 + type smbd_server_packet_t;
37271 ')
37272
37273 - dontaudit $1 sieve_server_packet_t:packet send;
37274 + dontaudit $1 smbd_server_packet_t:packet send;
37275 ')
37276
37277 ########################################
37278 ## <summary>
37279 -## Receive sieve_server packets.
37280 +## Receive smbd_server packets.
37281 ## </summary>
37282 ## <param name="domain">
37283 ## <summary>
37284 @@ -78389,17 +81490,17 @@ interface(`corenet_dontaudit_send_sieve_server_packets',`
37285 ## </param>
37286 ## <infoflow type="read" weight="10"/>
37287 #
37288 -interface(`corenet_receive_sieve_server_packets',`
37289 +interface(`corenet_receive_smbd_server_packets',`
37290 gen_require(`
37291 - type sieve_server_packet_t;
37292 + type smbd_server_packet_t;
37293 ')
37294
37295 - allow $1 sieve_server_packet_t:packet recv;
37296 + allow $1 smbd_server_packet_t:packet recv;
37297 ')
37298
37299 ########################################
37300 ## <summary>
37301 -## Do not audit attempts to receive sieve_server packets.
37302 +## Do not audit attempts to receive smbd_server packets.
37303 ## </summary>
37304 ## <param name="domain">
37305 ## <summary>
37306 @@ -78408,17 +81509,17 @@ interface(`corenet_receive_sieve_server_packets',`
37307 ## </param>
37308 ## <infoflow type="none"/>
37309 #
37310 -interface(`corenet_dontaudit_receive_sieve_server_packets',`
37311 +interface(`corenet_dontaudit_receive_smbd_server_packets',`
37312 gen_require(`
37313 - type sieve_server_packet_t;
37314 + type smbd_server_packet_t;
37315 ')
37316
37317 - dontaudit $1 sieve_server_packet_t:packet recv;
37318 + dontaudit $1 smbd_server_packet_t:packet recv;
37319 ')
37320
37321 ########################################
37322 ## <summary>
37323 -## Send and receive sieve_server packets.
37324 +## Send and receive smbd_server packets.
37325 ## </summary>
37326 ## <param name="domain">
37327 ## <summary>
37328 @@ -78427,14 +81528,14 @@ interface(`corenet_dontaudit_receive_sieve_server_packets',`
37329 ## </param>
37330 ## <infoflow type="both" weight="10"/>
37331 #
37332 -interface(`corenet_sendrecv_sieve_server_packets',`
37333 - corenet_send_sieve_server_packets($1)
37334 - corenet_receive_sieve_server_packets($1)
37335 +interface(`corenet_sendrecv_smbd_server_packets',`
37336 + corenet_send_smbd_server_packets($1)
37337 + corenet_receive_smbd_server_packets($1)
37338 ')
37339
37340 ########################################
37341 ## <summary>
37342 -## Do not audit attempts to send and receive sieve_server packets.
37343 +## Do not audit attempts to send and receive smbd_server packets.
37344 ## </summary>
37345 ## <param name="domain">
37346 ## <summary>
37347 @@ -78443,14 +81544,14 @@ interface(`corenet_sendrecv_sieve_server_packets',`
37348 ## </param>
37349 ## <infoflow type="none"/>
37350 #
37351 -interface(`corenet_dontaudit_sendrecv_sieve_server_packets',`
37352 - corenet_dontaudit_send_sieve_server_packets($1)
37353 - corenet_dontaudit_receive_sieve_server_packets($1)
37354 +interface(`corenet_dontaudit_sendrecv_smbd_server_packets',`
37355 + corenet_dontaudit_send_smbd_server_packets($1)
37356 + corenet_dontaudit_receive_smbd_server_packets($1)
37357 ')
37358
37359 ########################################
37360 ## <summary>
37361 -## Relabel packets to sieve_server the packet type.
37362 +## Relabel packets to smbd_server the packet type.
37363 ## </summary>
37364 ## <param name="domain">
37365 ## <summary>
37366 @@ -78458,12 +81559,12 @@ interface(`corenet_dontaudit_sendrecv_sieve_server_packets',`
37367 ## </summary>
37368 ## </param>
37369 #
37370 -interface(`corenet_relabelto_sieve_server_packets',`
37371 +interface(`corenet_relabelto_smbd_server_packets',`
37372 gen_require(`
37373 - type sieve_server_packet_t;
37374 + type smbd_server_packet_t;
37375 ')
37376
37377 - allow $1 sieve_server_packet_t:packet relabelto;
37378 + allow $1 smbd_server_packet_t:packet relabelto;
37379 ')
37380
37381
37382 @@ -78471,7 +81572,7 @@ interface(`corenet_relabelto_sieve_server_packets',`
37383
37384 ########################################
37385 ## <summary>
37386 -## Send and receive TCP traffic on the sip port.
37387 +## Send and receive TCP traffic on the smtp port.
37388 ## </summary>
37389 ## <param name="domain">
37390 ## <summary>
37391 @@ -78480,17 +81581,17 @@ interface(`corenet_relabelto_sieve_server_packets',`
37392 ## </param>
37393 ## <infoflow type="both" weight="10"/>
37394 #
37395 -interface(`corenet_tcp_sendrecv_sip_port',`
37396 +interface(`corenet_tcp_sendrecv_smtp_port',`
37397 gen_require(`
37398 - type sip_port_t;
37399 + type smtp_port_t;
37400 ')
37401
37402 - allow $1 sip_port_t:tcp_socket { send_msg recv_msg };
37403 + allow $1 smtp_port_t:tcp_socket { send_msg recv_msg };
37404 ')
37405
37406 ########################################
37407 ## <summary>
37408 -## Send UDP traffic on the sip port.
37409 +## Send UDP traffic on the smtp port.
37410 ## </summary>
37411 ## <param name="domain">
37412 ## <summary>
37413 @@ -78499,17 +81600,17 @@ interface(`corenet_tcp_sendrecv_sip_port',`
37414 ## </param>
37415 ## <infoflow type="write" weight="10"/>
37416 #
37417 -interface(`corenet_udp_send_sip_port',`
37418 +interface(`corenet_udp_send_smtp_port',`
37419 gen_require(`
37420 - type sip_port_t;
37421 + type smtp_port_t;
37422 ')
37423
37424 - allow $1 sip_port_t:udp_socket send_msg;
37425 + allow $1 smtp_port_t:udp_socket send_msg;
37426 ')
37427
37428 ########################################
37429 ## <summary>
37430 -## Do not audit attempts to send UDP traffic on the sip port.
37431 +## Do not audit attempts to send UDP traffic on the smtp port.
37432 ## </summary>
37433 ## <param name="domain">
37434 ## <summary>
37435 @@ -78518,17 +81619,17 @@ interface(`corenet_udp_send_sip_port',`
37436 ## </param>
37437 ## <infoflow type="none"/>
37438 #
37439 -interface(`corenet_dontaudit_udp_send_sip_port',`
37440 +interface(`corenet_dontaudit_udp_send_smtp_port',`
37441 gen_require(`
37442 - type sip_port_t;
37443 + type smtp_port_t;
37444 ')
37445
37446 - dontaudit $1 sip_port_t:udp_socket send_msg;
37447 + dontaudit $1 smtp_port_t:udp_socket send_msg;
37448 ')
37449
37450 ########################################
37451 ## <summary>
37452 -## Receive UDP traffic on the sip port.
37453 +## Receive UDP traffic on the smtp port.
37454 ## </summary>
37455 ## <param name="domain">
37456 ## <summary>
37457 @@ -78537,17 +81638,17 @@ interface(`corenet_dontaudit_udp_send_sip_port',`
37458 ## </param>
37459 ## <infoflow type="read" weight="10"/>
37460 #
37461 -interface(`corenet_udp_receive_sip_port',`
37462 +interface(`corenet_udp_receive_smtp_port',`
37463 gen_require(`
37464 - type sip_port_t;
37465 + type smtp_port_t;
37466 ')
37467
37468 - allow $1 sip_port_t:udp_socket recv_msg;
37469 + allow $1 smtp_port_t:udp_socket recv_msg;
37470 ')
37471
37472 ########################################
37473 ## <summary>
37474 -## Do not audit attempts to receive UDP traffic on the sip port.
37475 +## Do not audit attempts to receive UDP traffic on the smtp port.
37476 ## </summary>
37477 ## <param name="domain">
37478 ## <summary>
37479 @@ -78556,17 +81657,17 @@ interface(`corenet_udp_receive_sip_port',`
37480 ## </param>
37481 ## <infoflow type="none"/>
37482 #
37483 -interface(`corenet_dontaudit_udp_receive_sip_port',`
37484 +interface(`corenet_dontaudit_udp_receive_smtp_port',`
37485 gen_require(`
37486 - type sip_port_t;
37487 + type smtp_port_t;
37488 ')
37489
37490 - dontaudit $1 sip_port_t:udp_socket recv_msg;
37491 + dontaudit $1 smtp_port_t:udp_socket recv_msg;
37492 ')
37493
37494 ########################################
37495 ## <summary>
37496 -## Send and receive UDP traffic on the sip port.
37497 +## Send and receive UDP traffic on the smtp port.
37498 ## </summary>
37499 ## <param name="domain">
37500 ## <summary>
37501 @@ -78575,15 +81676,15 @@ interface(`corenet_dontaudit_udp_receive_sip_port',`
37502 ## </param>
37503 ## <infoflow type="both" weight="10"/>
37504 #
37505 -interface(`corenet_udp_sendrecv_sip_port',`
37506 - corenet_udp_send_sip_port($1)
37507 - corenet_udp_receive_sip_port($1)
37508 +interface(`corenet_udp_sendrecv_smtp_port',`
37509 + corenet_udp_send_smtp_port($1)
37510 + corenet_udp_receive_smtp_port($1)
37511 ')
37512
37513 ########################################
37514 ## <summary>
37515 ## Do not audit attempts to send and receive
37516 -## UDP traffic on the sip port.
37517 +## UDP traffic on the smtp port.
37518 ## </summary>
37519 ## <param name="domain">
37520 ## <summary>
37521 @@ -78592,14 +81693,14 @@ interface(`corenet_udp_sendrecv_sip_port',`
37522 ## </param>
37523 ## <infoflow type="none"/>
37524 #
37525 -interface(`corenet_dontaudit_udp_sendrecv_sip_port',`
37526 - corenet_dontaudit_udp_send_sip_port($1)
37527 - corenet_dontaudit_udp_receive_sip_port($1)
37528 +interface(`corenet_dontaudit_udp_sendrecv_smtp_port',`
37529 + corenet_dontaudit_udp_send_smtp_port($1)
37530 + corenet_dontaudit_udp_receive_smtp_port($1)
37531 ')
37532
37533 ########################################
37534 ## <summary>
37535 -## Bind TCP sockets to the sip port.
37536 +## Bind TCP sockets to the smtp port.
37537 ## </summary>
37538 ## <param name="domain">
37539 ## <summary>
37540 @@ -78608,18 +81709,18 @@ interface(`corenet_dontaudit_udp_sendrecv_sip_port',`
37541 ## </param>
37542 ## <infoflow type="none"/>
37543 #
37544 -interface(`corenet_tcp_bind_sip_port',`
37545 +interface(`corenet_tcp_bind_smtp_port',`
37546 gen_require(`
37547 - type sip_port_t;
37548 + type smtp_port_t;
37549 ')
37550
37551 - allow $1 sip_port_t:tcp_socket name_bind;
37552 -
37553 + allow $1 smtp_port_t:tcp_socket name_bind;
37554 + allow $1 self:capability net_bind_service;
37555 ')
37556
37557 ########################################
37558 ## <summary>
37559 -## Bind UDP sockets to the sip port.
37560 +## Bind UDP sockets to the smtp port.
37561 ## </summary>
37562 ## <param name="domain">
37563 ## <summary>
37564 @@ -78628,18 +81729,18 @@ interface(`corenet_tcp_bind_sip_port',`
37565 ## </param>
37566 ## <infoflow type="none"/>
37567 #
37568 -interface(`corenet_udp_bind_sip_port',`
37569 +interface(`corenet_udp_bind_smtp_port',`
37570 gen_require(`
37571 - type sip_port_t;
37572 + type smtp_port_t;
37573 ')
37574
37575 - allow $1 sip_port_t:udp_socket name_bind;
37576 -
37577 + allow $1 smtp_port_t:udp_socket name_bind;
37578 + allow $1 self:capability net_bind_service;
37579 ')
37580
37581 ########################################
37582 ## <summary>
37583 -## Make a TCP connection to the sip port.
37584 +## Make a TCP connection to the smtp port.
37585 ## </summary>
37586 ## <param name="domain">
37587 ## <summary>
37588 @@ -78647,18 +81748,18 @@ interface(`corenet_udp_bind_sip_port',`
37589 ## </summary>
37590 ## </param>
37591 #
37592 -interface(`corenet_tcp_connect_sip_port',`
37593 +interface(`corenet_tcp_connect_smtp_port',`
37594 gen_require(`
37595 - type sip_port_t;
37596 + type smtp_port_t;
37597 ')
37598
37599 - allow $1 sip_port_t:tcp_socket name_connect;
37600 + allow $1 smtp_port_t:tcp_socket name_connect;
37601 ')
37602
37603
37604 ########################################
37605 ## <summary>
37606 -## Send sip_client packets.
37607 +## Send smtp_client packets.
37608 ## </summary>
37609 ## <param name="domain">
37610 ## <summary>
37611 @@ -78667,17 +81768,17 @@ interface(`corenet_tcp_connect_sip_port',`
37612 ## </param>
37613 ## <infoflow type="write" weight="10"/>
37614 #
37615 -interface(`corenet_send_sip_client_packets',`
37616 +interface(`corenet_send_smtp_client_packets',`
37617 gen_require(`
37618 - type sip_client_packet_t;
37619 + type smtp_client_packet_t;
37620 ')
37621
37622 - allow $1 sip_client_packet_t:packet send;
37623 + allow $1 smtp_client_packet_t:packet send;
37624 ')
37625
37626 ########################################
37627 ## <summary>
37628 -## Do not audit attempts to send sip_client packets.
37629 +## Do not audit attempts to send smtp_client packets.
37630 ## </summary>
37631 ## <param name="domain">
37632 ## <summary>
37633 @@ -78686,17 +81787,17 @@ interface(`corenet_send_sip_client_packets',`
37634 ## </param>
37635 ## <infoflow type="none"/>
37636 #
37637 -interface(`corenet_dontaudit_send_sip_client_packets',`
37638 +interface(`corenet_dontaudit_send_smtp_client_packets',`
37639 gen_require(`
37640 - type sip_client_packet_t;
37641 + type smtp_client_packet_t;
37642 ')
37643
37644 - dontaudit $1 sip_client_packet_t:packet send;
37645 + dontaudit $1 smtp_client_packet_t:packet send;
37646 ')
37647
37648 ########################################
37649 ## <summary>
37650 -## Receive sip_client packets.
37651 +## Receive smtp_client packets.
37652 ## </summary>
37653 ## <param name="domain">
37654 ## <summary>
37655 @@ -78705,17 +81806,17 @@ interface(`corenet_dontaudit_send_sip_client_packets',`
37656 ## </param>
37657 ## <infoflow type="read" weight="10"/>
37658 #
37659 -interface(`corenet_receive_sip_client_packets',`
37660 +interface(`corenet_receive_smtp_client_packets',`
37661 gen_require(`
37662 - type sip_client_packet_t;
37663 + type smtp_client_packet_t;
37664 ')
37665
37666 - allow $1 sip_client_packet_t:packet recv;
37667 + allow $1 smtp_client_packet_t:packet recv;
37668 ')
37669
37670 ########################################
37671 ## <summary>
37672 -## Do not audit attempts to receive sip_client packets.
37673 +## Do not audit attempts to receive smtp_client packets.
37674 ## </summary>
37675 ## <param name="domain">
37676 ## <summary>
37677 @@ -78724,17 +81825,17 @@ interface(`corenet_receive_sip_client_packets',`
37678 ## </param>
37679 ## <infoflow type="none"/>
37680 #
37681 -interface(`corenet_dontaudit_receive_sip_client_packets',`
37682 +interface(`corenet_dontaudit_receive_smtp_client_packets',`
37683 gen_require(`
37684 - type sip_client_packet_t;
37685 + type smtp_client_packet_t;
37686 ')
37687
37688 - dontaudit $1 sip_client_packet_t:packet recv;
37689 + dontaudit $1 smtp_client_packet_t:packet recv;
37690 ')
37691
37692 ########################################
37693 ## <summary>
37694 -## Send and receive sip_client packets.
37695 +## Send and receive smtp_client packets.
37696 ## </summary>
37697 ## <param name="domain">
37698 ## <summary>
37699 @@ -78743,14 +81844,14 @@ interface(`corenet_dontaudit_receive_sip_client_packets',`
37700 ## </param>
37701 ## <infoflow type="both" weight="10"/>
37702 #
37703 -interface(`corenet_sendrecv_sip_client_packets',`
37704 - corenet_send_sip_client_packets($1)
37705 - corenet_receive_sip_client_packets($1)
37706 +interface(`corenet_sendrecv_smtp_client_packets',`
37707 + corenet_send_smtp_client_packets($1)
37708 + corenet_receive_smtp_client_packets($1)
37709 ')
37710
37711 ########################################
37712 ## <summary>
37713 -## Do not audit attempts to send and receive sip_client packets.
37714 +## Do not audit attempts to send and receive smtp_client packets.
37715 ## </summary>
37716 ## <param name="domain">
37717 ## <summary>
37718 @@ -78759,14 +81860,14 @@ interface(`corenet_sendrecv_sip_client_packets',`
37719 ## </param>
37720 ## <infoflow type="none"/>
37721 #
37722 -interface(`corenet_dontaudit_sendrecv_sip_client_packets',`
37723 - corenet_dontaudit_send_sip_client_packets($1)
37724 - corenet_dontaudit_receive_sip_client_packets($1)
37725 +interface(`corenet_dontaudit_sendrecv_smtp_client_packets',`
37726 + corenet_dontaudit_send_smtp_client_packets($1)
37727 + corenet_dontaudit_receive_smtp_client_packets($1)
37728 ')
37729
37730 ########################################
37731 ## <summary>
37732 -## Relabel packets to sip_client the packet type.
37733 +## Relabel packets to smtp_client the packet type.
37734 ## </summary>
37735 ## <param name="domain">
37736 ## <summary>
37737 @@ -78774,18 +81875,18 @@ interface(`corenet_dontaudit_sendrecv_sip_client_packets',`
37738 ## </summary>
37739 ## </param>
37740 #
37741 -interface(`corenet_relabelto_sip_client_packets',`
37742 +interface(`corenet_relabelto_smtp_client_packets',`
37743 gen_require(`
37744 - type sip_client_packet_t;
37745 + type smtp_client_packet_t;
37746 ')
37747
37748 - allow $1 sip_client_packet_t:packet relabelto;
37749 + allow $1 smtp_client_packet_t:packet relabelto;
37750 ')
37751
37752
37753 ########################################
37754 ## <summary>
37755 -## Send sip_server packets.
37756 +## Send smtp_server packets.
37757 ## </summary>
37758 ## <param name="domain">
37759 ## <summary>
37760 @@ -78794,17 +81895,17 @@ interface(`corenet_relabelto_sip_client_packets',`
37761 ## </param>
37762 ## <infoflow type="write" weight="10"/>
37763 #
37764 -interface(`corenet_send_sip_server_packets',`
37765 +interface(`corenet_send_smtp_server_packets',`
37766 gen_require(`
37767 - type sip_server_packet_t;
37768 + type smtp_server_packet_t;
37769 ')
37770
37771 - allow $1 sip_server_packet_t:packet send;
37772 + allow $1 smtp_server_packet_t:packet send;
37773 ')
37774
37775 ########################################
37776 ## <summary>
37777 -## Do not audit attempts to send sip_server packets.
37778 +## Do not audit attempts to send smtp_server packets.
37779 ## </summary>
37780 ## <param name="domain">
37781 ## <summary>
37782 @@ -78813,17 +81914,17 @@ interface(`corenet_send_sip_server_packets',`
37783 ## </param>
37784 ## <infoflow type="none"/>
37785 #
37786 -interface(`corenet_dontaudit_send_sip_server_packets',`
37787 +interface(`corenet_dontaudit_send_smtp_server_packets',`
37788 gen_require(`
37789 - type sip_server_packet_t;
37790 + type smtp_server_packet_t;
37791 ')
37792
37793 - dontaudit $1 sip_server_packet_t:packet send;
37794 + dontaudit $1 smtp_server_packet_t:packet send;
37795 ')
37796
37797 ########################################
37798 ## <summary>
37799 -## Receive sip_server packets.
37800 +## Receive smtp_server packets.
37801 ## </summary>
37802 ## <param name="domain">
37803 ## <summary>
37804 @@ -78832,17 +81933,17 @@ interface(`corenet_dontaudit_send_sip_server_packets',`
37805 ## </param>
37806 ## <infoflow type="read" weight="10"/>
37807 #
37808 -interface(`corenet_receive_sip_server_packets',`
37809 +interface(`corenet_receive_smtp_server_packets',`
37810 gen_require(`
37811 - type sip_server_packet_t;
37812 + type smtp_server_packet_t;
37813 ')
37814
37815 - allow $1 sip_server_packet_t:packet recv;
37816 + allow $1 smtp_server_packet_t:packet recv;
37817 ')
37818
37819 ########################################
37820 ## <summary>
37821 -## Do not audit attempts to receive sip_server packets.
37822 +## Do not audit attempts to receive smtp_server packets.
37823 ## </summary>
37824 ## <param name="domain">
37825 ## <summary>
37826 @@ -78851,17 +81952,17 @@ interface(`corenet_receive_sip_server_packets',`
37827 ## </param>
37828 ## <infoflow type="none"/>
37829 #
37830 -interface(`corenet_dontaudit_receive_sip_server_packets',`
37831 +interface(`corenet_dontaudit_receive_smtp_server_packets',`
37832 gen_require(`
37833 - type sip_server_packet_t;
37834 + type smtp_server_packet_t;
37835 ')
37836
37837 - dontaudit $1 sip_server_packet_t:packet recv;
37838 + dontaudit $1 smtp_server_packet_t:packet recv;
37839 ')
37840
37841 ########################################
37842 ## <summary>
37843 -## Send and receive sip_server packets.
37844 +## Send and receive smtp_server packets.
37845 ## </summary>
37846 ## <param name="domain">
37847 ## <summary>
37848 @@ -78870,14 +81971,14 @@ interface(`corenet_dontaudit_receive_sip_server_packets',`
37849 ## </param>
37850 ## <infoflow type="both" weight="10"/>
37851 #
37852 -interface(`corenet_sendrecv_sip_server_packets',`
37853 - corenet_send_sip_server_packets($1)
37854 - corenet_receive_sip_server_packets($1)
37855 +interface(`corenet_sendrecv_smtp_server_packets',`
37856 + corenet_send_smtp_server_packets($1)
37857 + corenet_receive_smtp_server_packets($1)
37858 ')
37859
37860 ########################################
37861 ## <summary>
37862 -## Do not audit attempts to send and receive sip_server packets.
37863 +## Do not audit attempts to send and receive smtp_server packets.
37864 ## </summary>
37865 ## <param name="domain">
37866 ## <summary>
37867 @@ -78886,14 +81987,14 @@ interface(`corenet_sendrecv_sip_server_packets',`
37868 ## </param>
37869 ## <infoflow type="none"/>
37870 #
37871 -interface(`corenet_dontaudit_sendrecv_sip_server_packets',`
37872 - corenet_dontaudit_send_sip_server_packets($1)
37873 - corenet_dontaudit_receive_sip_server_packets($1)
37874 +interface(`corenet_dontaudit_sendrecv_smtp_server_packets',`
37875 + corenet_dontaudit_send_smtp_server_packets($1)
37876 + corenet_dontaudit_receive_smtp_server_packets($1)
37877 ')
37878
37879 ########################################
37880 ## <summary>
37881 -## Relabel packets to sip_server the packet type.
37882 +## Relabel packets to smtp_server the packet type.
37883 ## </summary>
37884 ## <param name="domain">
37885 ## <summary>
37886 @@ -78901,12 +82002,12 @@ interface(`corenet_dontaudit_sendrecv_sip_server_packets',`
37887 ## </summary>
37888 ## </param>
37889 #
37890 -interface(`corenet_relabelto_sip_server_packets',`
37891 +interface(`corenet_relabelto_smtp_server_packets',`
37892 gen_require(`
37893 - type sip_server_packet_t;
37894 + type smtp_server_packet_t;
37895 ')
37896
37897 - allow $1 sip_server_packet_t:packet relabelto;
37898 + allow $1 smtp_server_packet_t:packet relabelto;
37899 ')
37900
37901
37902 @@ -78914,7 +82015,7 @@ interface(`corenet_relabelto_sip_server_packets',`
37903
37904 ########################################
37905 ## <summary>
37906 -## Send and receive TCP traffic on the sixxsconfig port.
37907 +## Send and receive TCP traffic on the snmp port.
37908 ## </summary>
37909 ## <param name="domain">
37910 ## <summary>
37911 @@ -78923,17 +82024,17 @@ interface(`corenet_relabelto_sip_server_packets',`
37912 ## </param>
37913 ## <infoflow type="both" weight="10"/>
37914 #
37915 -interface(`corenet_tcp_sendrecv_sixxsconfig_port',`
37916 +interface(`corenet_tcp_sendrecv_snmp_port',`
37917 gen_require(`
37918 - type sixxsconfig_port_t;
37919 + type snmp_port_t;
37920 ')
37921
37922 - allow $1 sixxsconfig_port_t:tcp_socket { send_msg recv_msg };
37923 + allow $1 snmp_port_t:tcp_socket { send_msg recv_msg };
37924 ')
37925
37926 ########################################
37927 ## <summary>
37928 -## Send UDP traffic on the sixxsconfig port.
37929 +## Send UDP traffic on the snmp port.
37930 ## </summary>
37931 ## <param name="domain">
37932 ## <summary>
37933 @@ -78942,17 +82043,17 @@ interface(`corenet_tcp_sendrecv_sixxsconfig_port',`
37934 ## </param>
37935 ## <infoflow type="write" weight="10"/>
37936 #
37937 -interface(`corenet_udp_send_sixxsconfig_port',`
37938 +interface(`corenet_udp_send_snmp_port',`
37939 gen_require(`
37940 - type sixxsconfig_port_t;
37941 + type snmp_port_t;
37942 ')
37943
37944 - allow $1 sixxsconfig_port_t:udp_socket send_msg;
37945 + allow $1 snmp_port_t:udp_socket send_msg;
37946 ')
37947
37948 ########################################
37949 ## <summary>
37950 -## Do not audit attempts to send UDP traffic on the sixxsconfig port.
37951 +## Do not audit attempts to send UDP traffic on the snmp port.
37952 ## </summary>
37953 ## <param name="domain">
37954 ## <summary>
37955 @@ -78961,17 +82062,17 @@ interface(`corenet_udp_send_sixxsconfig_port',`
37956 ## </param>
37957 ## <infoflow type="none"/>
37958 #
37959 -interface(`corenet_dontaudit_udp_send_sixxsconfig_port',`
37960 +interface(`corenet_dontaudit_udp_send_snmp_port',`
37961 gen_require(`
37962 - type sixxsconfig_port_t;
37963 + type snmp_port_t;
37964 ')
37965
37966 - dontaudit $1 sixxsconfig_port_t:udp_socket send_msg;
37967 + dontaudit $1 snmp_port_t:udp_socket send_msg;
37968 ')
37969
37970 ########################################
37971 ## <summary>
37972 -## Receive UDP traffic on the sixxsconfig port.
37973 +## Receive UDP traffic on the snmp port.
37974 ## </summary>
37975 ## <param name="domain">
37976 ## <summary>
37977 @@ -78980,17 +82081,17 @@ interface(`corenet_dontaudit_udp_send_sixxsconfig_port',`
37978 ## </param>
37979 ## <infoflow type="read" weight="10"/>
37980 #
37981 -interface(`corenet_udp_receive_sixxsconfig_port',`
37982 +interface(`corenet_udp_receive_snmp_port',`
37983 gen_require(`
37984 - type sixxsconfig_port_t;
37985 + type snmp_port_t;
37986 ')
37987
37988 - allow $1 sixxsconfig_port_t:udp_socket recv_msg;
37989 + allow $1 snmp_port_t:udp_socket recv_msg;
37990 ')
37991
37992 ########################################
37993 ## <summary>
37994 -## Do not audit attempts to receive UDP traffic on the sixxsconfig port.
37995 +## Do not audit attempts to receive UDP traffic on the snmp port.
37996 ## </summary>
37997 ## <param name="domain">
37998 ## <summary>
37999 @@ -78999,17 +82100,17 @@ interface(`corenet_udp_receive_sixxsconfig_port',`
38000 ## </param>
38001 ## <infoflow type="none"/>
38002 #
38003 -interface(`corenet_dontaudit_udp_receive_sixxsconfig_port',`
38004 +interface(`corenet_dontaudit_udp_receive_snmp_port',`
38005 gen_require(`
38006 - type sixxsconfig_port_t;
38007 + type snmp_port_t;
38008 ')
38009
38010 - dontaudit $1 sixxsconfig_port_t:udp_socket recv_msg;
38011 + dontaudit $1 snmp_port_t:udp_socket recv_msg;
38012 ')
38013
38014 ########################################
38015 ## <summary>
38016 -## Send and receive UDP traffic on the sixxsconfig port.
38017 +## Send and receive UDP traffic on the snmp port.
38018 ## </summary>
38019 ## <param name="domain">
38020 ## <summary>
38021 @@ -79018,15 +82119,15 @@ interface(`corenet_dontaudit_udp_receive_sixxsconfig_port',`
38022 ## </param>
38023 ## <infoflow type="both" weight="10"/>
38024 #
38025 -interface(`corenet_udp_sendrecv_sixxsconfig_port',`
38026 - corenet_udp_send_sixxsconfig_port($1)
38027 - corenet_udp_receive_sixxsconfig_port($1)
38028 +interface(`corenet_udp_sendrecv_snmp_port',`
38029 + corenet_udp_send_snmp_port($1)
38030 + corenet_udp_receive_snmp_port($1)
38031 ')
38032
38033 ########################################
38034 ## <summary>
38035 ## Do not audit attempts to send and receive
38036 -## UDP traffic on the sixxsconfig port.
38037 +## UDP traffic on the snmp port.
38038 ## </summary>
38039 ## <param name="domain">
38040 ## <summary>
38041 @@ -79035,14 +82136,14 @@ interface(`corenet_udp_sendrecv_sixxsconfig_port',`
38042 ## </param>
38043 ## <infoflow type="none"/>
38044 #
38045 -interface(`corenet_dontaudit_udp_sendrecv_sixxsconfig_port',`
38046 - corenet_dontaudit_udp_send_sixxsconfig_port($1)
38047 - corenet_dontaudit_udp_receive_sixxsconfig_port($1)
38048 +interface(`corenet_dontaudit_udp_sendrecv_snmp_port',`
38049 + corenet_dontaudit_udp_send_snmp_port($1)
38050 + corenet_dontaudit_udp_receive_snmp_port($1)
38051 ')
38052
38053 ########################################
38054 ## <summary>
38055 -## Bind TCP sockets to the sixxsconfig port.
38056 +## Bind TCP sockets to the snmp port.
38057 ## </summary>
38058 ## <param name="domain">
38059 ## <summary>
38060 @@ -79051,18 +82152,18 @@ interface(`corenet_dontaudit_udp_sendrecv_sixxsconfig_port',`
38061 ## </param>
38062 ## <infoflow type="none"/>
38063 #
38064 -interface(`corenet_tcp_bind_sixxsconfig_port',`
38065 +interface(`corenet_tcp_bind_snmp_port',`
38066 gen_require(`
38067 - type sixxsconfig_port_t;
38068 + type snmp_port_t;
38069 ')
38070
38071 - allow $1 sixxsconfig_port_t:tcp_socket name_bind;
38072 -
38073 + allow $1 snmp_port_t:tcp_socket name_bind;
38074 + allow $1 self:capability net_bind_service;
38075 ')
38076
38077 ########################################
38078 ## <summary>
38079 -## Bind UDP sockets to the sixxsconfig port.
38080 +## Bind UDP sockets to the snmp port.
38081 ## </summary>
38082 ## <param name="domain">
38083 ## <summary>
38084 @@ -79071,18 +82172,18 @@ interface(`corenet_tcp_bind_sixxsconfig_port',`
38085 ## </param>
38086 ## <infoflow type="none"/>
38087 #
38088 -interface(`corenet_udp_bind_sixxsconfig_port',`
38089 +interface(`corenet_udp_bind_snmp_port',`
38090 gen_require(`
38091 - type sixxsconfig_port_t;
38092 + type snmp_port_t;
38093 ')
38094
38095 - allow $1 sixxsconfig_port_t:udp_socket name_bind;
38096 -
38097 + allow $1 snmp_port_t:udp_socket name_bind;
38098 + allow $1 self:capability net_bind_service;
38099 ')
38100
38101 ########################################
38102 ## <summary>
38103 -## Make a TCP connection to the sixxsconfig port.
38104 +## Make a TCP connection to the snmp port.
38105 ## </summary>
38106 ## <param name="domain">
38107 ## <summary>
38108 @@ -79090,18 +82191,18 @@ interface(`corenet_udp_bind_sixxsconfig_port',`
38109 ## </summary>
38110 ## </param>
38111 #
38112 -interface(`corenet_tcp_connect_sixxsconfig_port',`
38113 +interface(`corenet_tcp_connect_snmp_port',`
38114 gen_require(`
38115 - type sixxsconfig_port_t;
38116 + type snmp_port_t;
38117 ')
38118
38119 - allow $1 sixxsconfig_port_t:tcp_socket name_connect;
38120 + allow $1 snmp_port_t:tcp_socket name_connect;
38121 ')
38122
38123
38124 ########################################
38125 ## <summary>
38126 -## Send sixxsconfig_client packets.
38127 +## Send snmp_client packets.
38128 ## </summary>
38129 ## <param name="domain">
38130 ## <summary>
38131 @@ -79110,17 +82211,17 @@ interface(`corenet_tcp_connect_sixxsconfig_port',`
38132 ## </param>
38133 ## <infoflow type="write" weight="10"/>
38134 #
38135 -interface(`corenet_send_sixxsconfig_client_packets',`
38136 +interface(`corenet_send_snmp_client_packets',`
38137 gen_require(`
38138 - type sixxsconfig_client_packet_t;
38139 + type snmp_client_packet_t;
38140 ')
38141
38142 - allow $1 sixxsconfig_client_packet_t:packet send;
38143 + allow $1 snmp_client_packet_t:packet send;
38144 ')
38145
38146 ########################################
38147 ## <summary>
38148 -## Do not audit attempts to send sixxsconfig_client packets.
38149 +## Do not audit attempts to send snmp_client packets.
38150 ## </summary>
38151 ## <param name="domain">
38152 ## <summary>
38153 @@ -79129,17 +82230,17 @@ interface(`corenet_send_sixxsconfig_client_packets',`
38154 ## </param>
38155 ## <infoflow type="none"/>
38156 #
38157 -interface(`corenet_dontaudit_send_sixxsconfig_client_packets',`
38158 +interface(`corenet_dontaudit_send_snmp_client_packets',`
38159 gen_require(`
38160 - type sixxsconfig_client_packet_t;
38161 + type snmp_client_packet_t;
38162 ')
38163
38164 - dontaudit $1 sixxsconfig_client_packet_t:packet send;
38165 + dontaudit $1 snmp_client_packet_t:packet send;
38166 ')
38167
38168 ########################################
38169 ## <summary>
38170 -## Receive sixxsconfig_client packets.
38171 +## Receive snmp_client packets.
38172 ## </summary>
38173 ## <param name="domain">
38174 ## <summary>
38175 @@ -79148,17 +82249,17 @@ interface(`corenet_dontaudit_send_sixxsconfig_client_packets',`
38176 ## </param>
38177 ## <infoflow type="read" weight="10"/>
38178 #
38179 -interface(`corenet_receive_sixxsconfig_client_packets',`
38180 +interface(`corenet_receive_snmp_client_packets',`
38181 gen_require(`
38182 - type sixxsconfig_client_packet_t;
38183 + type snmp_client_packet_t;
38184 ')
38185
38186 - allow $1 sixxsconfig_client_packet_t:packet recv;
38187 + allow $1 snmp_client_packet_t:packet recv;
38188 ')
38189
38190 ########################################
38191 ## <summary>
38192 -## Do not audit attempts to receive sixxsconfig_client packets.
38193 +## Do not audit attempts to receive snmp_client packets.
38194 ## </summary>
38195 ## <param name="domain">
38196 ## <summary>
38197 @@ -79167,17 +82268,17 @@ interface(`corenet_receive_sixxsconfig_client_packets',`
38198 ## </param>
38199 ## <infoflow type="none"/>
38200 #
38201 -interface(`corenet_dontaudit_receive_sixxsconfig_client_packets',`
38202 +interface(`corenet_dontaudit_receive_snmp_client_packets',`
38203 gen_require(`
38204 - type sixxsconfig_client_packet_t;
38205 + type snmp_client_packet_t;
38206 ')
38207
38208 - dontaudit $1 sixxsconfig_client_packet_t:packet recv;
38209 + dontaudit $1 snmp_client_packet_t:packet recv;
38210 ')
38211
38212 ########################################
38213 ## <summary>
38214 -## Send and receive sixxsconfig_client packets.
38215 +## Send and receive snmp_client packets.
38216 ## </summary>
38217 ## <param name="domain">
38218 ## <summary>
38219 @@ -79186,14 +82287,14 @@ interface(`corenet_dontaudit_receive_sixxsconfig_client_packets',`
38220 ## </param>
38221 ## <infoflow type="both" weight="10"/>
38222 #
38223 -interface(`corenet_sendrecv_sixxsconfig_client_packets',`
38224 - corenet_send_sixxsconfig_client_packets($1)
38225 - corenet_receive_sixxsconfig_client_packets($1)
38226 +interface(`corenet_sendrecv_snmp_client_packets',`
38227 + corenet_send_snmp_client_packets($1)
38228 + corenet_receive_snmp_client_packets($1)
38229 ')
38230
38231 ########################################
38232 ## <summary>
38233 -## Do not audit attempts to send and receive sixxsconfig_client packets.
38234 +## Do not audit attempts to send and receive snmp_client packets.
38235 ## </summary>
38236 ## <param name="domain">
38237 ## <summary>
38238 @@ -79202,14 +82303,14 @@ interface(`corenet_sendrecv_sixxsconfig_client_packets',`
38239 ## </param>
38240 ## <infoflow type="none"/>
38241 #
38242 -interface(`corenet_dontaudit_sendrecv_sixxsconfig_client_packets',`
38243 - corenet_dontaudit_send_sixxsconfig_client_packets($1)
38244 - corenet_dontaudit_receive_sixxsconfig_client_packets($1)
38245 +interface(`corenet_dontaudit_sendrecv_snmp_client_packets',`
38246 + corenet_dontaudit_send_snmp_client_packets($1)
38247 + corenet_dontaudit_receive_snmp_client_packets($1)
38248 ')
38249
38250 ########################################
38251 ## <summary>
38252 -## Relabel packets to sixxsconfig_client the packet type.
38253 +## Relabel packets to snmp_client the packet type.
38254 ## </summary>
38255 ## <param name="domain">
38256 ## <summary>
38257 @@ -79217,18 +82318,18 @@ interface(`corenet_dontaudit_sendrecv_sixxsconfig_client_packets',`
38258 ## </summary>
38259 ## </param>
38260 #
38261 -interface(`corenet_relabelto_sixxsconfig_client_packets',`
38262 +interface(`corenet_relabelto_snmp_client_packets',`
38263 gen_require(`
38264 - type sixxsconfig_client_packet_t;
38265 + type snmp_client_packet_t;
38266 ')
38267
38268 - allow $1 sixxsconfig_client_packet_t:packet relabelto;
38269 + allow $1 snmp_client_packet_t:packet relabelto;
38270 ')
38271
38272
38273 ########################################
38274 ## <summary>
38275 -## Send sixxsconfig_server packets.
38276 +## Send snmp_server packets.
38277 ## </summary>
38278 ## <param name="domain">
38279 ## <summary>
38280 @@ -79237,17 +82338,17 @@ interface(`corenet_relabelto_sixxsconfig_client_packets',`
38281 ## </param>
38282 ## <infoflow type="write" weight="10"/>
38283 #
38284 -interface(`corenet_send_sixxsconfig_server_packets',`
38285 +interface(`corenet_send_snmp_server_packets',`
38286 gen_require(`
38287 - type sixxsconfig_server_packet_t;
38288 + type snmp_server_packet_t;
38289 ')
38290
38291 - allow $1 sixxsconfig_server_packet_t:packet send;
38292 + allow $1 snmp_server_packet_t:packet send;
38293 ')
38294
38295 ########################################
38296 ## <summary>
38297 -## Do not audit attempts to send sixxsconfig_server packets.
38298 +## Do not audit attempts to send snmp_server packets.
38299 ## </summary>
38300 ## <param name="domain">
38301 ## <summary>
38302 @@ -79256,17 +82357,17 @@ interface(`corenet_send_sixxsconfig_server_packets',`
38303 ## </param>
38304 ## <infoflow type="none"/>
38305 #
38306 -interface(`corenet_dontaudit_send_sixxsconfig_server_packets',`
38307 +interface(`corenet_dontaudit_send_snmp_server_packets',`
38308 gen_require(`
38309 - type sixxsconfig_server_packet_t;
38310 + type snmp_server_packet_t;
38311 ')
38312
38313 - dontaudit $1 sixxsconfig_server_packet_t:packet send;
38314 + dontaudit $1 snmp_server_packet_t:packet send;
38315 ')
38316
38317 ########################################
38318 ## <summary>
38319 -## Receive sixxsconfig_server packets.
38320 +## Receive snmp_server packets.
38321 ## </summary>
38322 ## <param name="domain">
38323 ## <summary>
38324 @@ -79275,17 +82376,17 @@ interface(`corenet_dontaudit_send_sixxsconfig_server_packets',`
38325 ## </param>
38326 ## <infoflow type="read" weight="10"/>
38327 #
38328 -interface(`corenet_receive_sixxsconfig_server_packets',`
38329 +interface(`corenet_receive_snmp_server_packets',`
38330 gen_require(`
38331 - type sixxsconfig_server_packet_t;
38332 + type snmp_server_packet_t;
38333 ')
38334
38335 - allow $1 sixxsconfig_server_packet_t:packet recv;
38336 + allow $1 snmp_server_packet_t:packet recv;
38337 ')
38338
38339 ########################################
38340 ## <summary>
38341 -## Do not audit attempts to receive sixxsconfig_server packets.
38342 +## Do not audit attempts to receive snmp_server packets.
38343 ## </summary>
38344 ## <param name="domain">
38345 ## <summary>
38346 @@ -79294,17 +82395,17 @@ interface(`corenet_receive_sixxsconfig_server_packets',`
38347 ## </param>
38348 ## <infoflow type="none"/>
38349 #
38350 -interface(`corenet_dontaudit_receive_sixxsconfig_server_packets',`
38351 +interface(`corenet_dontaudit_receive_snmp_server_packets',`
38352 gen_require(`
38353 - type sixxsconfig_server_packet_t;
38354 + type snmp_server_packet_t;
38355 ')
38356
38357 - dontaudit $1 sixxsconfig_server_packet_t:packet recv;
38358 + dontaudit $1 snmp_server_packet_t:packet recv;
38359 ')
38360
38361 ########################################
38362 ## <summary>
38363 -## Send and receive sixxsconfig_server packets.
38364 +## Send and receive snmp_server packets.
38365 ## </summary>
38366 ## <param name="domain">
38367 ## <summary>
38368 @@ -79313,14 +82414,14 @@ interface(`corenet_dontaudit_receive_sixxsconfig_server_packets',`
38369 ## </param>
38370 ## <infoflow type="both" weight="10"/>
38371 #
38372 -interface(`corenet_sendrecv_sixxsconfig_server_packets',`
38373 - corenet_send_sixxsconfig_server_packets($1)
38374 - corenet_receive_sixxsconfig_server_packets($1)
38375 +interface(`corenet_sendrecv_snmp_server_packets',`
38376 + corenet_send_snmp_server_packets($1)
38377 + corenet_receive_snmp_server_packets($1)
38378 ')
38379
38380 ########################################
38381 ## <summary>
38382 -## Do not audit attempts to send and receive sixxsconfig_server packets.
38383 +## Do not audit attempts to send and receive snmp_server packets.
38384 ## </summary>
38385 ## <param name="domain">
38386 ## <summary>
38387 @@ -79329,14 +82430,14 @@ interface(`corenet_sendrecv_sixxsconfig_server_packets',`
38388 ## </param>
38389 ## <infoflow type="none"/>
38390 #
38391 -interface(`corenet_dontaudit_sendrecv_sixxsconfig_server_packets',`
38392 - corenet_dontaudit_send_sixxsconfig_server_packets($1)
38393 - corenet_dontaudit_receive_sixxsconfig_server_packets($1)
38394 +interface(`corenet_dontaudit_sendrecv_snmp_server_packets',`
38395 + corenet_dontaudit_send_snmp_server_packets($1)
38396 + corenet_dontaudit_receive_snmp_server_packets($1)
38397 ')
38398
38399 ########################################
38400 ## <summary>
38401 -## Relabel packets to sixxsconfig_server the packet type.
38402 +## Relabel packets to snmp_server the packet type.
38403 ## </summary>
38404 ## <param name="domain">
38405 ## <summary>
38406 @@ -79344,12 +82445,12 @@ interface(`corenet_dontaudit_sendrecv_sixxsconfig_server_packets',`
38407 ## </summary>
38408 ## </param>
38409 #
38410 -interface(`corenet_relabelto_sixxsconfig_server_packets',`
38411 +interface(`corenet_relabelto_snmp_server_packets',`
38412 gen_require(`
38413 - type sixxsconfig_server_packet_t;
38414 + type snmp_server_packet_t;
38415 ')
38416
38417 - allow $1 sixxsconfig_server_packet_t:packet relabelto;
38418 + allow $1 snmp_server_packet_t:packet relabelto;
38419 ')
38420
38421
38422 @@ -79357,7 +82458,7 @@ interface(`corenet_relabelto_sixxsconfig_server_packets',`
38423
38424 ########################################
38425 ## <summary>
38426 -## Send and receive TCP traffic on the smbd port.
38427 +## Send and receive TCP traffic on the socks port.
38428 ## </summary>
38429 ## <param name="domain">
38430 ## <summary>
38431 @@ -79366,17 +82467,17 @@ interface(`corenet_relabelto_sixxsconfig_server_packets',`
38432 ## </param>
38433 ## <infoflow type="both" weight="10"/>
38434 #
38435 -interface(`corenet_tcp_sendrecv_smbd_port',`
38436 +interface(`corenet_tcp_sendrecv_socks_port',`
38437 gen_require(`
38438 - type smbd_port_t;
38439 + type socks_port_t;
38440 ')
38441
38442 - allow $1 smbd_port_t:tcp_socket { send_msg recv_msg };
38443 + allow $1 socks_port_t:tcp_socket { send_msg recv_msg };
38444 ')
38445
38446 ########################################
38447 ## <summary>
38448 -## Send UDP traffic on the smbd port.
38449 +## Send UDP traffic on the socks port.
38450 ## </summary>
38451 ## <param name="domain">
38452 ## <summary>
38453 @@ -79385,17 +82486,17 @@ interface(`corenet_tcp_sendrecv_smbd_port',`
38454 ## </param>
38455 ## <infoflow type="write" weight="10"/>
38456 #
38457 -interface(`corenet_udp_send_smbd_port',`
38458 +interface(`corenet_udp_send_socks_port',`
38459 gen_require(`
38460 - type smbd_port_t;
38461 + type socks_port_t;
38462 ')
38463
38464 - allow $1 smbd_port_t:udp_socket send_msg;
38465 + allow $1 socks_port_t:udp_socket send_msg;
38466 ')
38467
38468 ########################################
38469 ## <summary>
38470 -## Do not audit attempts to send UDP traffic on the smbd port.
38471 +## Do not audit attempts to send UDP traffic on the socks port.
38472 ## </summary>
38473 ## <param name="domain">
38474 ## <summary>
38475 @@ -79404,17 +82505,17 @@ interface(`corenet_udp_send_smbd_port',`
38476 ## </param>
38477 ## <infoflow type="none"/>
38478 #
38479 -interface(`corenet_dontaudit_udp_send_smbd_port',`
38480 +interface(`corenet_dontaudit_udp_send_socks_port',`
38481 gen_require(`
38482 - type smbd_port_t;
38483 + type socks_port_t;
38484 ')
38485
38486 - dontaudit $1 smbd_port_t:udp_socket send_msg;
38487 + dontaudit $1 socks_port_t:udp_socket send_msg;
38488 ')
38489
38490 ########################################
38491 ## <summary>
38492 -## Receive UDP traffic on the smbd port.
38493 +## Receive UDP traffic on the socks port.
38494 ## </summary>
38495 ## <param name="domain">
38496 ## <summary>
38497 @@ -79423,17 +82524,17 @@ interface(`corenet_dontaudit_udp_send_smbd_port',`
38498 ## </param>
38499 ## <infoflow type="read" weight="10"/>
38500 #
38501 -interface(`corenet_udp_receive_smbd_port',`
38502 +interface(`corenet_udp_receive_socks_port',`
38503 gen_require(`
38504 - type smbd_port_t;
38505 + type socks_port_t;
38506 ')
38507
38508 - allow $1 smbd_port_t:udp_socket recv_msg;
38509 + allow $1 socks_port_t:udp_socket recv_msg;
38510 ')
38511
38512 ########################################
38513 ## <summary>
38514 -## Do not audit attempts to receive UDP traffic on the smbd port.
38515 +## Do not audit attempts to receive UDP traffic on the socks port.
38516 ## </summary>
38517 ## <param name="domain">
38518 ## <summary>
38519 @@ -79442,17 +82543,17 @@ interface(`corenet_udp_receive_smbd_port',`
38520 ## </param>
38521 ## <infoflow type="none"/>
38522 #
38523 -interface(`corenet_dontaudit_udp_receive_smbd_port',`
38524 +interface(`corenet_dontaudit_udp_receive_socks_port',`
38525 gen_require(`
38526 - type smbd_port_t;
38527 + type socks_port_t;
38528 ')
38529
38530 - dontaudit $1 smbd_port_t:udp_socket recv_msg;
38531 + dontaudit $1 socks_port_t:udp_socket recv_msg;
38532 ')
38533
38534 ########################################
38535 ## <summary>
38536 -## Send and receive UDP traffic on the smbd port.
38537 +## Send and receive UDP traffic on the socks port.
38538 ## </summary>
38539 ## <param name="domain">
38540 ## <summary>
38541 @@ -79461,15 +82562,15 @@ interface(`corenet_dontaudit_udp_receive_smbd_port',`
38542 ## </param>
38543 ## <infoflow type="both" weight="10"/>
38544 #
38545 -interface(`corenet_udp_sendrecv_smbd_port',`
38546 - corenet_udp_send_smbd_port($1)
38547 - corenet_udp_receive_smbd_port($1)
38548 +interface(`corenet_udp_sendrecv_socks_port',`
38549 + corenet_udp_send_socks_port($1)
38550 + corenet_udp_receive_socks_port($1)
38551 ')
38552
38553 ########################################
38554 ## <summary>
38555 ## Do not audit attempts to send and receive
38556 -## UDP traffic on the smbd port.
38557 +## UDP traffic on the socks port.
38558 ## </summary>
38559 ## <param name="domain">
38560 ## <summary>
38561 @@ -79478,14 +82579,14 @@ interface(`corenet_udp_sendrecv_smbd_port',`
38562 ## </param>
38563 ## <infoflow type="none"/>
38564 #
38565 -interface(`corenet_dontaudit_udp_sendrecv_smbd_port',`
38566 - corenet_dontaudit_udp_send_smbd_port($1)
38567 - corenet_dontaudit_udp_receive_smbd_port($1)
38568 +interface(`corenet_dontaudit_udp_sendrecv_socks_port',`
38569 + corenet_dontaudit_udp_send_socks_port($1)
38570 + corenet_dontaudit_udp_receive_socks_port($1)
38571 ')
38572
38573 ########################################
38574 ## <summary>
38575 -## Bind TCP sockets to the smbd port.
38576 +## Bind TCP sockets to the socks port.
38577 ## </summary>
38578 ## <param name="domain">
38579 ## <summary>
38580 @@ -79494,18 +82595,18 @@ interface(`corenet_dontaudit_udp_sendrecv_smbd_port',`
38581 ## </param>
38582 ## <infoflow type="none"/>
38583 #
38584 -interface(`corenet_tcp_bind_smbd_port',`
38585 +interface(`corenet_tcp_bind_socks_port',`
38586 gen_require(`
38587 - type smbd_port_t;
38588 + type socks_port_t;
38589 ')
38590
38591 - allow $1 smbd_port_t:tcp_socket name_bind;
38592 - allow $1 self:capability net_bind_service;
38593 + allow $1 socks_port_t:tcp_socket name_bind;
38594 +
38595 ')
38596
38597 ########################################
38598 ## <summary>
38599 -## Bind UDP sockets to the smbd port.
38600 +## Bind UDP sockets to the socks port.
38601 ## </summary>
38602 ## <param name="domain">
38603 ## <summary>
38604 @@ -79514,18 +82615,18 @@ interface(`corenet_tcp_bind_smbd_port',`
38605 ## </param>
38606 ## <infoflow type="none"/>
38607 #
38608 -interface(`corenet_udp_bind_smbd_port',`
38609 +interface(`corenet_udp_bind_socks_port',`
38610 gen_require(`
38611 - type smbd_port_t;
38612 + type socks_port_t;
38613 ')
38614
38615 - allow $1 smbd_port_t:udp_socket name_bind;
38616 - allow $1 self:capability net_bind_service;
38617 + allow $1 socks_port_t:udp_socket name_bind;
38618 +
38619 ')
38620
38621 ########################################
38622 ## <summary>
38623 -## Make a TCP connection to the smbd port.
38624 +## Make a TCP connection to the socks port.
38625 ## </summary>
38626 ## <param name="domain">
38627 ## <summary>
38628 @@ -79533,18 +82634,18 @@ interface(`corenet_udp_bind_smbd_port',`
38629 ## </summary>
38630 ## </param>
38631 #
38632 -interface(`corenet_tcp_connect_smbd_port',`
38633 +interface(`corenet_tcp_connect_socks_port',`
38634 gen_require(`
38635 - type smbd_port_t;
38636 + type socks_port_t;
38637 ')
38638
38639 - allow $1 smbd_port_t:tcp_socket name_connect;
38640 + allow $1 socks_port_t:tcp_socket name_connect;
38641 ')
38642
38643
38644 ########################################
38645 ## <summary>
38646 -## Send smbd_client packets.
38647 +## Send socks_client packets.
38648 ## </summary>
38649 ## <param name="domain">
38650 ## <summary>
38651 @@ -79553,17 +82654,17 @@ interface(`corenet_tcp_connect_smbd_port',`
38652 ## </param>
38653 ## <infoflow type="write" weight="10"/>
38654 #
38655 -interface(`corenet_send_smbd_client_packets',`
38656 +interface(`corenet_send_socks_client_packets',`
38657 gen_require(`
38658 - type smbd_client_packet_t;
38659 + type socks_client_packet_t;
38660 ')
38661
38662 - allow $1 smbd_client_packet_t:packet send;
38663 + allow $1 socks_client_packet_t:packet send;
38664 ')
38665
38666 ########################################
38667 ## <summary>
38668 -## Do not audit attempts to send smbd_client packets.
38669 +## Do not audit attempts to send socks_client packets.
38670 ## </summary>
38671 ## <param name="domain">
38672 ## <summary>
38673 @@ -79572,17 +82673,17 @@ interface(`corenet_send_smbd_client_packets',`
38674 ## </param>
38675 ## <infoflow type="none"/>
38676 #
38677 -interface(`corenet_dontaudit_send_smbd_client_packets',`
38678 +interface(`corenet_dontaudit_send_socks_client_packets',`
38679 gen_require(`
38680 - type smbd_client_packet_t;
38681 + type socks_client_packet_t;
38682 ')
38683
38684 - dontaudit $1 smbd_client_packet_t:packet send;
38685 + dontaudit $1 socks_client_packet_t:packet send;
38686 ')
38687
38688 ########################################
38689 ## <summary>
38690 -## Receive smbd_client packets.
38691 +## Receive socks_client packets.
38692 ## </summary>
38693 ## <param name="domain">
38694 ## <summary>
38695 @@ -79591,17 +82692,17 @@ interface(`corenet_dontaudit_send_smbd_client_packets',`
38696 ## </param>
38697 ## <infoflow type="read" weight="10"/>
38698 #
38699 -interface(`corenet_receive_smbd_client_packets',`
38700 +interface(`corenet_receive_socks_client_packets',`
38701 gen_require(`
38702 - type smbd_client_packet_t;
38703 + type socks_client_packet_t;
38704 ')
38705
38706 - allow $1 smbd_client_packet_t:packet recv;
38707 + allow $1 socks_client_packet_t:packet recv;
38708 ')
38709
38710 ########################################
38711 ## <summary>
38712 -## Do not audit attempts to receive smbd_client packets.
38713 +## Do not audit attempts to receive socks_client packets.
38714 ## </summary>
38715 ## <param name="domain">
38716 ## <summary>
38717 @@ -79610,17 +82711,17 @@ interface(`corenet_receive_smbd_client_packets',`
38718 ## </param>
38719 ## <infoflow type="none"/>
38720 #
38721 -interface(`corenet_dontaudit_receive_smbd_client_packets',`
38722 +interface(`corenet_dontaudit_receive_socks_client_packets',`
38723 gen_require(`
38724 - type smbd_client_packet_t;
38725 + type socks_client_packet_t;
38726 ')
38727
38728 - dontaudit $1 smbd_client_packet_t:packet recv;
38729 + dontaudit $1 socks_client_packet_t:packet recv;
38730 ')
38731
38732 ########################################
38733 ## <summary>
38734 -## Send and receive smbd_client packets.
38735 +## Send and receive socks_client packets.
38736 ## </summary>
38737 ## <param name="domain">
38738 ## <summary>
38739 @@ -79629,14 +82730,14 @@ interface(`corenet_dontaudit_receive_smbd_client_packets',`
38740 ## </param>
38741 ## <infoflow type="both" weight="10"/>
38742 #
38743 -interface(`corenet_sendrecv_smbd_client_packets',`
38744 - corenet_send_smbd_client_packets($1)
38745 - corenet_receive_smbd_client_packets($1)
38746 +interface(`corenet_sendrecv_socks_client_packets',`
38747 + corenet_send_socks_client_packets($1)
38748 + corenet_receive_socks_client_packets($1)
38749 ')
38750
38751 ########################################
38752 ## <summary>
38753 -## Do not audit attempts to send and receive smbd_client packets.
38754 +## Do not audit attempts to send and receive socks_client packets.
38755 ## </summary>
38756 ## <param name="domain">
38757 ## <summary>
38758 @@ -79645,14 +82746,14 @@ interface(`corenet_sendrecv_smbd_client_packets',`
38759 ## </param>
38760 ## <infoflow type="none"/>
38761 #
38762 -interface(`corenet_dontaudit_sendrecv_smbd_client_packets',`
38763 - corenet_dontaudit_send_smbd_client_packets($1)
38764 - corenet_dontaudit_receive_smbd_client_packets($1)
38765 +interface(`corenet_dontaudit_sendrecv_socks_client_packets',`
38766 + corenet_dontaudit_send_socks_client_packets($1)
38767 + corenet_dontaudit_receive_socks_client_packets($1)
38768 ')
38769
38770 ########################################
38771 ## <summary>
38772 -## Relabel packets to smbd_client the packet type.
38773 +## Relabel packets to socks_client the packet type.
38774 ## </summary>
38775 ## <param name="domain">
38776 ## <summary>
38777 @@ -79660,18 +82761,18 @@ interface(`corenet_dontaudit_sendrecv_smbd_client_packets',`
38778 ## </summary>
38779 ## </param>
38780 #
38781 -interface(`corenet_relabelto_smbd_client_packets',`
38782 +interface(`corenet_relabelto_socks_client_packets',`
38783 gen_require(`
38784 - type smbd_client_packet_t;
38785 + type socks_client_packet_t;
38786 ')
38787
38788 - allow $1 smbd_client_packet_t:packet relabelto;
38789 + allow $1 socks_client_packet_t:packet relabelto;
38790 ')
38791
38792
38793 ########################################
38794 ## <summary>
38795 -## Send smbd_server packets.
38796 +## Send socks_server packets.
38797 ## </summary>
38798 ## <param name="domain">
38799 ## <summary>
38800 @@ -79680,17 +82781,17 @@ interface(`corenet_relabelto_smbd_client_packets',`
38801 ## </param>
38802 ## <infoflow type="write" weight="10"/>
38803 #
38804 -interface(`corenet_send_smbd_server_packets',`
38805 +interface(`corenet_send_socks_server_packets',`
38806 gen_require(`
38807 - type smbd_server_packet_t;
38808 + type socks_server_packet_t;
38809 ')
38810
38811 - allow $1 smbd_server_packet_t:packet send;
38812 + allow $1 socks_server_packet_t:packet send;
38813 ')
38814
38815 ########################################
38816 ## <summary>
38817 -## Do not audit attempts to send smbd_server packets.
38818 +## Do not audit attempts to send socks_server packets.
38819 ## </summary>
38820 ## <param name="domain">
38821 ## <summary>
38822 @@ -79699,17 +82800,17 @@ interface(`corenet_send_smbd_server_packets',`
38823 ## </param>
38824 ## <infoflow type="none"/>
38825 #
38826 -interface(`corenet_dontaudit_send_smbd_server_packets',`
38827 +interface(`corenet_dontaudit_send_socks_server_packets',`
38828 gen_require(`
38829 - type smbd_server_packet_t;
38830 + type socks_server_packet_t;
38831 ')
38832
38833 - dontaudit $1 smbd_server_packet_t:packet send;
38834 + dontaudit $1 socks_server_packet_t:packet send;
38835 ')
38836
38837 ########################################
38838 ## <summary>
38839 -## Receive smbd_server packets.
38840 +## Receive socks_server packets.
38841 ## </summary>
38842 ## <param name="domain">
38843 ## <summary>
38844 @@ -79718,17 +82819,17 @@ interface(`corenet_dontaudit_send_smbd_server_packets',`
38845 ## </param>
38846 ## <infoflow type="read" weight="10"/>
38847 #
38848 -interface(`corenet_receive_smbd_server_packets',`
38849 +interface(`corenet_receive_socks_server_packets',`
38850 gen_require(`
38851 - type smbd_server_packet_t;
38852 + type socks_server_packet_t;
38853 ')
38854
38855 - allow $1 smbd_server_packet_t:packet recv;
38856 + allow $1 socks_server_packet_t:packet recv;
38857 ')
38858
38859 ########################################
38860 ## <summary>
38861 -## Do not audit attempts to receive smbd_server packets.
38862 +## Do not audit attempts to receive socks_server packets.
38863 ## </summary>
38864 ## <param name="domain">
38865 ## <summary>
38866 @@ -79737,17 +82838,17 @@ interface(`corenet_receive_smbd_server_packets',`
38867 ## </param>
38868 ## <infoflow type="none"/>
38869 #
38870 -interface(`corenet_dontaudit_receive_smbd_server_packets',`
38871 +interface(`corenet_dontaudit_receive_socks_server_packets',`
38872 gen_require(`
38873 - type smbd_server_packet_t;
38874 + type socks_server_packet_t;
38875 ')
38876
38877 - dontaudit $1 smbd_server_packet_t:packet recv;
38878 + dontaudit $1 socks_server_packet_t:packet recv;
38879 ')
38880
38881 ########################################
38882 ## <summary>
38883 -## Send and receive smbd_server packets.
38884 +## Send and receive socks_server packets.
38885 ## </summary>
38886 ## <param name="domain">
38887 ## <summary>
38888 @@ -79756,14 +82857,14 @@ interface(`corenet_dontaudit_receive_smbd_server_packets',`
38889 ## </param>
38890 ## <infoflow type="both" weight="10"/>
38891 #
38892 -interface(`corenet_sendrecv_smbd_server_packets',`
38893 - corenet_send_smbd_server_packets($1)
38894 - corenet_receive_smbd_server_packets($1)
38895 +interface(`corenet_sendrecv_socks_server_packets',`
38896 + corenet_send_socks_server_packets($1)
38897 + corenet_receive_socks_server_packets($1)
38898 ')
38899
38900 ########################################
38901 ## <summary>
38902 -## Do not audit attempts to send and receive smbd_server packets.
38903 +## Do not audit attempts to send and receive socks_server packets.
38904 ## </summary>
38905 ## <param name="domain">
38906 ## <summary>
38907 @@ -79772,14 +82873,14 @@ interface(`corenet_sendrecv_smbd_server_packets',`
38908 ## </param>
38909 ## <infoflow type="none"/>
38910 #
38911 -interface(`corenet_dontaudit_sendrecv_smbd_server_packets',`
38912 - corenet_dontaudit_send_smbd_server_packets($1)
38913 - corenet_dontaudit_receive_smbd_server_packets($1)
38914 +interface(`corenet_dontaudit_sendrecv_socks_server_packets',`
38915 + corenet_dontaudit_send_socks_server_packets($1)
38916 + corenet_dontaudit_receive_socks_server_packets($1)
38917 ')
38918
38919 ########################################
38920 ## <summary>
38921 -## Relabel packets to smbd_server the packet type.
38922 +## Relabel packets to socks_server the packet type.
38923 ## </summary>
38924 ## <param name="domain">
38925 ## <summary>
38926 @@ -79787,20 +82888,20 @@ interface(`corenet_dontaudit_sendrecv_smbd_server_packets',`
38927 ## </summary>
38928 ## </param>
38929 #
38930 -interface(`corenet_relabelto_smbd_server_packets',`
38931 +interface(`corenet_relabelto_socks_server_packets',`
38932 gen_require(`
38933 - type smbd_server_packet_t;
38934 + type socks_server_packet_t;
38935 ')
38936
38937 - allow $1 smbd_server_packet_t:packet relabelto;
38938 + allow $1 socks_server_packet_t:packet relabelto;
38939 ')
38940
38941 -
38942 + # no defined portcon
38943
38944
38945 ########################################
38946 ## <summary>
38947 -## Send and receive TCP traffic on the smtp port.
38948 +## Send and receive TCP traffic on the soundd port.
38949 ## </summary>
38950 ## <param name="domain">
38951 ## <summary>
38952 @@ -79809,17 +82910,17 @@ interface(`corenet_relabelto_smbd_server_packets',`
38953 ## </param>
38954 ## <infoflow type="both" weight="10"/>
38955 #
38956 -interface(`corenet_tcp_sendrecv_smtp_port',`
38957 +interface(`corenet_tcp_sendrecv_soundd_port',`
38958 gen_require(`
38959 - type smtp_port_t;
38960 + type soundd_port_t;
38961 ')
38962
38963 - allow $1 smtp_port_t:tcp_socket { send_msg recv_msg };
38964 + allow $1 soundd_port_t:tcp_socket { send_msg recv_msg };
38965 ')
38966
38967 ########################################
38968 ## <summary>
38969 -## Send UDP traffic on the smtp port.
38970 +## Send UDP traffic on the soundd port.
38971 ## </summary>
38972 ## <param name="domain">
38973 ## <summary>
38974 @@ -79828,17 +82929,17 @@ interface(`corenet_tcp_sendrecv_smtp_port',`
38975 ## </param>
38976 ## <infoflow type="write" weight="10"/>
38977 #
38978 -interface(`corenet_udp_send_smtp_port',`
38979 +interface(`corenet_udp_send_soundd_port',`
38980 gen_require(`
38981 - type smtp_port_t;
38982 + type soundd_port_t;
38983 ')
38984
38985 - allow $1 smtp_port_t:udp_socket send_msg;
38986 + allow $1 soundd_port_t:udp_socket send_msg;
38987 ')
38988
38989 ########################################
38990 ## <summary>
38991 -## Do not audit attempts to send UDP traffic on the smtp port.
38992 +## Do not audit attempts to send UDP traffic on the soundd port.
38993 ## </summary>
38994 ## <param name="domain">
38995 ## <summary>
38996 @@ -79847,17 +82948,17 @@ interface(`corenet_udp_send_smtp_port',`
38997 ## </param>
38998 ## <infoflow type="none"/>
38999 #
39000 -interface(`corenet_dontaudit_udp_send_smtp_port',`
39001 +interface(`corenet_dontaudit_udp_send_soundd_port',`
39002 gen_require(`
39003 - type smtp_port_t;
39004 + type soundd_port_t;
39005 ')
39006
39007 - dontaudit $1 smtp_port_t:udp_socket send_msg;
39008 + dontaudit $1 soundd_port_t:udp_socket send_msg;
39009 ')
39010
39011 ########################################
39012 ## <summary>
39013 -## Receive UDP traffic on the smtp port.
39014 +## Receive UDP traffic on the soundd port.
39015 ## </summary>
39016 ## <param name="domain">
39017 ## <summary>
39018 @@ -79866,17 +82967,17 @@ interface(`corenet_dontaudit_udp_send_smtp_port',`
39019 ## </param>
39020 ## <infoflow type="read" weight="10"/>
39021 #
39022 -interface(`corenet_udp_receive_smtp_port',`
39023 +interface(`corenet_udp_receive_soundd_port',`
39024 gen_require(`
39025 - type smtp_port_t;
39026 + type soundd_port_t;
39027 ')
39028
39029 - allow $1 smtp_port_t:udp_socket recv_msg;
39030 + allow $1 soundd_port_t:udp_socket recv_msg;
39031 ')
39032
39033 ########################################
39034 ## <summary>
39035 -## Do not audit attempts to receive UDP traffic on the smtp port.
39036 +## Do not audit attempts to receive UDP traffic on the soundd port.
39037 ## </summary>
39038 ## <param name="domain">
39039 ## <summary>
39040 @@ -79885,17 +82986,17 @@ interface(`corenet_udp_receive_smtp_port',`
39041 ## </param>
39042 ## <infoflow type="none"/>
39043 #
39044 -interface(`corenet_dontaudit_udp_receive_smtp_port',`
39045 +interface(`corenet_dontaudit_udp_receive_soundd_port',`
39046 gen_require(`
39047 - type smtp_port_t;
39048 + type soundd_port_t;
39049 ')
39050
39051 - dontaudit $1 smtp_port_t:udp_socket recv_msg;
39052 + dontaudit $1 soundd_port_t:udp_socket recv_msg;
39053 ')
39054
39055 ########################################
39056 ## <summary>
39057 -## Send and receive UDP traffic on the smtp port.
39058 +## Send and receive UDP traffic on the soundd port.
39059 ## </summary>
39060 ## <param name="domain">
39061 ## <summary>
39062 @@ -79904,15 +83005,15 @@ interface(`corenet_dontaudit_udp_receive_smtp_port',`
39063 ## </param>
39064 ## <infoflow type="both" weight="10"/>
39065 #
39066 -interface(`corenet_udp_sendrecv_smtp_port',`
39067 - corenet_udp_send_smtp_port($1)
39068 - corenet_udp_receive_smtp_port($1)
39069 +interface(`corenet_udp_sendrecv_soundd_port',`
39070 + corenet_udp_send_soundd_port($1)
39071 + corenet_udp_receive_soundd_port($1)
39072 ')
39073
39074 ########################################
39075 ## <summary>
39076 ## Do not audit attempts to send and receive
39077 -## UDP traffic on the smtp port.
39078 +## UDP traffic on the soundd port.
39079 ## </summary>
39080 ## <param name="domain">
39081 ## <summary>
39082 @@ -79921,14 +83022,14 @@ interface(`corenet_udp_sendrecv_smtp_port',`
39083 ## </param>
39084 ## <infoflow type="none"/>
39085 #
39086 -interface(`corenet_dontaudit_udp_sendrecv_smtp_port',`
39087 - corenet_dontaudit_udp_send_smtp_port($1)
39088 - corenet_dontaudit_udp_receive_smtp_port($1)
39089 +interface(`corenet_dontaudit_udp_sendrecv_soundd_port',`
39090 + corenet_dontaudit_udp_send_soundd_port($1)
39091 + corenet_dontaudit_udp_receive_soundd_port($1)
39092 ')
39093
39094 ########################################
39095 ## <summary>
39096 -## Bind TCP sockets to the smtp port.
39097 +## Bind TCP sockets to the soundd port.
39098 ## </summary>
39099 ## <param name="domain">
39100 ## <summary>
39101 @@ -79937,18 +83038,18 @@ interface(`corenet_dontaudit_udp_sendrecv_smtp_port',`
39102 ## </param>
39103 ## <infoflow type="none"/>
39104 #
39105 -interface(`corenet_tcp_bind_smtp_port',`
39106 +interface(`corenet_tcp_bind_soundd_port',`
39107 gen_require(`
39108 - type smtp_port_t;
39109 + type soundd_port_t;
39110 ')
39111
39112 - allow $1 smtp_port_t:tcp_socket name_bind;
39113 - allow $1 self:capability net_bind_service;
39114 + allow $1 soundd_port_t:tcp_socket name_bind;
39115 +
39116 ')
39117
39118 ########################################
39119 ## <summary>
39120 -## Bind UDP sockets to the smtp port.
39121 +## Bind UDP sockets to the soundd port.
39122 ## </summary>
39123 ## <param name="domain">
39124 ## <summary>
39125 @@ -79957,18 +83058,18 @@ interface(`corenet_tcp_bind_smtp_port',`
39126 ## </param>
39127 ## <infoflow type="none"/>
39128 #
39129 -interface(`corenet_udp_bind_smtp_port',`
39130 +interface(`corenet_udp_bind_soundd_port',`
39131 gen_require(`
39132 - type smtp_port_t;
39133 + type soundd_port_t;
39134 ')
39135
39136 - allow $1 smtp_port_t:udp_socket name_bind;
39137 - allow $1 self:capability net_bind_service;
39138 + allow $1 soundd_port_t:udp_socket name_bind;
39139 +
39140 ')
39141
39142 ########################################
39143 ## <summary>
39144 -## Make a TCP connection to the smtp port.
39145 +## Make a TCP connection to the soundd port.
39146 ## </summary>
39147 ## <param name="domain">
39148 ## <summary>
39149 @@ -79976,18 +83077,18 @@ interface(`corenet_udp_bind_smtp_port',`
39150 ## </summary>
39151 ## </param>
39152 #
39153 -interface(`corenet_tcp_connect_smtp_port',`
39154 +interface(`corenet_tcp_connect_soundd_port',`
39155 gen_require(`
39156 - type smtp_port_t;
39157 + type soundd_port_t;
39158 ')
39159
39160 - allow $1 smtp_port_t:tcp_socket name_connect;
39161 + allow $1 soundd_port_t:tcp_socket name_connect;
39162 ')
39163
39164
39165 ########################################
39166 ## <summary>
39167 -## Send smtp_client packets.
39168 +## Send soundd_client packets.
39169 ## </summary>
39170 ## <param name="domain">
39171 ## <summary>
39172 @@ -79996,17 +83097,17 @@ interface(`corenet_tcp_connect_smtp_port',`
39173 ## </param>
39174 ## <infoflow type="write" weight="10"/>
39175 #
39176 -interface(`corenet_send_smtp_client_packets',`
39177 +interface(`corenet_send_soundd_client_packets',`
39178 gen_require(`
39179 - type smtp_client_packet_t;
39180 + type soundd_client_packet_t;
39181 ')
39182
39183 - allow $1 smtp_client_packet_t:packet send;
39184 + allow $1 soundd_client_packet_t:packet send;
39185 ')
39186
39187 ########################################
39188 ## <summary>
39189 -## Do not audit attempts to send smtp_client packets.
39190 +## Do not audit attempts to send soundd_client packets.
39191 ## </summary>
39192 ## <param name="domain">
39193 ## <summary>
39194 @@ -80015,17 +83116,17 @@ interface(`corenet_send_smtp_client_packets',`
39195 ## </param>
39196 ## <infoflow type="none"/>
39197 #
39198 -interface(`corenet_dontaudit_send_smtp_client_packets',`
39199 +interface(`corenet_dontaudit_send_soundd_client_packets',`
39200 gen_require(`
39201 - type smtp_client_packet_t;
39202 + type soundd_client_packet_t;
39203 ')
39204
39205 - dontaudit $1 smtp_client_packet_t:packet send;
39206 + dontaudit $1 soundd_client_packet_t:packet send;
39207 ')
39208
39209 ########################################
39210 ## <summary>
39211 -## Receive smtp_client packets.
39212 +## Receive soundd_client packets.
39213 ## </summary>
39214 ## <param name="domain">
39215 ## <summary>
39216 @@ -80034,17 +83135,17 @@ interface(`corenet_dontaudit_send_smtp_client_packets',`
39217 ## </param>
39218 ## <infoflow type="read" weight="10"/>
39219 #
39220 -interface(`corenet_receive_smtp_client_packets',`
39221 +interface(`corenet_receive_soundd_client_packets',`
39222 gen_require(`
39223 - type smtp_client_packet_t;
39224 + type soundd_client_packet_t;
39225 ')
39226
39227 - allow $1 smtp_client_packet_t:packet recv;
39228 + allow $1 soundd_client_packet_t:packet recv;
39229 ')
39230
39231 ########################################
39232 ## <summary>
39233 -## Do not audit attempts to receive smtp_client packets.
39234 +## Do not audit attempts to receive soundd_client packets.
39235 ## </summary>
39236 ## <param name="domain">
39237 ## <summary>
39238 @@ -80053,17 +83154,17 @@ interface(`corenet_receive_smtp_client_packets',`
39239 ## </param>
39240 ## <infoflow type="none"/>
39241 #
39242 -interface(`corenet_dontaudit_receive_smtp_client_packets',`
39243 +interface(`corenet_dontaudit_receive_soundd_client_packets',`
39244 gen_require(`
39245 - type smtp_client_packet_t;
39246 + type soundd_client_packet_t;
39247 ')
39248
39249 - dontaudit $1 smtp_client_packet_t:packet recv;
39250 + dontaudit $1 soundd_client_packet_t:packet recv;
39251 ')
39252
39253 ########################################
39254 ## <summary>
39255 -## Send and receive smtp_client packets.
39256 +## Send and receive soundd_client packets.
39257 ## </summary>
39258 ## <param name="domain">
39259 ## <summary>
39260 @@ -80072,14 +83173,14 @@ interface(`corenet_dontaudit_receive_smtp_client_packets',`
39261 ## </param>
39262 ## <infoflow type="both" weight="10"/>
39263 #
39264 -interface(`corenet_sendrecv_smtp_client_packets',`
39265 - corenet_send_smtp_client_packets($1)
39266 - corenet_receive_smtp_client_packets($1)
39267 +interface(`corenet_sendrecv_soundd_client_packets',`
39268 + corenet_send_soundd_client_packets($1)
39269 + corenet_receive_soundd_client_packets($1)
39270 ')
39271
39272 ########################################
39273 ## <summary>
39274 -## Do not audit attempts to send and receive smtp_client packets.
39275 +## Do not audit attempts to send and receive soundd_client packets.
39276 ## </summary>
39277 ## <param name="domain">
39278 ## <summary>
39279 @@ -80088,14 +83189,14 @@ interface(`corenet_sendrecv_smtp_client_packets',`
39280 ## </param>
39281 ## <infoflow type="none"/>
39282 #
39283 -interface(`corenet_dontaudit_sendrecv_smtp_client_packets',`
39284 - corenet_dontaudit_send_smtp_client_packets($1)
39285 - corenet_dontaudit_receive_smtp_client_packets($1)
39286 +interface(`corenet_dontaudit_sendrecv_soundd_client_packets',`
39287 + corenet_dontaudit_send_soundd_client_packets($1)
39288 + corenet_dontaudit_receive_soundd_client_packets($1)
39289 ')
39290
39291 ########################################
39292 ## <summary>
39293 -## Relabel packets to smtp_client the packet type.
39294 +## Relabel packets to soundd_client the packet type.
39295 ## </summary>
39296 ## <param name="domain">
39297 ## <summary>
39298 @@ -80103,18 +83204,18 @@ interface(`corenet_dontaudit_sendrecv_smtp_client_packets',`
39299 ## </summary>
39300 ## </param>
39301 #
39302 -interface(`corenet_relabelto_smtp_client_packets',`
39303 +interface(`corenet_relabelto_soundd_client_packets',`
39304 gen_require(`
39305 - type smtp_client_packet_t;
39306 + type soundd_client_packet_t;
39307 ')
39308
39309 - allow $1 smtp_client_packet_t:packet relabelto;
39310 + allow $1 soundd_client_packet_t:packet relabelto;
39311 ')
39312
39313
39314 ########################################
39315 ## <summary>
39316 -## Send smtp_server packets.
39317 +## Send soundd_server packets.
39318 ## </summary>
39319 ## <param name="domain">
39320 ## <summary>
39321 @@ -80123,17 +83224,17 @@ interface(`corenet_relabelto_smtp_client_packets',`
39322 ## </param>
39323 ## <infoflow type="write" weight="10"/>
39324 #
39325 -interface(`corenet_send_smtp_server_packets',`
39326 +interface(`corenet_send_soundd_server_packets',`
39327 gen_require(`
39328 - type smtp_server_packet_t;
39329 + type soundd_server_packet_t;
39330 ')
39331
39332 - allow $1 smtp_server_packet_t:packet send;
39333 + allow $1 soundd_server_packet_t:packet send;
39334 ')
39335
39336 ########################################
39337 ## <summary>
39338 -## Do not audit attempts to send smtp_server packets.
39339 +## Do not audit attempts to send soundd_server packets.
39340 ## </summary>
39341 ## <param name="domain">
39342 ## <summary>
39343 @@ -80142,17 +83243,17 @@ interface(`corenet_send_smtp_server_packets',`
39344 ## </param>
39345 ## <infoflow type="none"/>
39346 #
39347 -interface(`corenet_dontaudit_send_smtp_server_packets',`
39348 +interface(`corenet_dontaudit_send_soundd_server_packets',`
39349 gen_require(`
39350 - type smtp_server_packet_t;
39351 + type soundd_server_packet_t;
39352 ')
39353
39354 - dontaudit $1 smtp_server_packet_t:packet send;
39355 + dontaudit $1 soundd_server_packet_t:packet send;
39356 ')
39357
39358 ########################################
39359 ## <summary>
39360 -## Receive smtp_server packets.
39361 +## Receive soundd_server packets.
39362 ## </summary>
39363 ## <param name="domain">
39364 ## <summary>
39365 @@ -80161,17 +83262,17 @@ interface(`corenet_dontaudit_send_smtp_server_packets',`
39366 ## </param>
39367 ## <infoflow type="read" weight="10"/>
39368 #
39369 -interface(`corenet_receive_smtp_server_packets',`
39370 +interface(`corenet_receive_soundd_server_packets',`
39371 gen_require(`
39372 - type smtp_server_packet_t;
39373 + type soundd_server_packet_t;
39374 ')
39375
39376 - allow $1 smtp_server_packet_t:packet recv;
39377 + allow $1 soundd_server_packet_t:packet recv;
39378 ')
39379
39380 ########################################
39381 ## <summary>
39382 -## Do not audit attempts to receive smtp_server packets.
39383 +## Do not audit attempts to receive soundd_server packets.
39384 ## </summary>
39385 ## <param name="domain">
39386 ## <summary>
39387 @@ -80180,17 +83281,17 @@ interface(`corenet_receive_smtp_server_packets',`
39388 ## </param>
39389 ## <infoflow type="none"/>
39390 #
39391 -interface(`corenet_dontaudit_receive_smtp_server_packets',`
39392 +interface(`corenet_dontaudit_receive_soundd_server_packets',`
39393 gen_require(`
39394 - type smtp_server_packet_t;
39395 + type soundd_server_packet_t;
39396 ')
39397
39398 - dontaudit $1 smtp_server_packet_t:packet recv;
39399 + dontaudit $1 soundd_server_packet_t:packet recv;
39400 ')
39401
39402 ########################################
39403 ## <summary>
39404 -## Send and receive smtp_server packets.
39405 +## Send and receive soundd_server packets.
39406 ## </summary>
39407 ## <param name="domain">
39408 ## <summary>
39409 @@ -80199,14 +83300,14 @@ interface(`corenet_dontaudit_receive_smtp_server_packets',`
39410 ## </param>
39411 ## <infoflow type="both" weight="10"/>
39412 #
39413 -interface(`corenet_sendrecv_smtp_server_packets',`
39414 - corenet_send_smtp_server_packets($1)
39415 - corenet_receive_smtp_server_packets($1)
39416 +interface(`corenet_sendrecv_soundd_server_packets',`
39417 + corenet_send_soundd_server_packets($1)
39418 + corenet_receive_soundd_server_packets($1)
39419 ')
39420
39421 ########################################
39422 ## <summary>
39423 -## Do not audit attempts to send and receive smtp_server packets.
39424 +## Do not audit attempts to send and receive soundd_server packets.
39425 ## </summary>
39426 ## <param name="domain">
39427 ## <summary>
39428 @@ -80215,14 +83316,14 @@ interface(`corenet_sendrecv_smtp_server_packets',`
39429 ## </param>
39430 ## <infoflow type="none"/>
39431 #
39432 -interface(`corenet_dontaudit_sendrecv_smtp_server_packets',`
39433 - corenet_dontaudit_send_smtp_server_packets($1)
39434 - corenet_dontaudit_receive_smtp_server_packets($1)
39435 +interface(`corenet_dontaudit_sendrecv_soundd_server_packets',`
39436 + corenet_dontaudit_send_soundd_server_packets($1)
39437 + corenet_dontaudit_receive_soundd_server_packets($1)
39438 ')
39439
39440 ########################################
39441 ## <summary>
39442 -## Relabel packets to smtp_server the packet type.
39443 +## Relabel packets to soundd_server the packet type.
39444 ## </summary>
39445 ## <param name="domain">
39446 ## <summary>
39447 @@ -80230,12 +83331,12 @@ interface(`corenet_dontaudit_sendrecv_smtp_server_packets',`
39448 ## </summary>
39449 ## </param>
39450 #
39451 -interface(`corenet_relabelto_smtp_server_packets',`
39452 +interface(`corenet_relabelto_soundd_server_packets',`
39453 gen_require(`
39454 - type smtp_server_packet_t;
39455 + type soundd_server_packet_t;
39456 ')
39457
39458 - allow $1 smtp_server_packet_t:packet relabelto;
39459 + allow $1 soundd_server_packet_t:packet relabelto;
39460 ')
39461
39462
39463 @@ -80243,7 +83344,7 @@ interface(`corenet_relabelto_smtp_server_packets',`
39464
39465 ########################################
39466 ## <summary>
39467 -## Send and receive TCP traffic on the snmp port.
39468 +## Send and receive TCP traffic on the spamd port.
39469 ## </summary>
39470 ## <param name="domain">
39471 ## <summary>
39472 @@ -80252,17 +83353,17 @@ interface(`corenet_relabelto_smtp_server_packets',`
39473 ## </param>
39474 ## <infoflow type="both" weight="10"/>
39475 #
39476 -interface(`corenet_tcp_sendrecv_snmp_port',`
39477 +interface(`corenet_tcp_sendrecv_spamd_port',`
39478 gen_require(`
39479 - type snmp_port_t;
39480 + type spamd_port_t;
39481 ')
39482
39483 - allow $1 snmp_port_t:tcp_socket { send_msg recv_msg };
39484 + allow $1 spamd_port_t:tcp_socket { send_msg recv_msg };
39485 ')
39486
39487 ########################################
39488 ## <summary>
39489 -## Send UDP traffic on the snmp port.
39490 +## Send UDP traffic on the spamd port.
39491 ## </summary>
39492 ## <param name="domain">
39493 ## <summary>
39494 @@ -80271,17 +83372,17 @@ interface(`corenet_tcp_sendrecv_snmp_port',`
39495 ## </param>
39496 ## <infoflow type="write" weight="10"/>
39497 #
39498 -interface(`corenet_udp_send_snmp_port',`
39499 +interface(`corenet_udp_send_spamd_port',`
39500 gen_require(`
39501 - type snmp_port_t;
39502 + type spamd_port_t;
39503 ')
39504
39505 - allow $1 snmp_port_t:udp_socket send_msg;
39506 + allow $1 spamd_port_t:udp_socket send_msg;
39507 ')
39508
39509 ########################################
39510 ## <summary>
39511 -## Do not audit attempts to send UDP traffic on the snmp port.
39512 +## Do not audit attempts to send UDP traffic on the spamd port.
39513 ## </summary>
39514 ## <param name="domain">
39515 ## <summary>
39516 @@ -80290,17 +83391,17 @@ interface(`corenet_udp_send_snmp_port',`
39517 ## </param>
39518 ## <infoflow type="none"/>
39519 #
39520 -interface(`corenet_dontaudit_udp_send_snmp_port',`
39521 +interface(`corenet_dontaudit_udp_send_spamd_port',`
39522 gen_require(`
39523 - type snmp_port_t;
39524 + type spamd_port_t;
39525 ')
39526
39527 - dontaudit $1 snmp_port_t:udp_socket send_msg;
39528 + dontaudit $1 spamd_port_t:udp_socket send_msg;
39529 ')
39530
39531 ########################################
39532 ## <summary>
39533 -## Receive UDP traffic on the snmp port.
39534 +## Receive UDP traffic on the spamd port.
39535 ## </summary>
39536 ## <param name="domain">
39537 ## <summary>
39538 @@ -80309,17 +83410,17 @@ interface(`corenet_dontaudit_udp_send_snmp_port',`
39539 ## </param>
39540 ## <infoflow type="read" weight="10"/>
39541 #
39542 -interface(`corenet_udp_receive_snmp_port',`
39543 +interface(`corenet_udp_receive_spamd_port',`
39544 gen_require(`
39545 - type snmp_port_t;
39546 + type spamd_port_t;
39547 ')
39548
39549 - allow $1 snmp_port_t:udp_socket recv_msg;
39550 + allow $1 spamd_port_t:udp_socket recv_msg;
39551 ')
39552
39553 ########################################
39554 ## <summary>
39555 -## Do not audit attempts to receive UDP traffic on the snmp port.
39556 +## Do not audit attempts to receive UDP traffic on the spamd port.
39557 ## </summary>
39558 ## <param name="domain">
39559 ## <summary>
39560 @@ -80328,17 +83429,17 @@ interface(`corenet_udp_receive_snmp_port',`
39561 ## </param>
39562 ## <infoflow type="none"/>
39563 #
39564 -interface(`corenet_dontaudit_udp_receive_snmp_port',`
39565 +interface(`corenet_dontaudit_udp_receive_spamd_port',`
39566 gen_require(`
39567 - type snmp_port_t;
39568 + type spamd_port_t;
39569 ')
39570
39571 - dontaudit $1 snmp_port_t:udp_socket recv_msg;
39572 + dontaudit $1 spamd_port_t:udp_socket recv_msg;
39573 ')
39574
39575 ########################################
39576 ## <summary>
39577 -## Send and receive UDP traffic on the snmp port.
39578 +## Send and receive UDP traffic on the spamd port.
39579 ## </summary>
39580 ## <param name="domain">
39581 ## <summary>
39582 @@ -80347,15 +83448,15 @@ interface(`corenet_dontaudit_udp_receive_snmp_port',`
39583 ## </param>
39584 ## <infoflow type="both" weight="10"/>
39585 #
39586 -interface(`corenet_udp_sendrecv_snmp_port',`
39587 - corenet_udp_send_snmp_port($1)
39588 - corenet_udp_receive_snmp_port($1)
39589 +interface(`corenet_udp_sendrecv_spamd_port',`
39590 + corenet_udp_send_spamd_port($1)
39591 + corenet_udp_receive_spamd_port($1)
39592 ')
39593
39594 ########################################
39595 ## <summary>
39596 ## Do not audit attempts to send and receive
39597 -## UDP traffic on the snmp port.
39598 +## UDP traffic on the spamd port.
39599 ## </summary>
39600 ## <param name="domain">
39601 ## <summary>
39602 @@ -80364,14 +83465,14 @@ interface(`corenet_udp_sendrecv_snmp_port',`
39603 ## </param>
39604 ## <infoflow type="none"/>
39605 #
39606 -interface(`corenet_dontaudit_udp_sendrecv_snmp_port',`
39607 - corenet_dontaudit_udp_send_snmp_port($1)
39608 - corenet_dontaudit_udp_receive_snmp_port($1)
39609 +interface(`corenet_dontaudit_udp_sendrecv_spamd_port',`
39610 + corenet_dontaudit_udp_send_spamd_port($1)
39611 + corenet_dontaudit_udp_receive_spamd_port($1)
39612 ')
39613
39614 ########################################
39615 ## <summary>
39616 -## Bind TCP sockets to the snmp port.
39617 +## Bind TCP sockets to the spamd port.
39618 ## </summary>
39619 ## <param name="domain">
39620 ## <summary>
39621 @@ -80380,18 +83481,18 @@ interface(`corenet_dontaudit_udp_sendrecv_snmp_port',`
39622 ## </param>
39623 ## <infoflow type="none"/>
39624 #
39625 -interface(`corenet_tcp_bind_snmp_port',`
39626 +interface(`corenet_tcp_bind_spamd_port',`
39627 gen_require(`
39628 - type snmp_port_t;
39629 + type spamd_port_t;
39630 ')
39631
39632 - allow $1 snmp_port_t:tcp_socket name_bind;
39633 + allow $1 spamd_port_t:tcp_socket name_bind;
39634 allow $1 self:capability net_bind_service;
39635 ')
39636
39637 ########################################
39638 ## <summary>
39639 -## Bind UDP sockets to the snmp port.
39640 +## Bind UDP sockets to the spamd port.
39641 ## </summary>
39642 ## <param name="domain">
39643 ## <summary>
39644 @@ -80400,18 +83501,18 @@ interface(`corenet_tcp_bind_snmp_port',`
39645 ## </param>
39646 ## <infoflow type="none"/>
39647 #
39648 -interface(`corenet_udp_bind_snmp_port',`
39649 +interface(`corenet_udp_bind_spamd_port',`
39650 gen_require(`
39651 - type snmp_port_t;
39652 + type spamd_port_t;
39653 ')
39654
39655 - allow $1 snmp_port_t:udp_socket name_bind;
39656 + allow $1 spamd_port_t:udp_socket name_bind;
39657 allow $1 self:capability net_bind_service;
39658 ')
39659
39660 ########################################
39661 ## <summary>
39662 -## Make a TCP connection to the snmp port.
39663 +## Make a TCP connection to the spamd port.
39664 ## </summary>
39665 ## <param name="domain">
39666 ## <summary>
39667 @@ -80419,18 +83520,18 @@ interface(`corenet_udp_bind_snmp_port',`
39668 ## </summary>
39669 ## </param>
39670 #
39671 -interface(`corenet_tcp_connect_snmp_port',`
39672 +interface(`corenet_tcp_connect_spamd_port',`
39673 gen_require(`
39674 - type snmp_port_t;
39675 + type spamd_port_t;
39676 ')
39677
39678 - allow $1 snmp_port_t:tcp_socket name_connect;
39679 + allow $1 spamd_port_t:tcp_socket name_connect;
39680 ')
39681
39682
39683 ########################################
39684 ## <summary>
39685 -## Send snmp_client packets.
39686 +## Send spamd_client packets.
39687 ## </summary>
39688 ## <param name="domain">
39689 ## <summary>
39690 @@ -80439,17 +83540,17 @@ interface(`corenet_tcp_connect_snmp_port',`
39691 ## </param>
39692 ## <infoflow type="write" weight="10"/>
39693 #
39694 -interface(`corenet_send_snmp_client_packets',`
39695 +interface(`corenet_send_spamd_client_packets',`
39696 gen_require(`
39697 - type snmp_client_packet_t;
39698 + type spamd_client_packet_t;
39699 ')
39700
39701 - allow $1 snmp_client_packet_t:packet send;
39702 + allow $1 spamd_client_packet_t:packet send;
39703 ')
39704
39705 ########################################
39706 ## <summary>
39707 -## Do not audit attempts to send snmp_client packets.
39708 +## Do not audit attempts to send spamd_client packets.
39709 ## </summary>
39710 ## <param name="domain">
39711 ## <summary>
39712 @@ -80458,17 +83559,17 @@ interface(`corenet_send_snmp_client_packets',`
39713 ## </param>
39714 ## <infoflow type="none"/>
39715 #
39716 -interface(`corenet_dontaudit_send_snmp_client_packets',`
39717 +interface(`corenet_dontaudit_send_spamd_client_packets',`
39718 gen_require(`
39719 - type snmp_client_packet_t;
39720 + type spamd_client_packet_t;
39721 ')
39722
39723 - dontaudit $1 snmp_client_packet_t:packet send;
39724 + dontaudit $1 spamd_client_packet_t:packet send;
39725 ')
39726
39727 ########################################
39728 ## <summary>
39729 -## Receive snmp_client packets.
39730 +## Receive spamd_client packets.
39731 ## </summary>
39732 ## <param name="domain">
39733 ## <summary>
39734 @@ -80477,17 +83578,17 @@ interface(`corenet_dontaudit_send_snmp_client_packets',`
39735 ## </param>
39736 ## <infoflow type="read" weight="10"/>
39737 #
39738 -interface(`corenet_receive_snmp_client_packets',`
39739 +interface(`corenet_receive_spamd_client_packets',`
39740 gen_require(`
39741 - type snmp_client_packet_t;
39742 + type spamd_client_packet_t;
39743 ')
39744
39745 - allow $1 snmp_client_packet_t:packet recv;
39746 + allow $1 spamd_client_packet_t:packet recv;
39747 ')
39748
39749 ########################################
39750 ## <summary>
39751 -## Do not audit attempts to receive snmp_client packets.
39752 +## Do not audit attempts to receive spamd_client packets.
39753 ## </summary>
39754 ## <param name="domain">
39755 ## <summary>
39756 @@ -80496,17 +83597,17 @@ interface(`corenet_receive_snmp_client_packets',`
39757 ## </param>
39758 ## <infoflow type="none"/>
39759 #
39760 -interface(`corenet_dontaudit_receive_snmp_client_packets',`
39761 +interface(`corenet_dontaudit_receive_spamd_client_packets',`
39762 gen_require(`
39763 - type snmp_client_packet_t;
39764 + type spamd_client_packet_t;
39765 ')
39766
39767 - dontaudit $1 snmp_client_packet_t:packet recv;
39768 + dontaudit $1 spamd_client_packet_t:packet recv;
39769 ')
39770
39771 ########################################
39772 ## <summary>
39773 -## Send and receive snmp_client packets.
39774 +## Send and receive spamd_client packets.
39775 ## </summary>
39776 ## <param name="domain">
39777 ## <summary>
39778 @@ -80515,14 +83616,14 @@ interface(`corenet_dontaudit_receive_snmp_client_packets',`
39779 ## </param>
39780 ## <infoflow type="both" weight="10"/>
39781 #
39782 -interface(`corenet_sendrecv_snmp_client_packets',`
39783 - corenet_send_snmp_client_packets($1)
39784 - corenet_receive_snmp_client_packets($1)
39785 +interface(`corenet_sendrecv_spamd_client_packets',`
39786 + corenet_send_spamd_client_packets($1)
39787 + corenet_receive_spamd_client_packets($1)
39788 ')
39789
39790 ########################################
39791 ## <summary>
39792 -## Do not audit attempts to send and receive snmp_client packets.
39793 +## Do not audit attempts to send and receive spamd_client packets.
39794 ## </summary>
39795 ## <param name="domain">
39796 ## <summary>
39797 @@ -80531,14 +83632,14 @@ interface(`corenet_sendrecv_snmp_client_packets',`
39798 ## </param>
39799 ## <infoflow type="none"/>
39800 #
39801 -interface(`corenet_dontaudit_sendrecv_snmp_client_packets',`
39802 - corenet_dontaudit_send_snmp_client_packets($1)
39803 - corenet_dontaudit_receive_snmp_client_packets($1)
39804 +interface(`corenet_dontaudit_sendrecv_spamd_client_packets',`
39805 + corenet_dontaudit_send_spamd_client_packets($1)
39806 + corenet_dontaudit_receive_spamd_client_packets($1)
39807 ')
39808
39809 ########################################
39810 ## <summary>
39811 -## Relabel packets to snmp_client the packet type.
39812 +## Relabel packets to spamd_client the packet type.
39813 ## </summary>
39814 ## <param name="domain">
39815 ## <summary>
39816 @@ -80546,18 +83647,18 @@ interface(`corenet_dontaudit_sendrecv_snmp_client_packets',`
39817 ## </summary>
39818 ## </param>
39819 #
39820 -interface(`corenet_relabelto_snmp_client_packets',`
39821 +interface(`corenet_relabelto_spamd_client_packets',`
39822 gen_require(`
39823 - type snmp_client_packet_t;
39824 + type spamd_client_packet_t;
39825 ')
39826
39827 - allow $1 snmp_client_packet_t:packet relabelto;
39828 + allow $1 spamd_client_packet_t:packet relabelto;
39829 ')
39830
39831
39832 ########################################
39833 ## <summary>
39834 -## Send snmp_server packets.
39835 +## Send spamd_server packets.
39836 ## </summary>
39837 ## <param name="domain">
39838 ## <summary>
39839 @@ -80566,17 +83667,17 @@ interface(`corenet_relabelto_snmp_client_packets',`
39840 ## </param>
39841 ## <infoflow type="write" weight="10"/>
39842 #
39843 -interface(`corenet_send_snmp_server_packets',`
39844 +interface(`corenet_send_spamd_server_packets',`
39845 gen_require(`
39846 - type snmp_server_packet_t;
39847 + type spamd_server_packet_t;
39848 ')
39849
39850 - allow $1 snmp_server_packet_t:packet send;
39851 + allow $1 spamd_server_packet_t:packet send;
39852 ')
39853
39854 ########################################
39855 ## <summary>
39856 -## Do not audit attempts to send snmp_server packets.
39857 +## Do not audit attempts to send spamd_server packets.
39858 ## </summary>
39859 ## <param name="domain">
39860 ## <summary>
39861 @@ -80585,17 +83686,17 @@ interface(`corenet_send_snmp_server_packets',`
39862 ## </param>
39863 ## <infoflow type="none"/>
39864 #
39865 -interface(`corenet_dontaudit_send_snmp_server_packets',`
39866 +interface(`corenet_dontaudit_send_spamd_server_packets',`
39867 gen_require(`
39868 - type snmp_server_packet_t;
39869 + type spamd_server_packet_t;
39870 ')
39871
39872 - dontaudit $1 snmp_server_packet_t:packet send;
39873 + dontaudit $1 spamd_server_packet_t:packet send;
39874 ')
39875
39876 ########################################
39877 ## <summary>
39878 -## Receive snmp_server packets.
39879 +## Receive spamd_server packets.
39880 ## </summary>
39881 ## <param name="domain">
39882 ## <summary>
39883 @@ -80604,17 +83705,17 @@ interface(`corenet_dontaudit_send_snmp_server_packets',`
39884 ## </param>
39885 ## <infoflow type="read" weight="10"/>
39886 #
39887 -interface(`corenet_receive_snmp_server_packets',`
39888 +interface(`corenet_receive_spamd_server_packets',`
39889 gen_require(`
39890 - type snmp_server_packet_t;
39891 + type spamd_server_packet_t;
39892 ')
39893
39894 - allow $1 snmp_server_packet_t:packet recv;
39895 + allow $1 spamd_server_packet_t:packet recv;
39896 ')
39897
39898 ########################################
39899 ## <summary>
39900 -## Do not audit attempts to receive snmp_server packets.
39901 +## Do not audit attempts to receive spamd_server packets.
39902 ## </summary>
39903 ## <param name="domain">
39904 ## <summary>
39905 @@ -80623,17 +83724,17 @@ interface(`corenet_receive_snmp_server_packets',`
39906 ## </param>
39907 ## <infoflow type="none"/>
39908 #
39909 -interface(`corenet_dontaudit_receive_snmp_server_packets',`
39910 +interface(`corenet_dontaudit_receive_spamd_server_packets',`
39911 gen_require(`
39912 - type snmp_server_packet_t;
39913 + type spamd_server_packet_t;
39914 ')
39915
39916 - dontaudit $1 snmp_server_packet_t:packet recv;
39917 + dontaudit $1 spamd_server_packet_t:packet recv;
39918 ')
39919
39920 ########################################
39921 ## <summary>
39922 -## Send and receive snmp_server packets.
39923 +## Send and receive spamd_server packets.
39924 ## </summary>
39925 ## <param name="domain">
39926 ## <summary>
39927 @@ -80642,14 +83743,14 @@ interface(`corenet_dontaudit_receive_snmp_server_packets',`
39928 ## </param>
39929 ## <infoflow type="both" weight="10"/>
39930 #
39931 -interface(`corenet_sendrecv_snmp_server_packets',`
39932 - corenet_send_snmp_server_packets($1)
39933 - corenet_receive_snmp_server_packets($1)
39934 +interface(`corenet_sendrecv_spamd_server_packets',`
39935 + corenet_send_spamd_server_packets($1)
39936 + corenet_receive_spamd_server_packets($1)
39937 ')
39938
39939 ########################################
39940 ## <summary>
39941 -## Do not audit attempts to send and receive snmp_server packets.
39942 +## Do not audit attempts to send and receive spamd_server packets.
39943 ## </summary>
39944 ## <param name="domain">
39945 ## <summary>
39946 @@ -80658,14 +83759,14 @@ interface(`corenet_sendrecv_snmp_server_packets',`
39947 ## </param>
39948 ## <infoflow type="none"/>
39949 #
39950 -interface(`corenet_dontaudit_sendrecv_snmp_server_packets',`
39951 - corenet_dontaudit_send_snmp_server_packets($1)
39952 - corenet_dontaudit_receive_snmp_server_packets($1)
39953 +interface(`corenet_dontaudit_sendrecv_spamd_server_packets',`
39954 + corenet_dontaudit_send_spamd_server_packets($1)
39955 + corenet_dontaudit_receive_spamd_server_packets($1)
39956 ')
39957
39958 ########################################
39959 ## <summary>
39960 -## Relabel packets to snmp_server the packet type.
39961 +## Relabel packets to spamd_server the packet type.
39962 ## </summary>
39963 ## <param name="domain">
39964 ## <summary>
39965 @@ -80673,12 +83774,12 @@ interface(`corenet_dontaudit_sendrecv_snmp_server_packets',`
39966 ## </summary>
39967 ## </param>
39968 #
39969 -interface(`corenet_relabelto_snmp_server_packets',`
39970 +interface(`corenet_relabelto_spamd_server_packets',`
39971 gen_require(`
39972 - type snmp_server_packet_t;
39973 + type spamd_server_packet_t;
39974 ')
39975
39976 - allow $1 snmp_server_packet_t:packet relabelto;
39977 + allow $1 spamd_server_packet_t:packet relabelto;
39978 ')
39979
39980
39981 @@ -80686,7 +83787,7 @@ interface(`corenet_relabelto_snmp_server_packets',`
39982
39983 ########################################
39984 ## <summary>
39985 -## Send and receive TCP traffic on the socks port.
39986 +## Send and receive TCP traffic on the speech port.
39987 ## </summary>
39988 ## <param name="domain">
39989 ## <summary>
39990 @@ -80695,17 +83796,17 @@ interface(`corenet_relabelto_snmp_server_packets',`
39991 ## </param>
39992 ## <infoflow type="both" weight="10"/>
39993 #
39994 -interface(`corenet_tcp_sendrecv_socks_port',`
39995 +interface(`corenet_tcp_sendrecv_speech_port',`
39996 gen_require(`
39997 - type socks_port_t;
39998 + type speech_port_t;
39999 ')
40000
40001 - allow $1 socks_port_t:tcp_socket { send_msg recv_msg };
40002 + allow $1 speech_port_t:tcp_socket { send_msg recv_msg };
40003 ')
40004
40005 ########################################
40006 ## <summary>
40007 -## Send UDP traffic on the socks port.
40008 +## Send UDP traffic on the speech port.
40009 ## </summary>
40010 ## <param name="domain">
40011 ## <summary>
40012 @@ -80714,17 +83815,17 @@ interface(`corenet_tcp_sendrecv_socks_port',`
40013 ## </param>
40014 ## <infoflow type="write" weight="10"/>
40015 #
40016 -interface(`corenet_udp_send_socks_port',`
40017 +interface(`corenet_udp_send_speech_port',`
40018 gen_require(`
40019 - type socks_port_t;
40020 + type speech_port_t;
40021 ')
40022
40023 - allow $1 socks_port_t:udp_socket send_msg;
40024 + allow $1 speech_port_t:udp_socket send_msg;
40025 ')
40026
40027 ########################################
40028 ## <summary>
40029 -## Do not audit attempts to send UDP traffic on the socks port.
40030 +## Do not audit attempts to send UDP traffic on the speech port.
40031 ## </summary>
40032 ## <param name="domain">
40033 ## <summary>
40034 @@ -80733,17 +83834,17 @@ interface(`corenet_udp_send_socks_port',`
40035 ## </param>
40036 ## <infoflow type="none"/>
40037 #
40038 -interface(`corenet_dontaudit_udp_send_socks_port',`
40039 +interface(`corenet_dontaudit_udp_send_speech_port',`
40040 gen_require(`
40041 - type socks_port_t;
40042 + type speech_port_t;
40043 ')
40044
40045 - dontaudit $1 socks_port_t:udp_socket send_msg;
40046 + dontaudit $1 speech_port_t:udp_socket send_msg;
40047 ')
40048
40049 ########################################
40050 ## <summary>
40051 -## Receive UDP traffic on the socks port.
40052 +## Receive UDP traffic on the speech port.
40053 ## </summary>
40054 ## <param name="domain">
40055 ## <summary>
40056 @@ -80752,17 +83853,17 @@ interface(`corenet_dontaudit_udp_send_socks_port',`
40057 ## </param>
40058 ## <infoflow type="read" weight="10"/>
40059 #
40060 -interface(`corenet_udp_receive_socks_port',`
40061 +interface(`corenet_udp_receive_speech_port',`
40062 gen_require(`
40063 - type socks_port_t;
40064 + type speech_port_t;
40065 ')
40066
40067 - allow $1 socks_port_t:udp_socket recv_msg;
40068 + allow $1 speech_port_t:udp_socket recv_msg;
40069 ')
40070
40071 ########################################
40072 ## <summary>
40073 -## Do not audit attempts to receive UDP traffic on the socks port.
40074 +## Do not audit attempts to receive UDP traffic on the speech port.
40075 ## </summary>
40076 ## <param name="domain">
40077 ## <summary>
40078 @@ -80771,17 +83872,17 @@ interface(`corenet_udp_receive_socks_port',`
40079 ## </param>
40080 ## <infoflow type="none"/>
40081 #
40082 -interface(`corenet_dontaudit_udp_receive_socks_port',`
40083 +interface(`corenet_dontaudit_udp_receive_speech_port',`
40084 gen_require(`
40085 - type socks_port_t;
40086 + type speech_port_t;
40087 ')
40088
40089 - dontaudit $1 socks_port_t:udp_socket recv_msg;
40090 + dontaudit $1 speech_port_t:udp_socket recv_msg;
40091 ')
40092
40093 ########################################
40094 ## <summary>
40095 -## Send and receive UDP traffic on the socks port.
40096 +## Send and receive UDP traffic on the speech port.
40097 ## </summary>
40098 ## <param name="domain">
40099 ## <summary>
40100 @@ -80790,15 +83891,15 @@ interface(`corenet_dontaudit_udp_receive_socks_port',`
40101 ## </param>
40102 ## <infoflow type="both" weight="10"/>
40103 #
40104 -interface(`corenet_udp_sendrecv_socks_port',`
40105 - corenet_udp_send_socks_port($1)
40106 - corenet_udp_receive_socks_port($1)
40107 +interface(`corenet_udp_sendrecv_speech_port',`
40108 + corenet_udp_send_speech_port($1)
40109 + corenet_udp_receive_speech_port($1)
40110 ')
40111
40112 ########################################
40113 ## <summary>
40114 ## Do not audit attempts to send and receive
40115 -## UDP traffic on the socks port.
40116 +## UDP traffic on the speech port.
40117 ## </summary>
40118 ## <param name="domain">
40119 ## <summary>
40120 @@ -80807,14 +83908,14 @@ interface(`corenet_udp_sendrecv_socks_port',`
40121 ## </param>
40122 ## <infoflow type="none"/>
40123 #
40124 -interface(`corenet_dontaudit_udp_sendrecv_socks_port',`
40125 - corenet_dontaudit_udp_send_socks_port($1)
40126 - corenet_dontaudit_udp_receive_socks_port($1)
40127 +interface(`corenet_dontaudit_udp_sendrecv_speech_port',`
40128 + corenet_dontaudit_udp_send_speech_port($1)
40129 + corenet_dontaudit_udp_receive_speech_port($1)
40130 ')
40131
40132 ########################################
40133 ## <summary>
40134 -## Bind TCP sockets to the socks port.
40135 +## Bind TCP sockets to the speech port.
40136 ## </summary>
40137 ## <param name="domain">
40138 ## <summary>
40139 @@ -80823,18 +83924,18 @@ interface(`corenet_dontaudit_udp_sendrecv_socks_port',`
40140 ## </param>
40141 ## <infoflow type="none"/>
40142 #
40143 -interface(`corenet_tcp_bind_socks_port',`
40144 +interface(`corenet_tcp_bind_speech_port',`
40145 gen_require(`
40146 - type socks_port_t;
40147 + type speech_port_t;
40148 ')
40149
40150 - allow $1 socks_port_t:tcp_socket name_bind;
40151 + allow $1 speech_port_t:tcp_socket name_bind;
40152
40153 ')
40154
40155 ########################################
40156 ## <summary>
40157 -## Bind UDP sockets to the socks port.
40158 +## Bind UDP sockets to the speech port.
40159 ## </summary>
40160 ## <param name="domain">
40161 ## <summary>
40162 @@ -80843,18 +83944,18 @@ interface(`corenet_tcp_bind_socks_port',`
40163 ## </param>
40164 ## <infoflow type="none"/>
40165 #
40166 -interface(`corenet_udp_bind_socks_port',`
40167 +interface(`corenet_udp_bind_speech_port',`
40168 gen_require(`
40169 - type socks_port_t;
40170 + type speech_port_t;
40171 ')
40172
40173 - allow $1 socks_port_t:udp_socket name_bind;
40174 + allow $1 speech_port_t:udp_socket name_bind;
40175
40176 ')
40177
40178 ########################################
40179 ## <summary>
40180 -## Make a TCP connection to the socks port.
40181 +## Make a TCP connection to the speech port.
40182 ## </summary>
40183 ## <param name="domain">
40184 ## <summary>
40185 @@ -80862,18 +83963,18 @@ interface(`corenet_udp_bind_socks_port',`
40186 ## </summary>
40187 ## </param>
40188 #
40189 -interface(`corenet_tcp_connect_socks_port',`
40190 +interface(`corenet_tcp_connect_speech_port',`
40191 gen_require(`
40192 - type socks_port_t;
40193 + type speech_port_t;
40194 ')
40195
40196 - allow $1 socks_port_t:tcp_socket name_connect;
40197 + allow $1 speech_port_t:tcp_socket name_connect;
40198 ')
40199
40200
40201 ########################################
40202 ## <summary>
40203 -## Send socks_client packets.
40204 +## Send speech_client packets.
40205 ## </summary>
40206 ## <param name="domain">
40207 ## <summary>
40208 @@ -80882,17 +83983,17 @@ interface(`corenet_tcp_connect_socks_port',`
40209 ## </param>
40210 ## <infoflow type="write" weight="10"/>
40211 #
40212 -interface(`corenet_send_socks_client_packets',`
40213 +interface(`corenet_send_speech_client_packets',`
40214 gen_require(`
40215 - type socks_client_packet_t;
40216 + type speech_client_packet_t;
40217 ')
40218
40219 - allow $1 socks_client_packet_t:packet send;
40220 + allow $1 speech_client_packet_t:packet send;
40221 ')
40222
40223 ########################################
40224 ## <summary>
40225 -## Do not audit attempts to send socks_client packets.
40226 +## Do not audit attempts to send speech_client packets.
40227 ## </summary>
40228 ## <param name="domain">
40229 ## <summary>
40230 @@ -80901,17 +84002,17 @@ interface(`corenet_send_socks_client_packets',`
40231 ## </param>
40232 ## <infoflow type="none"/>
40233 #
40234 -interface(`corenet_dontaudit_send_socks_client_packets',`
40235 +interface(`corenet_dontaudit_send_speech_client_packets',`
40236 gen_require(`
40237 - type socks_client_packet_t;
40238 + type speech_client_packet_t;
40239 ')
40240
40241 - dontaudit $1 socks_client_packet_t:packet send;
40242 + dontaudit $1 speech_client_packet_t:packet send;
40243 ')
40244
40245 ########################################
40246 ## <summary>
40247 -## Receive socks_client packets.
40248 +## Receive speech_client packets.
40249 ## </summary>
40250 ## <param name="domain">
40251 ## <summary>
40252 @@ -80920,17 +84021,17 @@ interface(`corenet_dontaudit_send_socks_client_packets',`
40253 ## </param>
40254 ## <infoflow type="read" weight="10"/>
40255 #
40256 -interface(`corenet_receive_socks_client_packets',`
40257 +interface(`corenet_receive_speech_client_packets',`
40258 gen_require(`
40259 - type socks_client_packet_t;
40260 + type speech_client_packet_t;
40261 ')
40262
40263 - allow $1 socks_client_packet_t:packet recv;
40264 + allow $1 speech_client_packet_t:packet recv;
40265 ')
40266
40267 ########################################
40268 ## <summary>
40269 -## Do not audit attempts to receive socks_client packets.
40270 +## Do not audit attempts to receive speech_client packets.
40271 ## </summary>
40272 ## <param name="domain">
40273 ## <summary>
40274 @@ -80939,17 +84040,17 @@ interface(`corenet_receive_socks_client_packets',`
40275 ## </param>
40276 ## <infoflow type="none"/>
40277 #
40278 -interface(`corenet_dontaudit_receive_socks_client_packets',`
40279 +interface(`corenet_dontaudit_receive_speech_client_packets',`
40280 gen_require(`
40281 - type socks_client_packet_t;
40282 + type speech_client_packet_t;
40283 ')
40284
40285 - dontaudit $1 socks_client_packet_t:packet recv;
40286 + dontaudit $1 speech_client_packet_t:packet recv;
40287 ')
40288
40289 ########################################
40290 ## <summary>
40291 -## Send and receive socks_client packets.
40292 +## Send and receive speech_client packets.
40293 ## </summary>
40294 ## <param name="domain">
40295 ## <summary>
40296 @@ -80958,14 +84059,14 @@ interface(`corenet_dontaudit_receive_socks_client_packets',`
40297 ## </param>
40298 ## <infoflow type="both" weight="10"/>
40299 #
40300 -interface(`corenet_sendrecv_socks_client_packets',`
40301 - corenet_send_socks_client_packets($1)
40302 - corenet_receive_socks_client_packets($1)
40303 +interface(`corenet_sendrecv_speech_client_packets',`
40304 + corenet_send_speech_client_packets($1)
40305 + corenet_receive_speech_client_packets($1)
40306 ')
40307
40308 ########################################
40309 ## <summary>
40310 -## Do not audit attempts to send and receive socks_client packets.
40311 +## Do not audit attempts to send and receive speech_client packets.
40312 ## </summary>
40313 ## <param name="domain">
40314 ## <summary>
40315 @@ -80974,14 +84075,14 @@ interface(`corenet_sendrecv_socks_client_packets',`
40316 ## </param>
40317 ## <infoflow type="none"/>
40318 #
40319 -interface(`corenet_dontaudit_sendrecv_socks_client_packets',`
40320 - corenet_dontaudit_send_socks_client_packets($1)
40321 - corenet_dontaudit_receive_socks_client_packets($1)
40322 +interface(`corenet_dontaudit_sendrecv_speech_client_packets',`
40323 + corenet_dontaudit_send_speech_client_packets($1)
40324 + corenet_dontaudit_receive_speech_client_packets($1)
40325 ')
40326
40327 ########################################
40328 ## <summary>
40329 -## Relabel packets to socks_client the packet type.
40330 +## Relabel packets to speech_client the packet type.
40331 ## </summary>
40332 ## <param name="domain">
40333 ## <summary>
40334 @@ -80989,18 +84090,18 @@ interface(`corenet_dontaudit_sendrecv_socks_client_packets',`
40335 ## </summary>
40336 ## </param>
40337 #
40338 -interface(`corenet_relabelto_socks_client_packets',`
40339 +interface(`corenet_relabelto_speech_client_packets',`
40340 gen_require(`
40341 - type socks_client_packet_t;
40342 + type speech_client_packet_t;
40343 ')
40344
40345 - allow $1 socks_client_packet_t:packet relabelto;
40346 + allow $1 speech_client_packet_t:packet relabelto;
40347 ')
40348
40349
40350 ########################################
40351 ## <summary>
40352 -## Send socks_server packets.
40353 +## Send speech_server packets.
40354 ## </summary>
40355 ## <param name="domain">
40356 ## <summary>
40357 @@ -81009,17 +84110,17 @@ interface(`corenet_relabelto_socks_client_packets',`
40358 ## </param>
40359 ## <infoflow type="write" weight="10"/>
40360 #
40361 -interface(`corenet_send_socks_server_packets',`
40362 +interface(`corenet_send_speech_server_packets',`
40363 gen_require(`
40364 - type socks_server_packet_t;
40365 + type speech_server_packet_t;
40366 ')
40367
40368 - allow $1 socks_server_packet_t:packet send;
40369 + allow $1 speech_server_packet_t:packet send;
40370 ')
40371
40372 ########################################
40373 ## <summary>
40374 -## Do not audit attempts to send socks_server packets.
40375 +## Do not audit attempts to send speech_server packets.
40376 ## </summary>
40377 ## <param name="domain">
40378 ## <summary>
40379 @@ -81028,17 +84129,17 @@ interface(`corenet_send_socks_server_packets',`
40380 ## </param>
40381 ## <infoflow type="none"/>
40382 #
40383 -interface(`corenet_dontaudit_send_socks_server_packets',`
40384 +interface(`corenet_dontaudit_send_speech_server_packets',`
40385 gen_require(`
40386 - type socks_server_packet_t;
40387 + type speech_server_packet_t;
40388 ')
40389
40390 - dontaudit $1 socks_server_packet_t:packet send;
40391 + dontaudit $1 speech_server_packet_t:packet send;
40392 ')
40393
40394 ########################################
40395 ## <summary>
40396 -## Receive socks_server packets.
40397 +## Receive speech_server packets.
40398 ## </summary>
40399 ## <param name="domain">
40400 ## <summary>
40401 @@ -81047,17 +84148,17 @@ interface(`corenet_dontaudit_send_socks_server_packets',`
40402 ## </param>
40403 ## <infoflow type="read" weight="10"/>
40404 #
40405 -interface(`corenet_receive_socks_server_packets',`
40406 +interface(`corenet_receive_speech_server_packets',`
40407 gen_require(`
40408 - type socks_server_packet_t;
40409 + type speech_server_packet_t;
40410 ')
40411
40412 - allow $1 socks_server_packet_t:packet recv;
40413 + allow $1 speech_server_packet_t:packet recv;
40414 ')
40415
40416 ########################################
40417 ## <summary>
40418 -## Do not audit attempts to receive socks_server packets.
40419 +## Do not audit attempts to receive speech_server packets.
40420 ## </summary>
40421 ## <param name="domain">
40422 ## <summary>
40423 @@ -81066,17 +84167,17 @@ interface(`corenet_receive_socks_server_packets',`
40424 ## </param>
40425 ## <infoflow type="none"/>
40426 #
40427 -interface(`corenet_dontaudit_receive_socks_server_packets',`
40428 +interface(`corenet_dontaudit_receive_speech_server_packets',`
40429 gen_require(`
40430 - type socks_server_packet_t;
40431 + type speech_server_packet_t;
40432 ')
40433
40434 - dontaudit $1 socks_server_packet_t:packet recv;
40435 + dontaudit $1 speech_server_packet_t:packet recv;
40436 ')
40437
40438 ########################################
40439 ## <summary>
40440 -## Send and receive socks_server packets.
40441 +## Send and receive speech_server packets.
40442 ## </summary>
40443 ## <param name="domain">
40444 ## <summary>
40445 @@ -81085,14 +84186,14 @@ interface(`corenet_dontaudit_receive_socks_server_packets',`
40446 ## </param>
40447 ## <infoflow type="both" weight="10"/>
40448 #
40449 -interface(`corenet_sendrecv_socks_server_packets',`
40450 - corenet_send_socks_server_packets($1)
40451 - corenet_receive_socks_server_packets($1)
40452 +interface(`corenet_sendrecv_speech_server_packets',`
40453 + corenet_send_speech_server_packets($1)
40454 + corenet_receive_speech_server_packets($1)
40455 ')
40456
40457 ########################################
40458 ## <summary>
40459 -## Do not audit attempts to send and receive socks_server packets.
40460 +## Do not audit attempts to send and receive speech_server packets.
40461 ## </summary>
40462 ## <param name="domain">
40463 ## <summary>
40464 @@ -81101,14 +84202,14 @@ interface(`corenet_sendrecv_socks_server_packets',`
40465 ## </param>
40466 ## <infoflow type="none"/>
40467 #
40468 -interface(`corenet_dontaudit_sendrecv_socks_server_packets',`
40469 - corenet_dontaudit_send_socks_server_packets($1)
40470 - corenet_dontaudit_receive_socks_server_packets($1)
40471 +interface(`corenet_dontaudit_sendrecv_speech_server_packets',`
40472 + corenet_dontaudit_send_speech_server_packets($1)
40473 + corenet_dontaudit_receive_speech_server_packets($1)
40474 ')
40475
40476 ########################################
40477 ## <summary>
40478 -## Relabel packets to socks_server the packet type.
40479 +## Relabel packets to speech_server the packet type.
40480 ## </summary>
40481 ## <param name="domain">
40482 ## <summary>
40483 @@ -81116,20 +84217,20 @@ interface(`corenet_dontaudit_sendrecv_socks_server_packets',`
40484 ## </summary>
40485 ## </param>
40486 #
40487 -interface(`corenet_relabelto_socks_server_packets',`
40488 +interface(`corenet_relabelto_speech_server_packets',`
40489 gen_require(`
40490 - type socks_server_packet_t;
40491 + type speech_server_packet_t;
40492 ')
40493
40494 - allow $1 socks_server_packet_t:packet relabelto;
40495 + allow $1 speech_server_packet_t:packet relabelto;
40496 ')
40497
40498 - # no defined portcon
40499 +
40500
40501
40502 ########################################
40503 ## <summary>
40504 -## Send and receive TCP traffic on the soundd port.
40505 +## Send and receive TCP traffic on the squid port.
40506 ## </summary>
40507 ## <param name="domain">
40508 ## <summary>
40509 @@ -81138,17 +84239,17 @@ interface(`corenet_relabelto_socks_server_packets',`
40510 ## </param>
40511 ## <infoflow type="both" weight="10"/>
40512 #
40513 -interface(`corenet_tcp_sendrecv_soundd_port',`
40514 +interface(`corenet_tcp_sendrecv_squid_port',`
40515 gen_require(`
40516 - type soundd_port_t;
40517 + type squid_port_t;
40518 ')
40519
40520 - allow $1 soundd_port_t:tcp_socket { send_msg recv_msg };
40521 + allow $1 squid_port_t:tcp_socket { send_msg recv_msg };
40522 ')
40523
40524 ########################################
40525 ## <summary>
40526 -## Send UDP traffic on the soundd port.
40527 +## Send UDP traffic on the squid port.
40528 ## </summary>
40529 ## <param name="domain">
40530 ## <summary>
40531 @@ -81157,17 +84258,17 @@ interface(`corenet_tcp_sendrecv_soundd_port',`
40532 ## </param>
40533 ## <infoflow type="write" weight="10"/>
40534 #
40535 -interface(`corenet_udp_send_soundd_port',`
40536 +interface(`corenet_udp_send_squid_port',`
40537 gen_require(`
40538 - type soundd_port_t;
40539 + type squid_port_t;
40540 ')
40541
40542 - allow $1 soundd_port_t:udp_socket send_msg;
40543 + allow $1 squid_port_t:udp_socket send_msg;
40544 ')
40545
40546 ########################################
40547 ## <summary>
40548 -## Do not audit attempts to send UDP traffic on the soundd port.
40549 +## Do not audit attempts to send UDP traffic on the squid port.
40550 ## </summary>
40551 ## <param name="domain">
40552 ## <summary>
40553 @@ -81176,17 +84277,17 @@ interface(`corenet_udp_send_soundd_port',`
40554 ## </param>
40555 ## <infoflow type="none"/>
40556 #
40557 -interface(`corenet_dontaudit_udp_send_soundd_port',`
40558 +interface(`corenet_dontaudit_udp_send_squid_port',`
40559 gen_require(`
40560 - type soundd_port_t;
40561 + type squid_port_t;
40562 ')
40563
40564 - dontaudit $1 soundd_port_t:udp_socket send_msg;
40565 + dontaudit $1 squid_port_t:udp_socket send_msg;
40566 ')
40567
40568 ########################################
40569 ## <summary>
40570 -## Receive UDP traffic on the soundd port.
40571 +## Receive UDP traffic on the squid port.
40572 ## </summary>
40573 ## <param name="domain">
40574 ## <summary>
40575 @@ -81195,17 +84296,17 @@ interface(`corenet_dontaudit_udp_send_soundd_port',`
40576 ## </param>
40577 ## <infoflow type="read" weight="10"/>
40578 #
40579 -interface(`corenet_udp_receive_soundd_port',`
40580 +interface(`corenet_udp_receive_squid_port',`
40581 gen_require(`
40582 - type soundd_port_t;
40583 + type squid_port_t;
40584 ')
40585
40586 - allow $1 soundd_port_t:udp_socket recv_msg;
40587 + allow $1 squid_port_t:udp_socket recv_msg;
40588 ')
40589
40590 ########################################
40591 ## <summary>
40592 -## Do not audit attempts to receive UDP traffic on the soundd port.
40593 +## Do not audit attempts to receive UDP traffic on the squid port.
40594 ## </summary>
40595 ## <param name="domain">
40596 ## <summary>
40597 @@ -81214,17 +84315,17 @@ interface(`corenet_udp_receive_soundd_port',`
40598 ## </param>
40599 ## <infoflow type="none"/>
40600 #
40601 -interface(`corenet_dontaudit_udp_receive_soundd_port',`
40602 +interface(`corenet_dontaudit_udp_receive_squid_port',`
40603 gen_require(`
40604 - type soundd_port_t;
40605 + type squid_port_t;
40606 ')
40607
40608 - dontaudit $1 soundd_port_t:udp_socket recv_msg;
40609 + dontaudit $1 squid_port_t:udp_socket recv_msg;
40610 ')
40611
40612 ########################################
40613 ## <summary>
40614 -## Send and receive UDP traffic on the soundd port.
40615 +## Send and receive UDP traffic on the squid port.
40616 ## </summary>
40617 ## <param name="domain">
40618 ## <summary>
40619 @@ -81233,15 +84334,15 @@ interface(`corenet_dontaudit_udp_receive_soundd_port',`
40620 ## </param>
40621 ## <infoflow type="both" weight="10"/>
40622 #
40623 -interface(`corenet_udp_sendrecv_soundd_port',`
40624 - corenet_udp_send_soundd_port($1)
40625 - corenet_udp_receive_soundd_port($1)
40626 +interface(`corenet_udp_sendrecv_squid_port',`
40627 + corenet_udp_send_squid_port($1)
40628 + corenet_udp_receive_squid_port($1)
40629 ')
40630
40631 ########################################
40632 ## <summary>
40633 ## Do not audit attempts to send and receive
40634 -## UDP traffic on the soundd port.
40635 +## UDP traffic on the squid port.
40636 ## </summary>
40637 ## <param name="domain">
40638 ## <summary>
40639 @@ -81250,14 +84351,14 @@ interface(`corenet_udp_sendrecv_soundd_port',`
40640 ## </param>
40641 ## <infoflow type="none"/>
40642 #
40643 -interface(`corenet_dontaudit_udp_sendrecv_soundd_port',`
40644 - corenet_dontaudit_udp_send_soundd_port($1)
40645 - corenet_dontaudit_udp_receive_soundd_port($1)
40646 +interface(`corenet_dontaudit_udp_sendrecv_squid_port',`
40647 + corenet_dontaudit_udp_send_squid_port($1)
40648 + corenet_dontaudit_udp_receive_squid_port($1)
40649 ')
40650
40651 ########################################
40652 ## <summary>
40653 -## Bind TCP sockets to the soundd port.
40654 +## Bind TCP sockets to the squid port.
40655 ## </summary>
40656 ## <param name="domain">
40657 ## <summary>
40658 @@ -81266,18 +84367,18 @@ interface(`corenet_dontaudit_udp_sendrecv_soundd_port',`
40659 ## </param>
40660 ## <infoflow type="none"/>
40661 #
40662 -interface(`corenet_tcp_bind_soundd_port',`
40663 +interface(`corenet_tcp_bind_squid_port',`
40664 gen_require(`
40665 - type soundd_port_t;
40666 + type squid_port_t;
40667 ')
40668
40669 - allow $1 soundd_port_t:tcp_socket name_bind;
40670 + allow $1 squid_port_t:tcp_socket name_bind;
40671
40672 ')
40673
40674 ########################################
40675 ## <summary>
40676 -## Bind UDP sockets to the soundd port.
40677 +## Bind UDP sockets to the squid port.
40678 ## </summary>
40679 ## <param name="domain">
40680 ## <summary>
40681 @@ -81286,18 +84387,18 @@ interface(`corenet_tcp_bind_soundd_port',`
40682 ## </param>
40683 ## <infoflow type="none"/>
40684 #
40685 -interface(`corenet_udp_bind_soundd_port',`
40686 +interface(`corenet_udp_bind_squid_port',`
40687 gen_require(`
40688 - type soundd_port_t;
40689 + type squid_port_t;
40690 ')
40691
40692 - allow $1 soundd_port_t:udp_socket name_bind;
40693 + allow $1 squid_port_t:udp_socket name_bind;
40694
40695 ')
40696
40697 ########################################
40698 ## <summary>
40699 -## Make a TCP connection to the soundd port.
40700 +## Make a TCP connection to the squid port.
40701 ## </summary>
40702 ## <param name="domain">
40703 ## <summary>
40704 @@ -81305,18 +84406,18 @@ interface(`corenet_udp_bind_soundd_port',`
40705 ## </summary>
40706 ## </param>
40707 #
40708 -interface(`corenet_tcp_connect_soundd_port',`
40709 +interface(`corenet_tcp_connect_squid_port',`
40710 gen_require(`
40711 - type soundd_port_t;
40712 + type squid_port_t;
40713 ')
40714
40715 - allow $1 soundd_port_t:tcp_socket name_connect;
40716 + allow $1 squid_port_t:tcp_socket name_connect;
40717 ')
40718
40719
40720 ########################################
40721 ## <summary>
40722 -## Send soundd_client packets.
40723 +## Send squid_client packets.
40724 ## </summary>
40725 ## <param name="domain">
40726 ## <summary>
40727 @@ -81325,17 +84426,17 @@ interface(`corenet_tcp_connect_soundd_port',`
40728 ## </param>
40729 ## <infoflow type="write" weight="10"/>
40730 #
40731 -interface(`corenet_send_soundd_client_packets',`
40732 +interface(`corenet_send_squid_client_packets',`
40733 gen_require(`
40734 - type soundd_client_packet_t;
40735 + type squid_client_packet_t;
40736 ')
40737
40738 - allow $1 soundd_client_packet_t:packet send;
40739 + allow $1 squid_client_packet_t:packet send;
40740 ')
40741
40742 ########################################
40743 ## <summary>
40744 -## Do not audit attempts to send soundd_client packets.
40745 +## Do not audit attempts to send squid_client packets.
40746 ## </summary>
40747 ## <param name="domain">
40748 ## <summary>
40749 @@ -81344,17 +84445,17 @@ interface(`corenet_send_soundd_client_packets',`
40750 ## </param>
40751 ## <infoflow type="none"/>
40752 #
40753 -interface(`corenet_dontaudit_send_soundd_client_packets',`
40754 +interface(`corenet_dontaudit_send_squid_client_packets',`
40755 gen_require(`
40756 - type soundd_client_packet_t;
40757 + type squid_client_packet_t;
40758 ')
40759
40760 - dontaudit $1 soundd_client_packet_t:packet send;
40761 + dontaudit $1 squid_client_packet_t:packet send;
40762 ')
40763
40764 ########################################
40765 ## <summary>
40766 -## Receive soundd_client packets.
40767 +## Receive squid_client packets.
40768 ## </summary>
40769 ## <param name="domain">
40770 ## <summary>
40771 @@ -81363,17 +84464,17 @@ interface(`corenet_dontaudit_send_soundd_client_packets',`
40772 ## </param>
40773 ## <infoflow type="read" weight="10"/>
40774 #
40775 -interface(`corenet_receive_soundd_client_packets',`
40776 +interface(`corenet_receive_squid_client_packets',`
40777 gen_require(`
40778 - type soundd_client_packet_t;
40779 + type squid_client_packet_t;
40780 ')
40781
40782 - allow $1 soundd_client_packet_t:packet recv;
40783 + allow $1 squid_client_packet_t:packet recv;
40784 ')
40785
40786 ########################################
40787 ## <summary>
40788 -## Do not audit attempts to receive soundd_client packets.
40789 +## Do not audit attempts to receive squid_client packets.
40790 ## </summary>
40791 ## <param name="domain">
40792 ## <summary>
40793 @@ -81382,17 +84483,17 @@ interface(`corenet_receive_soundd_client_packets',`
40794 ## </param>
40795 ## <infoflow type="none"/>
40796 #
40797 -interface(`corenet_dontaudit_receive_soundd_client_packets',`
40798 +interface(`corenet_dontaudit_receive_squid_client_packets',`
40799 gen_require(`
40800 - type soundd_client_packet_t;
40801 + type squid_client_packet_t;
40802 ')
40803
40804 - dontaudit $1 soundd_client_packet_t:packet recv;
40805 + dontaudit $1 squid_client_packet_t:packet recv;
40806 ')
40807
40808 ########################################
40809 ## <summary>
40810 -## Send and receive soundd_client packets.
40811 +## Send and receive squid_client packets.
40812 ## </summary>
40813 ## <param name="domain">
40814 ## <summary>
40815 @@ -81401,14 +84502,14 @@ interface(`corenet_dontaudit_receive_soundd_client_packets',`
40816 ## </param>
40817 ## <infoflow type="both" weight="10"/>
40818 #
40819 -interface(`corenet_sendrecv_soundd_client_packets',`
40820 - corenet_send_soundd_client_packets($1)
40821 - corenet_receive_soundd_client_packets($1)
40822 +interface(`corenet_sendrecv_squid_client_packets',`
40823 + corenet_send_squid_client_packets($1)
40824 + corenet_receive_squid_client_packets($1)
40825 ')
40826
40827 ########################################
40828 ## <summary>
40829 -## Do not audit attempts to send and receive soundd_client packets.
40830 +## Do not audit attempts to send and receive squid_client packets.
40831 ## </summary>
40832 ## <param name="domain">
40833 ## <summary>
40834 @@ -81417,14 +84518,14 @@ interface(`corenet_sendrecv_soundd_client_packets',`
40835 ## </param>
40836 ## <infoflow type="none"/>
40837 #
40838 -interface(`corenet_dontaudit_sendrecv_soundd_client_packets',`
40839 - corenet_dontaudit_send_soundd_client_packets($1)
40840 - corenet_dontaudit_receive_soundd_client_packets($1)
40841 +interface(`corenet_dontaudit_sendrecv_squid_client_packets',`
40842 + corenet_dontaudit_send_squid_client_packets($1)
40843 + corenet_dontaudit_receive_squid_client_packets($1)
40844 ')
40845
40846 ########################################
40847 ## <summary>
40848 -## Relabel packets to soundd_client the packet type.
40849 +## Relabel packets to squid_client the packet type.
40850 ## </summary>
40851 ## <param name="domain">
40852 ## <summary>
40853 @@ -81432,18 +84533,18 @@ interface(`corenet_dontaudit_sendrecv_soundd_client_packets',`
40854 ## </summary>
40855 ## </param>
40856 #
40857 -interface(`corenet_relabelto_soundd_client_packets',`
40858 +interface(`corenet_relabelto_squid_client_packets',`
40859 gen_require(`
40860 - type soundd_client_packet_t;
40861 + type squid_client_packet_t;
40862 ')
40863
40864 - allow $1 soundd_client_packet_t:packet relabelto;
40865 + allow $1 squid_client_packet_t:packet relabelto;
40866 ')
40867
40868
40869 ########################################
40870 ## <summary>
40871 -## Send soundd_server packets.
40872 +## Send squid_server packets.
40873 ## </summary>
40874 ## <param name="domain">
40875 ## <summary>
40876 @@ -81452,17 +84553,17 @@ interface(`corenet_relabelto_soundd_client_packets',`
40877 ## </param>
40878 ## <infoflow type="write" weight="10"/>
40879 #
40880 -interface(`corenet_send_soundd_server_packets',`
40881 +interface(`corenet_send_squid_server_packets',`
40882 gen_require(`
40883 - type soundd_server_packet_t;
40884 + type squid_server_packet_t;
40885 ')
40886
40887 - allow $1 soundd_server_packet_t:packet send;
40888 + allow $1 squid_server_packet_t:packet send;
40889 ')
40890
40891 ########################################
40892 ## <summary>
40893 -## Do not audit attempts to send soundd_server packets.
40894 +## Do not audit attempts to send squid_server packets.
40895 ## </summary>
40896 ## <param name="domain">
40897 ## <summary>
40898 @@ -81471,17 +84572,17 @@ interface(`corenet_send_soundd_server_packets',`
40899 ## </param>
40900 ## <infoflow type="none"/>
40901 #
40902 -interface(`corenet_dontaudit_send_soundd_server_packets',`
40903 +interface(`corenet_dontaudit_send_squid_server_packets',`
40904 gen_require(`
40905 - type soundd_server_packet_t;
40906 + type squid_server_packet_t;
40907 ')
40908
40909 - dontaudit $1 soundd_server_packet_t:packet send;
40910 + dontaudit $1 squid_server_packet_t:packet send;
40911 ')
40912
40913 ########################################
40914 ## <summary>
40915 -## Receive soundd_server packets.
40916 +## Receive squid_server packets.
40917 ## </summary>
40918 ## <param name="domain">
40919 ## <summary>
40920 @@ -81490,17 +84591,17 @@ interface(`corenet_dontaudit_send_soundd_server_packets',`
40921 ## </param>
40922 ## <infoflow type="read" weight="10"/>
40923 #
40924 -interface(`corenet_receive_soundd_server_packets',`
40925 +interface(`corenet_receive_squid_server_packets',`
40926 gen_require(`
40927 - type soundd_server_packet_t;
40928 + type squid_server_packet_t;
40929 ')
40930
40931 - allow $1 soundd_server_packet_t:packet recv;
40932 + allow $1 squid_server_packet_t:packet recv;
40933 ')
40934
40935 ########################################
40936 ## <summary>
40937 -## Do not audit attempts to receive soundd_server packets.
40938 +## Do not audit attempts to receive squid_server packets.
40939 ## </summary>
40940 ## <param name="domain">
40941 ## <summary>
40942 @@ -81509,17 +84610,17 @@ interface(`corenet_receive_soundd_server_packets',`
40943 ## </param>
40944 ## <infoflow type="none"/>
40945 #
40946 -interface(`corenet_dontaudit_receive_soundd_server_packets',`
40947 +interface(`corenet_dontaudit_receive_squid_server_packets',`
40948 gen_require(`
40949 - type soundd_server_packet_t;
40950 + type squid_server_packet_t;
40951 ')
40952
40953 - dontaudit $1 soundd_server_packet_t:packet recv;
40954 + dontaudit $1 squid_server_packet_t:packet recv;
40955 ')
40956
40957 ########################################
40958 ## <summary>
40959 -## Send and receive soundd_server packets.
40960 +## Send and receive squid_server packets.
40961 ## </summary>
40962 ## <param name="domain">
40963 ## <summary>
40964 @@ -81528,14 +84629,14 @@ interface(`corenet_dontaudit_receive_soundd_server_packets',`
40965 ## </param>
40966 ## <infoflow type="both" weight="10"/>
40967 #
40968 -interface(`corenet_sendrecv_soundd_server_packets',`
40969 - corenet_send_soundd_server_packets($1)
40970 - corenet_receive_soundd_server_packets($1)
40971 +interface(`corenet_sendrecv_squid_server_packets',`
40972 + corenet_send_squid_server_packets($1)
40973 + corenet_receive_squid_server_packets($1)
40974 ')
40975
40976 ########################################
40977 ## <summary>
40978 -## Do not audit attempts to send and receive soundd_server packets.
40979 +## Do not audit attempts to send and receive squid_server packets.
40980 ## </summary>
40981 ## <param name="domain">
40982 ## <summary>
40983 @@ -81544,14 +84645,14 @@ interface(`corenet_sendrecv_soundd_server_packets',`
40984 ## </param>
40985 ## <infoflow type="none"/>
40986 #
40987 -interface(`corenet_dontaudit_sendrecv_soundd_server_packets',`
40988 - corenet_dontaudit_send_soundd_server_packets($1)
40989 - corenet_dontaudit_receive_soundd_server_packets($1)
40990 +interface(`corenet_dontaudit_sendrecv_squid_server_packets',`
40991 + corenet_dontaudit_send_squid_server_packets($1)
40992 + corenet_dontaudit_receive_squid_server_packets($1)
40993 ')
40994
40995 ########################################
40996 ## <summary>
40997 -## Relabel packets to soundd_server the packet type.
40998 +## Relabel packets to squid_server the packet type.
40999 ## </summary>
41000 ## <param name="domain">
41001 ## <summary>
41002 @@ -81559,20 +84660,20 @@ interface(`corenet_dontaudit_sendrecv_soundd_server_packets',`
41003 ## </summary>
41004 ## </param>
41005 #
41006 -interface(`corenet_relabelto_soundd_server_packets',`
41007 +interface(`corenet_relabelto_squid_server_packets',`
41008 gen_require(`
41009 - type soundd_server_packet_t;
41010 + type squid_server_packet_t;
41011 ')
41012
41013 - allow $1 soundd_server_packet_t:packet relabelto;
41014 + allow $1 squid_server_packet_t:packet relabelto;
41015 ')
41016
41017 -
41018 + # snmp and htcp
41019
41020
41021 ########################################
41022 ## <summary>
41023 -## Send and receive TCP traffic on the spamd port.
41024 +## Send and receive TCP traffic on the ssdp port.
41025 ## </summary>
41026 ## <param name="domain">
41027 ## <summary>
41028 @@ -81581,17 +84682,17 @@ interface(`corenet_relabelto_soundd_server_packets',`
41029 ## </param>
41030 ## <infoflow type="both" weight="10"/>
41031 #
41032 -interface(`corenet_tcp_sendrecv_spamd_port',`
41033 +interface(`corenet_tcp_sendrecv_ssdp_port',`
41034 gen_require(`
41035 - type spamd_port_t;
41036 + type ssdp_port_t;
41037 ')
41038
41039 - allow $1 spamd_port_t:tcp_socket { send_msg recv_msg };
41040 + allow $1 ssdp_port_t:tcp_socket { send_msg recv_msg };
41041 ')
41042
41043 ########################################
41044 ## <summary>
41045 -## Send UDP traffic on the spamd port.
41046 +## Send UDP traffic on the ssdp port.
41047 ## </summary>
41048 ## <param name="domain">
41049 ## <summary>
41050 @@ -81600,17 +84701,17 @@ interface(`corenet_tcp_sendrecv_spamd_port',`
41051 ## </param>
41052 ## <infoflow type="write" weight="10"/>
41053 #
41054 -interface(`corenet_udp_send_spamd_port',`
41055 +interface(`corenet_udp_send_ssdp_port',`
41056 gen_require(`
41057 - type spamd_port_t;
41058 + type ssdp_port_t;
41059 ')
41060
41061 - allow $1 spamd_port_t:udp_socket send_msg;
41062 + allow $1 ssdp_port_t:udp_socket send_msg;
41063 ')
41064
41065 ########################################
41066 ## <summary>
41067 -## Do not audit attempts to send UDP traffic on the spamd port.
41068 +## Do not audit attempts to send UDP traffic on the ssdp port.
41069 ## </summary>
41070 ## <param name="domain">
41071 ## <summary>
41072 @@ -81619,17 +84720,17 @@ interface(`corenet_udp_send_spamd_port',`
41073 ## </param>
41074 ## <infoflow type="none"/>
41075 #
41076 -interface(`corenet_dontaudit_udp_send_spamd_port',`
41077 +interface(`corenet_dontaudit_udp_send_ssdp_port',`
41078 gen_require(`
41079 - type spamd_port_t;
41080 + type ssdp_port_t;
41081 ')
41082
41083 - dontaudit $1 spamd_port_t:udp_socket send_msg;
41084 + dontaudit $1 ssdp_port_t:udp_socket send_msg;
41085 ')
41086
41087 ########################################
41088 ## <summary>
41089 -## Receive UDP traffic on the spamd port.
41090 +## Receive UDP traffic on the ssdp port.
41091 ## </summary>
41092 ## <param name="domain">
41093 ## <summary>
41094 @@ -81638,17 +84739,17 @@ interface(`corenet_dontaudit_udp_send_spamd_port',`
41095 ## </param>
41096 ## <infoflow type="read" weight="10"/>
41097 #
41098 -interface(`corenet_udp_receive_spamd_port',`
41099 +interface(`corenet_udp_receive_ssdp_port',`
41100 gen_require(`
41101 - type spamd_port_t;
41102 + type ssdp_port_t;
41103 ')
41104
41105 - allow $1 spamd_port_t:udp_socket recv_msg;
41106 + allow $1 ssdp_port_t:udp_socket recv_msg;
41107 ')
41108
41109 ########################################
41110 ## <summary>
41111 -## Do not audit attempts to receive UDP traffic on the spamd port.
41112 +## Do not audit attempts to receive UDP traffic on the ssdp port.
41113 ## </summary>
41114 ## <param name="domain">
41115 ## <summary>
41116 @@ -81657,17 +84758,17 @@ interface(`corenet_udp_receive_spamd_port',`
41117 ## </param>
41118 ## <infoflow type="none"/>
41119 #
41120 -interface(`corenet_dontaudit_udp_receive_spamd_port',`
41121 +interface(`corenet_dontaudit_udp_receive_ssdp_port',`
41122 gen_require(`
41123 - type spamd_port_t;
41124 + type ssdp_port_t;
41125 ')
41126
41127 - dontaudit $1 spamd_port_t:udp_socket recv_msg;
41128 + dontaudit $1 ssdp_port_t:udp_socket recv_msg;
41129 ')
41130
41131 ########################################
41132 ## <summary>
41133 -## Send and receive UDP traffic on the spamd port.
41134 +## Send and receive UDP traffic on the ssdp port.
41135 ## </summary>
41136 ## <param name="domain">
41137 ## <summary>
41138 @@ -81676,15 +84777,15 @@ interface(`corenet_dontaudit_udp_receive_spamd_port',`
41139 ## </param>
41140 ## <infoflow type="both" weight="10"/>
41141 #
41142 -interface(`corenet_udp_sendrecv_spamd_port',`
41143 - corenet_udp_send_spamd_port($1)
41144 - corenet_udp_receive_spamd_port($1)
41145 +interface(`corenet_udp_sendrecv_ssdp_port',`
41146 + corenet_udp_send_ssdp_port($1)
41147 + corenet_udp_receive_ssdp_port($1)
41148 ')
41149
41150 ########################################
41151 ## <summary>
41152 ## Do not audit attempts to send and receive
41153 -## UDP traffic on the spamd port.
41154 +## UDP traffic on the ssdp port.
41155 ## </summary>
41156 ## <param name="domain">
41157 ## <summary>
41158 @@ -81693,14 +84794,14 @@ interface(`corenet_udp_sendrecv_spamd_port',`
41159 ## </param>
41160 ## <infoflow type="none"/>
41161 #
41162 -interface(`corenet_dontaudit_udp_sendrecv_spamd_port',`
41163 - corenet_dontaudit_udp_send_spamd_port($1)
41164 - corenet_dontaudit_udp_receive_spamd_port($1)
41165 +interface(`corenet_dontaudit_udp_sendrecv_ssdp_port',`
41166 + corenet_dontaudit_udp_send_ssdp_port($1)
41167 + corenet_dontaudit_udp_receive_ssdp_port($1)
41168 ')
41169
41170 ########################################
41171 ## <summary>
41172 -## Bind TCP sockets to the spamd port.
41173 +## Bind TCP sockets to the ssdp port.
41174 ## </summary>
41175 ## <param name="domain">
41176 ## <summary>
41177 @@ -81709,18 +84810,18 @@ interface(`corenet_dontaudit_udp_sendrecv_spamd_port',`
41178 ## </param>
41179 ## <infoflow type="none"/>
41180 #
41181 -interface(`corenet_tcp_bind_spamd_port',`
41182 +interface(`corenet_tcp_bind_ssdp_port',`
41183 gen_require(`
41184 - type spamd_port_t;
41185 + type ssdp_port_t;
41186 ')
41187
41188 - allow $1 spamd_port_t:tcp_socket name_bind;
41189 - allow $1 self:capability net_bind_service;
41190 + allow $1 ssdp_port_t:tcp_socket name_bind;
41191 +
41192 ')
41193
41194 ########################################
41195 ## <summary>
41196 -## Bind UDP sockets to the spamd port.
41197 +## Bind UDP sockets to the ssdp port.
41198 ## </summary>
41199 ## <param name="domain">
41200 ## <summary>
41201 @@ -81729,18 +84830,18 @@ interface(`corenet_tcp_bind_spamd_port',`
41202 ## </param>
41203 ## <infoflow type="none"/>
41204 #
41205 -interface(`corenet_udp_bind_spamd_port',`
41206 +interface(`corenet_udp_bind_ssdp_port',`
41207 gen_require(`
41208 - type spamd_port_t;
41209 + type ssdp_port_t;
41210 ')
41211
41212 - allow $1 spamd_port_t:udp_socket name_bind;
41213 - allow $1 self:capability net_bind_service;
41214 + allow $1 ssdp_port_t:udp_socket name_bind;
41215 +
41216 ')
41217
41218 ########################################
41219 ## <summary>
41220 -## Make a TCP connection to the spamd port.
41221 +## Make a TCP connection to the ssdp port.
41222 ## </summary>
41223 ## <param name="domain">
41224 ## <summary>
41225 @@ -81748,18 +84849,18 @@ interface(`corenet_udp_bind_spamd_port',`
41226 ## </summary>
41227 ## </param>
41228 #
41229 -interface(`corenet_tcp_connect_spamd_port',`
41230 +interface(`corenet_tcp_connect_ssdp_port',`
41231 gen_require(`
41232 - type spamd_port_t;
41233 + type ssdp_port_t;
41234 ')
41235
41236 - allow $1 spamd_port_t:tcp_socket name_connect;
41237 + allow $1 ssdp_port_t:tcp_socket name_connect;
41238 ')
41239
41240
41241 ########################################
41242 ## <summary>
41243 -## Send spamd_client packets.
41244 +## Send ssdp_client packets.
41245 ## </summary>
41246 ## <param name="domain">
41247 ## <summary>
41248 @@ -81768,17 +84869,17 @@ interface(`corenet_tcp_connect_spamd_port',`
41249 ## </param>
41250 ## <infoflow type="write" weight="10"/>
41251 #
41252 -interface(`corenet_send_spamd_client_packets',`
41253 +interface(`corenet_send_ssdp_client_packets',`
41254 gen_require(`
41255 - type spamd_client_packet_t;
41256 + type ssdp_client_packet_t;
41257 ')
41258
41259 - allow $1 spamd_client_packet_t:packet send;
41260 + allow $1 ssdp_client_packet_t:packet send;
41261 ')
41262
41263 ########################################
41264 ## <summary>
41265 -## Do not audit attempts to send spamd_client packets.
41266 +## Do not audit attempts to send ssdp_client packets.
41267 ## </summary>
41268 ## <param name="domain">
41269 ## <summary>
41270 @@ -81787,17 +84888,17 @@ interface(`corenet_send_spamd_client_packets',`
41271 ## </param>
41272 ## <infoflow type="none"/>
41273 #
41274 -interface(`corenet_dontaudit_send_spamd_client_packets',`
41275 +interface(`corenet_dontaudit_send_ssdp_client_packets',`
41276 gen_require(`
41277 - type spamd_client_packet_t;
41278 + type ssdp_client_packet_t;
41279 ')
41280
41281 - dontaudit $1 spamd_client_packet_t:packet send;
41282 + dontaudit $1 ssdp_client_packet_t:packet send;
41283 ')
41284
41285 ########################################
41286 ## <summary>
41287 -## Receive spamd_client packets.
41288 +## Receive ssdp_client packets.
41289 ## </summary>
41290 ## <param name="domain">
41291 ## <summary>
41292 @@ -81806,17 +84907,17 @@ interface(`corenet_dontaudit_send_spamd_client_packets',`
41293 ## </param>
41294 ## <infoflow type="read" weight="10"/>
41295 #
41296 -interface(`corenet_receive_spamd_client_packets',`
41297 +interface(`corenet_receive_ssdp_client_packets',`
41298 gen_require(`
41299 - type spamd_client_packet_t;
41300 + type ssdp_client_packet_t;
41301 ')
41302
41303 - allow $1 spamd_client_packet_t:packet recv;
41304 + allow $1 ssdp_client_packet_t:packet recv;
41305 ')
41306
41307 ########################################
41308 ## <summary>
41309 -## Do not audit attempts to receive spamd_client packets.
41310 +## Do not audit attempts to receive ssdp_client packets.
41311 ## </summary>
41312 ## <param name="domain">
41313 ## <summary>
41314 @@ -81825,17 +84926,17 @@ interface(`corenet_receive_spamd_client_packets',`
41315 ## </param>
41316 ## <infoflow type="none"/>
41317 #
41318 -interface(`corenet_dontaudit_receive_spamd_client_packets',`
41319 +interface(`corenet_dontaudit_receive_ssdp_client_packets',`
41320 gen_require(`
41321 - type spamd_client_packet_t;
41322 + type ssdp_client_packet_t;
41323 ')
41324
41325 - dontaudit $1 spamd_client_packet_t:packet recv;
41326 + dontaudit $1 ssdp_client_packet_t:packet recv;
41327 ')
41328
41329 ########################################
41330 ## <summary>
41331 -## Send and receive spamd_client packets.
41332 +## Send and receive ssdp_client packets.
41333 ## </summary>
41334 ## <param name="domain">
41335 ## <summary>
41336 @@ -81844,14 +84945,14 @@ interface(`corenet_dontaudit_receive_spamd_client_packets',`
41337 ## </param>
41338 ## <infoflow type="both" weight="10"/>
41339 #
41340 -interface(`corenet_sendrecv_spamd_client_packets',`
41341 - corenet_send_spamd_client_packets($1)
41342 - corenet_receive_spamd_client_packets($1)
41343 +interface(`corenet_sendrecv_ssdp_client_packets',`
41344 + corenet_send_ssdp_client_packets($1)
41345 + corenet_receive_ssdp_client_packets($1)
41346 ')
41347
41348 ########################################
41349 ## <summary>
41350 -## Do not audit attempts to send and receive spamd_client packets.
41351 +## Do not audit attempts to send and receive ssdp_client packets.
41352 ## </summary>
41353 ## <param name="domain">
41354 ## <summary>
41355 @@ -81860,14 +84961,14 @@ interface(`corenet_sendrecv_spamd_client_packets',`
41356 ## </param>
41357 ## <infoflow type="none"/>
41358 #
41359 -interface(`corenet_dontaudit_sendrecv_spamd_client_packets',`
41360 - corenet_dontaudit_send_spamd_client_packets($1)
41361 - corenet_dontaudit_receive_spamd_client_packets($1)
41362 +interface(`corenet_dontaudit_sendrecv_ssdp_client_packets',`
41363 + corenet_dontaudit_send_ssdp_client_packets($1)
41364 + corenet_dontaudit_receive_ssdp_client_packets($1)
41365 ')
41366
41367 ########################################
41368 ## <summary>
41369 -## Relabel packets to spamd_client the packet type.
41370 +## Relabel packets to ssdp_client the packet type.
41371 ## </summary>
41372 ## <param name="domain">
41373 ## <summary>
41374 @@ -81875,18 +84976,18 @@ interface(`corenet_dontaudit_sendrecv_spamd_client_packets',`
41375 ## </summary>
41376 ## </param>
41377 #
41378 -interface(`corenet_relabelto_spamd_client_packets',`
41379 +interface(`corenet_relabelto_ssdp_client_packets',`
41380 gen_require(`
41381 - type spamd_client_packet_t;
41382 + type ssdp_client_packet_t;
41383 ')
41384
41385 - allow $1 spamd_client_packet_t:packet relabelto;
41386 + allow $1 ssdp_client_packet_t:packet relabelto;
41387 ')
41388
41389
41390 ########################################
41391 ## <summary>
41392 -## Send spamd_server packets.
41393 +## Send ssdp_server packets.
41394 ## </summary>
41395 ## <param name="domain">
41396 ## <summary>
41397 @@ -81895,17 +84996,17 @@ interface(`corenet_relabelto_spamd_client_packets',`
41398 ## </param>
41399 ## <infoflow type="write" weight="10"/>
41400 #
41401 -interface(`corenet_send_spamd_server_packets',`
41402 +interface(`corenet_send_ssdp_server_packets',`
41403 gen_require(`
41404 - type spamd_server_packet_t;
41405 + type ssdp_server_packet_t;
41406 ')
41407
41408 - allow $1 spamd_server_packet_t:packet send;
41409 + allow $1 ssdp_server_packet_t:packet send;
41410 ')
41411
41412 ########################################
41413 ## <summary>
41414 -## Do not audit attempts to send spamd_server packets.
41415 +## Do not audit attempts to send ssdp_server packets.
41416 ## </summary>
41417 ## <param name="domain">
41418 ## <summary>
41419 @@ -81914,17 +85015,17 @@ interface(`corenet_send_spamd_server_packets',`
41420 ## </param>
41421 ## <infoflow type="none"/>
41422 #
41423 -interface(`corenet_dontaudit_send_spamd_server_packets',`
41424 +interface(`corenet_dontaudit_send_ssdp_server_packets',`
41425 gen_require(`
41426 - type spamd_server_packet_t;
41427 + type ssdp_server_packet_t;
41428 ')
41429
41430 - dontaudit $1 spamd_server_packet_t:packet send;
41431 + dontaudit $1 ssdp_server_packet_t:packet send;
41432 ')
41433
41434 ########################################
41435 ## <summary>
41436 -## Receive spamd_server packets.
41437 +## Receive ssdp_server packets.
41438 ## </summary>
41439 ## <param name="domain">
41440 ## <summary>
41441 @@ -81933,17 +85034,17 @@ interface(`corenet_dontaudit_send_spamd_server_packets',`
41442 ## </param>
41443 ## <infoflow type="read" weight="10"/>
41444 #
41445 -interface(`corenet_receive_spamd_server_packets',`
41446 +interface(`corenet_receive_ssdp_server_packets',`
41447 gen_require(`
41448 - type spamd_server_packet_t;
41449 + type ssdp_server_packet_t;
41450 ')
41451
41452 - allow $1 spamd_server_packet_t:packet recv;
41453 + allow $1 ssdp_server_packet_t:packet recv;
41454 ')
41455
41456 ########################################
41457 ## <summary>
41458 -## Do not audit attempts to receive spamd_server packets.
41459 +## Do not audit attempts to receive ssdp_server packets.
41460 ## </summary>
41461 ## <param name="domain">
41462 ## <summary>
41463 @@ -81952,17 +85053,17 @@ interface(`corenet_receive_spamd_server_packets',`
41464 ## </param>
41465 ## <infoflow type="none"/>
41466 #
41467 -interface(`corenet_dontaudit_receive_spamd_server_packets',`
41468 +interface(`corenet_dontaudit_receive_ssdp_server_packets',`
41469 gen_require(`
41470 - type spamd_server_packet_t;
41471 + type ssdp_server_packet_t;
41472 ')
41473
41474 - dontaudit $1 spamd_server_packet_t:packet recv;
41475 + dontaudit $1 ssdp_server_packet_t:packet recv;
41476 ')
41477
41478 ########################################
41479 ## <summary>
41480 -## Send and receive spamd_server packets.
41481 +## Send and receive ssdp_server packets.
41482 ## </summary>
41483 ## <param name="domain">
41484 ## <summary>
41485 @@ -81971,14 +85072,14 @@ interface(`corenet_dontaudit_receive_spamd_server_packets',`
41486 ## </param>
41487 ## <infoflow type="both" weight="10"/>
41488 #
41489 -interface(`corenet_sendrecv_spamd_server_packets',`
41490 - corenet_send_spamd_server_packets($1)
41491 - corenet_receive_spamd_server_packets($1)
41492 +interface(`corenet_sendrecv_ssdp_server_packets',`
41493 + corenet_send_ssdp_server_packets($1)
41494 + corenet_receive_ssdp_server_packets($1)
41495 ')
41496
41497 ########################################
41498 ## <summary>
41499 -## Do not audit attempts to send and receive spamd_server packets.
41500 +## Do not audit attempts to send and receive ssdp_server packets.
41501 ## </summary>
41502 ## <param name="domain">
41503 ## <summary>
41504 @@ -81987,14 +85088,14 @@ interface(`corenet_sendrecv_spamd_server_packets',`
41505 ## </param>
41506 ## <infoflow type="none"/>
41507 #
41508 -interface(`corenet_dontaudit_sendrecv_spamd_server_packets',`
41509 - corenet_dontaudit_send_spamd_server_packets($1)
41510 - corenet_dontaudit_receive_spamd_server_packets($1)
41511 +interface(`corenet_dontaudit_sendrecv_ssdp_server_packets',`
41512 + corenet_dontaudit_send_ssdp_server_packets($1)
41513 + corenet_dontaudit_receive_ssdp_server_packets($1)
41514 ')
41515
41516 ########################################
41517 ## <summary>
41518 -## Relabel packets to spamd_server the packet type.
41519 +## Relabel packets to ssdp_server the packet type.
41520 ## </summary>
41521 ## <param name="domain">
41522 ## <summary>
41523 @@ -82002,12 +85103,12 @@ interface(`corenet_dontaudit_sendrecv_spamd_server_packets',`
41524 ## </summary>
41525 ## </param>
41526 #
41527 -interface(`corenet_relabelto_spamd_server_packets',`
41528 +interface(`corenet_relabelto_ssdp_server_packets',`
41529 gen_require(`
41530 - type spamd_server_packet_t;
41531 + type ssdp_server_packet_t;
41532 ')
41533
41534 - allow $1 spamd_server_packet_t:packet relabelto;
41535 + allow $1 ssdp_server_packet_t:packet relabelto;
41536 ')
41537
41538
41539 @@ -82015,7 +85116,7 @@ interface(`corenet_relabelto_spamd_server_packets',`
41540
41541 ########################################
41542 ## <summary>
41543 -## Send and receive TCP traffic on the speech port.
41544 +## Send and receive TCP traffic on the ssh port.
41545 ## </summary>
41546 ## <param name="domain">
41547 ## <summary>
41548 @@ -82024,17 +85125,17 @@ interface(`corenet_relabelto_spamd_server_packets',`
41549 ## </param>
41550 ## <infoflow type="both" weight="10"/>
41551 #
41552 -interface(`corenet_tcp_sendrecv_speech_port',`
41553 +interface(`corenet_tcp_sendrecv_ssh_port',`
41554 gen_require(`
41555 - type speech_port_t;
41556 + type ssh_port_t;
41557 ')
41558
41559 - allow $1 speech_port_t:tcp_socket { send_msg recv_msg };
41560 + allow $1 ssh_port_t:tcp_socket { send_msg recv_msg };
41561 ')
41562
41563 ########################################
41564 ## <summary>
41565 -## Send UDP traffic on the speech port.
41566 +## Send UDP traffic on the ssh port.
41567 ## </summary>
41568 ## <param name="domain">
41569 ## <summary>
41570 @@ -82043,17 +85144,17 @@ interface(`corenet_tcp_sendrecv_speech_port',`
41571 ## </param>
41572 ## <infoflow type="write" weight="10"/>
41573 #
41574 -interface(`corenet_udp_send_speech_port',`
41575 +interface(`corenet_udp_send_ssh_port',`
41576 gen_require(`
41577 - type speech_port_t;
41578 + type ssh_port_t;
41579 ')
41580
41581 - allow $1 speech_port_t:udp_socket send_msg;
41582 + allow $1 ssh_port_t:udp_socket send_msg;
41583 ')
41584
41585 ########################################
41586 ## <summary>
41587 -## Do not audit attempts to send UDP traffic on the speech port.
41588 +## Do not audit attempts to send UDP traffic on the ssh port.
41589 ## </summary>
41590 ## <param name="domain">
41591 ## <summary>
41592 @@ -82062,17 +85163,17 @@ interface(`corenet_udp_send_speech_port',`
41593 ## </param>
41594 ## <infoflow type="none"/>
41595 #
41596 -interface(`corenet_dontaudit_udp_send_speech_port',`
41597 +interface(`corenet_dontaudit_udp_send_ssh_port',`
41598 gen_require(`
41599 - type speech_port_t;
41600 + type ssh_port_t;
41601 ')
41602
41603 - dontaudit $1 speech_port_t:udp_socket send_msg;
41604 + dontaudit $1 ssh_port_t:udp_socket send_msg;
41605 ')
41606
41607 ########################################
41608 ## <summary>
41609 -## Receive UDP traffic on the speech port.
41610 +## Receive UDP traffic on the ssh port.
41611 ## </summary>
41612 ## <param name="domain">
41613 ## <summary>
41614 @@ -82081,17 +85182,17 @@ interface(`corenet_dontaudit_udp_send_speech_port',`
41615 ## </param>
41616 ## <infoflow type="read" weight="10"/>
41617 #
41618 -interface(`corenet_udp_receive_speech_port',`
41619 +interface(`corenet_udp_receive_ssh_port',`
41620 gen_require(`
41621 - type speech_port_t;
41622 + type ssh_port_t;
41623 ')
41624
41625 - allow $1 speech_port_t:udp_socket recv_msg;
41626 + allow $1 ssh_port_t:udp_socket recv_msg;
41627 ')
41628
41629 ########################################
41630 ## <summary>
41631 -## Do not audit attempts to receive UDP traffic on the speech port.
41632 +## Do not audit attempts to receive UDP traffic on the ssh port.
41633 ## </summary>
41634 ## <param name="domain">
41635 ## <summary>
41636 @@ -82100,17 +85201,17 @@ interface(`corenet_udp_receive_speech_port',`
41637 ## </param>
41638 ## <infoflow type="none"/>
41639 #
41640 -interface(`corenet_dontaudit_udp_receive_speech_port',`
41641 +interface(`corenet_dontaudit_udp_receive_ssh_port',`
41642 gen_require(`
41643 - type speech_port_t;
41644 + type ssh_port_t;
41645 ')
41646
41647 - dontaudit $1 speech_port_t:udp_socket recv_msg;
41648 + dontaudit $1 ssh_port_t:udp_socket recv_msg;
41649 ')
41650
41651 ########################################
41652 ## <summary>
41653 -## Send and receive UDP traffic on the speech port.
41654 +## Send and receive UDP traffic on the ssh port.
41655 ## </summary>
41656 ## <param name="domain">
41657 ## <summary>
41658 @@ -82119,15 +85220,15 @@ interface(`corenet_dontaudit_udp_receive_speech_port',`
41659 ## </param>
41660 ## <infoflow type="both" weight="10"/>
41661 #
41662 -interface(`corenet_udp_sendrecv_speech_port',`
41663 - corenet_udp_send_speech_port($1)
41664 - corenet_udp_receive_speech_port($1)
41665 +interface(`corenet_udp_sendrecv_ssh_port',`
41666 + corenet_udp_send_ssh_port($1)
41667 + corenet_udp_receive_ssh_port($1)
41668 ')
41669
41670 ########################################
41671 ## <summary>
41672 ## Do not audit attempts to send and receive
41673 -## UDP traffic on the speech port.
41674 +## UDP traffic on the ssh port.
41675 ## </summary>
41676 ## <param name="domain">
41677 ## <summary>
41678 @@ -82136,14 +85237,14 @@ interface(`corenet_udp_sendrecv_speech_port',`
41679 ## </param>
41680 ## <infoflow type="none"/>
41681 #
41682 -interface(`corenet_dontaudit_udp_sendrecv_speech_port',`
41683 - corenet_dontaudit_udp_send_speech_port($1)
41684 - corenet_dontaudit_udp_receive_speech_port($1)
41685 +interface(`corenet_dontaudit_udp_sendrecv_ssh_port',`
41686 + corenet_dontaudit_udp_send_ssh_port($1)
41687 + corenet_dontaudit_udp_receive_ssh_port($1)
41688 ')
41689
41690 ########################################
41691 ## <summary>
41692 -## Bind TCP sockets to the speech port.
41693 +## Bind TCP sockets to the ssh port.
41694 ## </summary>
41695 ## <param name="domain">
41696 ## <summary>
41697 @@ -82152,18 +85253,18 @@ interface(`corenet_dontaudit_udp_sendrecv_speech_port',`
41698 ## </param>
41699 ## <infoflow type="none"/>
41700 #
41701 -interface(`corenet_tcp_bind_speech_port',`
41702 +interface(`corenet_tcp_bind_ssh_port',`
41703 gen_require(`
41704 - type speech_port_t;
41705 + type ssh_port_t;
41706 ')
41707
41708 - allow $1 speech_port_t:tcp_socket name_bind;
41709 -
41710 + allow $1 ssh_port_t:tcp_socket name_bind;
41711 + allow $1 self:capability net_bind_service;
41712 ')
41713
41714 ########################################
41715 ## <summary>
41716 -## Bind UDP sockets to the speech port.
41717 +## Bind UDP sockets to the ssh port.
41718 ## </summary>
41719 ## <param name="domain">
41720 ## <summary>
41721 @@ -82172,18 +85273,18 @@ interface(`corenet_tcp_bind_speech_port',`
41722 ## </param>
41723 ## <infoflow type="none"/>
41724 #
41725 -interface(`corenet_udp_bind_speech_port',`
41726 +interface(`corenet_udp_bind_ssh_port',`
41727 gen_require(`
41728 - type speech_port_t;
41729 + type ssh_port_t;
41730 ')
41731
41732 - allow $1 speech_port_t:udp_socket name_bind;
41733 -
41734 + allow $1 ssh_port_t:udp_socket name_bind;
41735 + allow $1 self:capability net_bind_service;
41736 ')
41737
41738 ########################################
41739 ## <summary>
41740 -## Make a TCP connection to the speech port.
41741 +## Make a TCP connection to the ssh port.
41742 ## </summary>
41743 ## <param name="domain">
41744 ## <summary>
41745 @@ -82191,18 +85292,18 @@ interface(`corenet_udp_bind_speech_port',`
41746 ## </summary>
41747 ## </param>
41748 #
41749 -interface(`corenet_tcp_connect_speech_port',`
41750 +interface(`corenet_tcp_connect_ssh_port',`
41751 gen_require(`
41752 - type speech_port_t;
41753 + type ssh_port_t;
41754 ')
41755
41756 - allow $1 speech_port_t:tcp_socket name_connect;
41757 + allow $1 ssh_port_t:tcp_socket name_connect;
41758 ')
41759
41760
41761 ########################################
41762 ## <summary>
41763 -## Send speech_client packets.
41764 +## Send ssh_client packets.
41765 ## </summary>
41766 ## <param name="domain">
41767 ## <summary>
41768 @@ -82211,17 +85312,17 @@ interface(`corenet_tcp_connect_speech_port',`
41769 ## </param>
41770 ## <infoflow type="write" weight="10"/>
41771 #
41772 -interface(`corenet_send_speech_client_packets',`
41773 +interface(`corenet_send_ssh_client_packets',`
41774 gen_require(`
41775 - type speech_client_packet_t;
41776 + type ssh_client_packet_t;
41777 ')
41778
41779 - allow $1 speech_client_packet_t:packet send;
41780 + allow $1 ssh_client_packet_t:packet send;
41781 ')
41782
41783 ########################################
41784 ## <summary>
41785 -## Do not audit attempts to send speech_client packets.
41786 +## Do not audit attempts to send ssh_client packets.
41787 ## </summary>
41788 ## <param name="domain">
41789 ## <summary>
41790 @@ -82230,17 +85331,17 @@ interface(`corenet_send_speech_client_packets',`
41791 ## </param>
41792 ## <infoflow type="none"/>
41793 #
41794 -interface(`corenet_dontaudit_send_speech_client_packets',`
41795 +interface(`corenet_dontaudit_send_ssh_client_packets',`
41796 gen_require(`
41797 - type speech_client_packet_t;
41798 + type ssh_client_packet_t;
41799 ')
41800
41801 - dontaudit $1 speech_client_packet_t:packet send;
41802 + dontaudit $1 ssh_client_packet_t:packet send;
41803 ')
41804
41805 ########################################
41806 ## <summary>
41807 -## Receive speech_client packets.
41808 +## Receive ssh_client packets.
41809 ## </summary>
41810 ## <param name="domain">
41811 ## <summary>
41812 @@ -82249,17 +85350,17 @@ interface(`corenet_dontaudit_send_speech_client_packets',`
41813 ## </param>
41814 ## <infoflow type="read" weight="10"/>
41815 #
41816 -interface(`corenet_receive_speech_client_packets',`
41817 +interface(`corenet_receive_ssh_client_packets',`
41818 gen_require(`
41819 - type speech_client_packet_t;
41820 + type ssh_client_packet_t;
41821 ')
41822
41823 - allow $1 speech_client_packet_t:packet recv;
41824 + allow $1 ssh_client_packet_t:packet recv;
41825 ')
41826
41827 ########################################
41828 ## <summary>
41829 -## Do not audit attempts to receive speech_client packets.
41830 +## Do not audit attempts to receive ssh_client packets.
41831 ## </summary>
41832 ## <param name="domain">
41833 ## <summary>
41834 @@ -82268,17 +85369,17 @@ interface(`corenet_receive_speech_client_packets',`
41835 ## </param>
41836 ## <infoflow type="none"/>
41837 #
41838 -interface(`corenet_dontaudit_receive_speech_client_packets',`
41839 +interface(`corenet_dontaudit_receive_ssh_client_packets',`
41840 gen_require(`
41841 - type speech_client_packet_t;
41842 + type ssh_client_packet_t;
41843 ')
41844
41845 - dontaudit $1 speech_client_packet_t:packet recv;
41846 + dontaudit $1 ssh_client_packet_t:packet recv;
41847 ')
41848
41849 ########################################
41850 ## <summary>
41851 -## Send and receive speech_client packets.
41852 +## Send and receive ssh_client packets.
41853 ## </summary>
41854 ## <param name="domain">
41855 ## <summary>
41856 @@ -82287,14 +85388,14 @@ interface(`corenet_dontaudit_receive_speech_client_packets',`
41857 ## </param>
41858 ## <infoflow type="both" weight="10"/>
41859 #
41860 -interface(`corenet_sendrecv_speech_client_packets',`
41861 - corenet_send_speech_client_packets($1)
41862 - corenet_receive_speech_client_packets($1)
41863 +interface(`corenet_sendrecv_ssh_client_packets',`
41864 + corenet_send_ssh_client_packets($1)
41865 + corenet_receive_ssh_client_packets($1)
41866 ')
41867
41868 ########################################
41869 ## <summary>
41870 -## Do not audit attempts to send and receive speech_client packets.
41871 +## Do not audit attempts to send and receive ssh_client packets.
41872 ## </summary>
41873 ## <param name="domain">
41874 ## <summary>
41875 @@ -82303,14 +85404,14 @@ interface(`corenet_sendrecv_speech_client_packets',`
41876 ## </param>
41877 ## <infoflow type="none"/>
41878 #
41879 -interface(`corenet_dontaudit_sendrecv_speech_client_packets',`
41880 - corenet_dontaudit_send_speech_client_packets($1)
41881 - corenet_dontaudit_receive_speech_client_packets($1)
41882 +interface(`corenet_dontaudit_sendrecv_ssh_client_packets',`
41883 + corenet_dontaudit_send_ssh_client_packets($1)
41884 + corenet_dontaudit_receive_ssh_client_packets($1)
41885 ')
41886
41887 ########################################
41888 ## <summary>
41889 -## Relabel packets to speech_client the packet type.
41890 +## Relabel packets to ssh_client the packet type.
41891 ## </summary>
41892 ## <param name="domain">
41893 ## <summary>
41894 @@ -82318,18 +85419,18 @@ interface(`corenet_dontaudit_sendrecv_speech_client_packets',`
41895 ## </summary>
41896 ## </param>
41897 #
41898 -interface(`corenet_relabelto_speech_client_packets',`
41899 +interface(`corenet_relabelto_ssh_client_packets',`
41900 gen_require(`
41901 - type speech_client_packet_t;
41902 + type ssh_client_packet_t;
41903 ')
41904
41905 - allow $1 speech_client_packet_t:packet relabelto;
41906 + allow $1 ssh_client_packet_t:packet relabelto;
41907 ')
41908
41909
41910 ########################################
41911 ## <summary>
41912 -## Send speech_server packets.
41913 +## Send ssh_server packets.
41914 ## </summary>
41915 ## <param name="domain">
41916 ## <summary>
41917 @@ -82338,17 +85439,17 @@ interface(`corenet_relabelto_speech_client_packets',`
41918 ## </param>
41919 ## <infoflow type="write" weight="10"/>
41920 #
41921 -interface(`corenet_send_speech_server_packets',`
41922 +interface(`corenet_send_ssh_server_packets',`
41923 gen_require(`
41924 - type speech_server_packet_t;
41925 + type ssh_server_packet_t;
41926 ')
41927
41928 - allow $1 speech_server_packet_t:packet send;
41929 + allow $1 ssh_server_packet_t:packet send;
41930 ')
41931
41932 ########################################
41933 ## <summary>
41934 -## Do not audit attempts to send speech_server packets.
41935 +## Do not audit attempts to send ssh_server packets.
41936 ## </summary>
41937 ## <param name="domain">
41938 ## <summary>
41939 @@ -82357,17 +85458,17 @@ interface(`corenet_send_speech_server_packets',`
41940 ## </param>
41941 ## <infoflow type="none"/>
41942 #
41943 -interface(`corenet_dontaudit_send_speech_server_packets',`
41944 +interface(`corenet_dontaudit_send_ssh_server_packets',`
41945 gen_require(`
41946 - type speech_server_packet_t;
41947 + type ssh_server_packet_t;
41948 ')
41949
41950 - dontaudit $1 speech_server_packet_t:packet send;
41951 + dontaudit $1 ssh_server_packet_t:packet send;
41952 ')
41953
41954 ########################################
41955 ## <summary>
41956 -## Receive speech_server packets.
41957 +## Receive ssh_server packets.
41958 ## </summary>
41959 ## <param name="domain">
41960 ## <summary>
41961 @@ -82376,17 +85477,17 @@ interface(`corenet_dontaudit_send_speech_server_packets',`
41962 ## </param>
41963 ## <infoflow type="read" weight="10"/>
41964 #
41965 -interface(`corenet_receive_speech_server_packets',`
41966 +interface(`corenet_receive_ssh_server_packets',`
41967 gen_require(`
41968 - type speech_server_packet_t;
41969 + type ssh_server_packet_t;
41970 ')
41971
41972 - allow $1 speech_server_packet_t:packet recv;
41973 + allow $1 ssh_server_packet_t:packet recv;
41974 ')
41975
41976 ########################################
41977 ## <summary>
41978 -## Do not audit attempts to receive speech_server packets.
41979 +## Do not audit attempts to receive ssh_server packets.
41980 ## </summary>
41981 ## <param name="domain">
41982 ## <summary>
41983 @@ -82395,17 +85496,17 @@ interface(`corenet_receive_speech_server_packets',`
41984 ## </param>
41985 ## <infoflow type="none"/>
41986 #
41987 -interface(`corenet_dontaudit_receive_speech_server_packets',`
41988 +interface(`corenet_dontaudit_receive_ssh_server_packets',`
41989 gen_require(`
41990 - type speech_server_packet_t;
41991 + type ssh_server_packet_t;
41992 ')
41993
41994 - dontaudit $1 speech_server_packet_t:packet recv;
41995 + dontaudit $1 ssh_server_packet_t:packet recv;
41996 ')
41997
41998 ########################################
41999 ## <summary>
42000 -## Send and receive speech_server packets.
42001 +## Send and receive ssh_server packets.
42002 ## </summary>
42003 ## <param name="domain">
42004 ## <summary>
42005 @@ -82414,14 +85515,14 @@ interface(`corenet_dontaudit_receive_speech_server_packets',`
42006 ## </param>
42007 ## <infoflow type="both" weight="10"/>
42008 #
42009 -interface(`corenet_sendrecv_speech_server_packets',`
42010 - corenet_send_speech_server_packets($1)
42011 - corenet_receive_speech_server_packets($1)
42012 +interface(`corenet_sendrecv_ssh_server_packets',`
42013 + corenet_send_ssh_server_packets($1)
42014 + corenet_receive_ssh_server_packets($1)
42015 ')
42016
42017 ########################################
42018 ## <summary>
42019 -## Do not audit attempts to send and receive speech_server packets.
42020 +## Do not audit attempts to send and receive ssh_server packets.
42021 ## </summary>
42022 ## <param name="domain">
42023 ## <summary>
42024 @@ -82430,14 +85531,14 @@ interface(`corenet_sendrecv_speech_server_packets',`
42025 ## </param>
42026 ## <infoflow type="none"/>
42027 #
42028 -interface(`corenet_dontaudit_sendrecv_speech_server_packets',`
42029 - corenet_dontaudit_send_speech_server_packets($1)
42030 - corenet_dontaudit_receive_speech_server_packets($1)
42031 +interface(`corenet_dontaudit_sendrecv_ssh_server_packets',`
42032 + corenet_dontaudit_send_ssh_server_packets($1)
42033 + corenet_dontaudit_receive_ssh_server_packets($1)
42034 ')
42035
42036 ########################################
42037 ## <summary>
42038 -## Relabel packets to speech_server the packet type.
42039 +## Relabel packets to ssh_server the packet type.
42040 ## </summary>
42041 ## <param name="domain">
42042 ## <summary>
42043 @@ -82445,12 +85546,12 @@ interface(`corenet_dontaudit_sendrecv_speech_server_packets',`
42044 ## </summary>
42045 ## </param>
42046 #
42047 -interface(`corenet_relabelto_speech_server_packets',`
42048 +interface(`corenet_relabelto_ssh_server_packets',`
42049 gen_require(`
42050 - type speech_server_packet_t;
42051 + type ssh_server_packet_t;
42052 ')
42053
42054 - allow $1 speech_server_packet_t:packet relabelto;
42055 + allow $1 ssh_server_packet_t:packet relabelto;
42056 ')
42057
42058
42059 @@ -82458,7 +85559,7 @@ interface(`corenet_relabelto_speech_server_packets',`
42060
42061 ########################################
42062 ## <summary>
42063 -## Send and receive TCP traffic on the squid port.
42064 +## Send and receive TCP traffic on the stunnel port.
42065 ## </summary>
42066 ## <param name="domain">
42067 ## <summary>
42068 @@ -82467,17 +85568,17 @@ interface(`corenet_relabelto_speech_server_packets',`
42069 ## </param>
42070 ## <infoflow type="both" weight="10"/>
42071 #
42072 -interface(`corenet_tcp_sendrecv_squid_port',`
42073 +interface(`corenet_tcp_sendrecv_stunnel_port',`
42074 gen_require(`
42075 - type squid_port_t;
42076 + type stunnel_port_t;
42077 ')
42078
42079 - allow $1 squid_port_t:tcp_socket { send_msg recv_msg };
42080 + allow $1 stunnel_port_t:tcp_socket { send_msg recv_msg };
42081 ')
42082
42083 ########################################
42084 ## <summary>
42085 -## Send UDP traffic on the squid port.
42086 +## Send UDP traffic on the stunnel port.
42087 ## </summary>
42088 ## <param name="domain">
42089 ## <summary>
42090 @@ -82486,17 +85587,17 @@ interface(`corenet_tcp_sendrecv_squid_port',`
42091 ## </param>
42092 ## <infoflow type="write" weight="10"/>
42093 #
42094 -interface(`corenet_udp_send_squid_port',`
42095 +interface(`corenet_udp_send_stunnel_port',`
42096 gen_require(`
42097 - type squid_port_t;
42098 + type stunnel_port_t;
42099 ')
42100
42101 - allow $1 squid_port_t:udp_socket send_msg;
42102 + allow $1 stunnel_port_t:udp_socket send_msg;
42103 ')
42104
42105 ########################################
42106 ## <summary>
42107 -## Do not audit attempts to send UDP traffic on the squid port.
42108 +## Do not audit attempts to send UDP traffic on the stunnel port.
42109 ## </summary>
42110 ## <param name="domain">
42111 ## <summary>
42112 @@ -82505,17 +85606,17 @@ interface(`corenet_udp_send_squid_port',`
42113 ## </param>
42114 ## <infoflow type="none"/>
42115 #
42116 -interface(`corenet_dontaudit_udp_send_squid_port',`
42117 +interface(`corenet_dontaudit_udp_send_stunnel_port',`
42118 gen_require(`
42119 - type squid_port_t;
42120 + type stunnel_port_t;
42121 ')
42122
42123 - dontaudit $1 squid_port_t:udp_socket send_msg;
42124 + dontaudit $1 stunnel_port_t:udp_socket send_msg;
42125 ')
42126
42127 ########################################
42128 ## <summary>
42129 -## Receive UDP traffic on the squid port.
42130 +## Receive UDP traffic on the stunnel port.
42131 ## </summary>
42132 ## <param name="domain">
42133 ## <summary>
42134 @@ -82524,17 +85625,17 @@ interface(`corenet_dontaudit_udp_send_squid_port',`
42135 ## </param>
42136 ## <infoflow type="read" weight="10"/>
42137 #
42138 -interface(`corenet_udp_receive_squid_port',`
42139 +interface(`corenet_udp_receive_stunnel_port',`
42140 gen_require(`
42141 - type squid_port_t;
42142 + type stunnel_port_t;
42143 ')
42144
42145 - allow $1 squid_port_t:udp_socket recv_msg;
42146 + allow $1 stunnel_port_t:udp_socket recv_msg;
42147 ')
42148
42149 ########################################
42150 ## <summary>
42151 -## Do not audit attempts to receive UDP traffic on the squid port.
42152 +## Do not audit attempts to receive UDP traffic on the stunnel port.
42153 ## </summary>
42154 ## <param name="domain">
42155 ## <summary>
42156 @@ -82543,17 +85644,17 @@ interface(`corenet_udp_receive_squid_port',`
42157 ## </param>
42158 ## <infoflow type="none"/>
42159 #
42160 -interface(`corenet_dontaudit_udp_receive_squid_port',`
42161 +interface(`corenet_dontaudit_udp_receive_stunnel_port',`
42162 gen_require(`
42163 - type squid_port_t;
42164 + type stunnel_port_t;
42165 ')
42166
42167 - dontaudit $1 squid_port_t:udp_socket recv_msg;
42168 + dontaudit $1 stunnel_port_t:udp_socket recv_msg;
42169 ')
42170
42171 ########################################
42172 ## <summary>
42173 -## Send and receive UDP traffic on the squid port.
42174 +## Send and receive UDP traffic on the stunnel port.
42175 ## </summary>
42176 ## <param name="domain">
42177 ## <summary>
42178 @@ -82562,15 +85663,15 @@ interface(`corenet_dontaudit_udp_receive_squid_port',`
42179 ## </param>
42180 ## <infoflow type="both" weight="10"/>
42181 #
42182 -interface(`corenet_udp_sendrecv_squid_port',`
42183 - corenet_udp_send_squid_port($1)
42184 - corenet_udp_receive_squid_port($1)
42185 +interface(`corenet_udp_sendrecv_stunnel_port',`
42186 + corenet_udp_send_stunnel_port($1)
42187 + corenet_udp_receive_stunnel_port($1)
42188 ')
42189
42190 ########################################
42191 ## <summary>
42192 ## Do not audit attempts to send and receive
42193 -## UDP traffic on the squid port.
42194 +## UDP traffic on the stunnel port.
42195 ## </summary>
42196 ## <param name="domain">
42197 ## <summary>
42198 @@ -82579,14 +85680,14 @@ interface(`corenet_udp_sendrecv_squid_port',`
42199 ## </param>
42200 ## <infoflow type="none"/>
42201 #
42202 -interface(`corenet_dontaudit_udp_sendrecv_squid_port',`
42203 - corenet_dontaudit_udp_send_squid_port($1)
42204 - corenet_dontaudit_udp_receive_squid_port($1)
42205 +interface(`corenet_dontaudit_udp_sendrecv_stunnel_port',`
42206 + corenet_dontaudit_udp_send_stunnel_port($1)
42207 + corenet_dontaudit_udp_receive_stunnel_port($1)
42208 ')
42209
42210 ########################################
42211 ## <summary>
42212 -## Bind TCP sockets to the squid port.
42213 +## Bind TCP sockets to the stunnel port.
42214 ## </summary>
42215 ## <param name="domain">
42216 ## <summary>
42217 @@ -82595,18 +85696,18 @@ interface(`corenet_dontaudit_udp_sendrecv_squid_port',`
42218 ## </param>
42219 ## <infoflow type="none"/>
42220 #
42221 -interface(`corenet_tcp_bind_squid_port',`
42222 +interface(`corenet_tcp_bind_stunnel_port',`
42223 gen_require(`
42224 - type squid_port_t;
42225 + type stunnel_port_t;
42226 ')
42227
42228 - allow $1 squid_port_t:tcp_socket name_bind;
42229 + allow $1 stunnel_port_t:tcp_socket name_bind;
42230
42231 ')
42232
42233 ########################################
42234 ## <summary>
42235 -## Bind UDP sockets to the squid port.
42236 +## Bind UDP sockets to the stunnel port.
42237 ## </summary>
42238 ## <param name="domain">
42239 ## <summary>
42240 @@ -82615,18 +85716,18 @@ interface(`corenet_tcp_bind_squid_port',`
42241 ## </param>
42242 ## <infoflow type="none"/>
42243 #
42244 -interface(`corenet_udp_bind_squid_port',`
42245 +interface(`corenet_udp_bind_stunnel_port',`
42246 gen_require(`
42247 - type squid_port_t;
42248 + type stunnel_port_t;
42249 ')
42250
42251 - allow $1 squid_port_t:udp_socket name_bind;
42252 + allow $1 stunnel_port_t:udp_socket name_bind;
42253
42254 ')
42255
42256 ########################################
42257 ## <summary>
42258 -## Make a TCP connection to the squid port.
42259 +## Make a TCP connection to the stunnel port.
42260 ## </summary>
42261 ## <param name="domain">
42262 ## <summary>
42263 @@ -82634,18 +85735,18 @@ interface(`corenet_udp_bind_squid_port',`
42264 ## </summary>
42265 ## </param>
42266 #
42267 -interface(`corenet_tcp_connect_squid_port',`
42268 +interface(`corenet_tcp_connect_stunnel_port',`
42269 gen_require(`
42270 - type squid_port_t;
42271 + type stunnel_port_t;
42272 ')
42273
42274 - allow $1 squid_port_t:tcp_socket name_connect;
42275 + allow $1 stunnel_port_t:tcp_socket name_connect;
42276 ')
42277
42278
42279 ########################################
42280 ## <summary>
42281 -## Send squid_client packets.
42282 +## Send stunnel_client packets.
42283 ## </summary>
42284 ## <param name="domain">
42285 ## <summary>
42286 @@ -82654,17 +85755,17 @@ interface(`corenet_tcp_connect_squid_port',`
42287 ## </param>
42288 ## <infoflow type="write" weight="10"/>
42289 #
42290 -interface(`corenet_send_squid_client_packets',`
42291 +interface(`corenet_send_stunnel_client_packets',`
42292 gen_require(`
42293 - type squid_client_packet_t;
42294 + type stunnel_client_packet_t;
42295 ')
42296
42297 - allow $1 squid_client_packet_t:packet send;
42298 + allow $1 stunnel_client_packet_t:packet send;
42299 ')
42300
42301 ########################################
42302 ## <summary>
42303 -## Do not audit attempts to send squid_client packets.
42304 +## Do not audit attempts to send stunnel_client packets.
42305 ## </summary>
42306 ## <param name="domain">
42307 ## <summary>
42308 @@ -82673,17 +85774,17 @@ interface(`corenet_send_squid_client_packets',`
42309 ## </param>
42310 ## <infoflow type="none"/>
42311 #
42312 -interface(`corenet_dontaudit_send_squid_client_packets',`
42313 +interface(`corenet_dontaudit_send_stunnel_client_packets',`
42314 gen_require(`
42315 - type squid_client_packet_t;
42316 + type stunnel_client_packet_t;
42317 ')
42318
42319 - dontaudit $1 squid_client_packet_t:packet send;
42320 + dontaudit $1 stunnel_client_packet_t:packet send;
42321 ')
42322
42323 ########################################
42324 ## <summary>
42325 -## Receive squid_client packets.
42326 +## Receive stunnel_client packets.
42327 ## </summary>
42328 ## <param name="domain">
42329 ## <summary>
42330 @@ -82692,17 +85793,17 @@ interface(`corenet_dontaudit_send_squid_client_packets',`
42331 ## </param>
42332 ## <infoflow type="read" weight="10"/>
42333 #
42334 -interface(`corenet_receive_squid_client_packets',`
42335 +interface(`corenet_receive_stunnel_client_packets',`
42336 gen_require(`
42337 - type squid_client_packet_t;
42338 + type stunnel_client_packet_t;
42339 ')
42340
42341 - allow $1 squid_client_packet_t:packet recv;
42342 + allow $1 stunnel_client_packet_t:packet recv;
42343 ')
42344
42345 ########################################
42346 ## <summary>
42347 -## Do not audit attempts to receive squid_client packets.
42348 +## Do not audit attempts to receive stunnel_client packets.
42349 ## </summary>
42350 ## <param name="domain">
42351 ## <summary>
42352 @@ -82711,17 +85812,17 @@ interface(`corenet_receive_squid_client_packets',`
42353 ## </param>
42354 ## <infoflow type="none"/>
42355 #
42356 -interface(`corenet_dontaudit_receive_squid_client_packets',`
42357 +interface(`corenet_dontaudit_receive_stunnel_client_packets',`
42358 gen_require(`
42359 - type squid_client_packet_t;
42360 + type stunnel_client_packet_t;
42361 ')
42362
42363 - dontaudit $1 squid_client_packet_t:packet recv;
42364 + dontaudit $1 stunnel_client_packet_t:packet recv;
42365 ')
42366
42367 ########################################
42368 ## <summary>
42369 -## Send and receive squid_client packets.
42370 +## Send and receive stunnel_client packets.
42371 ## </summary>
42372 ## <param name="domain">
42373 ## <summary>
42374 @@ -82730,14 +85831,14 @@ interface(`corenet_dontaudit_receive_squid_client_packets',`
42375 ## </param>
42376 ## <infoflow type="both" weight="10"/>
42377 #
42378 -interface(`corenet_sendrecv_squid_client_packets',`
42379 - corenet_send_squid_client_packets($1)
42380 - corenet_receive_squid_client_packets($1)
42381 +interface(`corenet_sendrecv_stunnel_client_packets',`
42382 + corenet_send_stunnel_client_packets($1)
42383 + corenet_receive_stunnel_client_packets($1)
42384 ')
42385
42386 ########################################
42387 ## <summary>
42388 -## Do not audit attempts to send and receive squid_client packets.
42389 +## Do not audit attempts to send and receive stunnel_client packets.
42390 ## </summary>
42391 ## <param name="domain">
42392 ## <summary>
42393 @@ -82746,14 +85847,14 @@ interface(`corenet_sendrecv_squid_client_packets',`
42394 ## </param>
42395 ## <infoflow type="none"/>
42396 #
42397 -interface(`corenet_dontaudit_sendrecv_squid_client_packets',`
42398 - corenet_dontaudit_send_squid_client_packets($1)
42399 - corenet_dontaudit_receive_squid_client_packets($1)
42400 +interface(`corenet_dontaudit_sendrecv_stunnel_client_packets',`
42401 + corenet_dontaudit_send_stunnel_client_packets($1)
42402 + corenet_dontaudit_receive_stunnel_client_packets($1)
42403 ')
42404
42405 ########################################
42406 ## <summary>
42407 -## Relabel packets to squid_client the packet type.
42408 +## Relabel packets to stunnel_client the packet type.
42409 ## </summary>
42410 ## <param name="domain">
42411 ## <summary>
42412 @@ -82761,18 +85862,18 @@ interface(`corenet_dontaudit_sendrecv_squid_client_packets',`
42413 ## </summary>
42414 ## </param>
42415 #
42416 -interface(`corenet_relabelto_squid_client_packets',`
42417 +interface(`corenet_relabelto_stunnel_client_packets',`
42418 gen_require(`
42419 - type squid_client_packet_t;
42420 + type stunnel_client_packet_t;
42421 ')
42422
42423 - allow $1 squid_client_packet_t:packet relabelto;
42424 + allow $1 stunnel_client_packet_t:packet relabelto;
42425 ')
42426
42427
42428 ########################################
42429 ## <summary>
42430 -## Send squid_server packets.
42431 +## Send stunnel_server packets.
42432 ## </summary>
42433 ## <param name="domain">
42434 ## <summary>
42435 @@ -82781,17 +85882,17 @@ interface(`corenet_relabelto_squid_client_packets',`
42436 ## </param>
42437 ## <infoflow type="write" weight="10"/>
42438 #
42439 -interface(`corenet_send_squid_server_packets',`
42440 +interface(`corenet_send_stunnel_server_packets',`
42441 gen_require(`
42442 - type squid_server_packet_t;
42443 + type stunnel_server_packet_t;
42444 ')
42445
42446 - allow $1 squid_server_packet_t:packet send;
42447 + allow $1 stunnel_server_packet_t:packet send;
42448 ')
42449
42450 ########################################
42451 ## <summary>
42452 -## Do not audit attempts to send squid_server packets.
42453 +## Do not audit attempts to send stunnel_server packets.
42454 ## </summary>
42455 ## <param name="domain">
42456 ## <summary>
42457 @@ -82800,17 +85901,17 @@ interface(`corenet_send_squid_server_packets',`
42458 ## </param>
42459 ## <infoflow type="none"/>
42460 #
42461 -interface(`corenet_dontaudit_send_squid_server_packets',`
42462 +interface(`corenet_dontaudit_send_stunnel_server_packets',`
42463 gen_require(`
42464 - type squid_server_packet_t;
42465 + type stunnel_server_packet_t;
42466 ')
42467
42468 - dontaudit $1 squid_server_packet_t:packet send;
42469 + dontaudit $1 stunnel_server_packet_t:packet send;
42470 ')
42471
42472 ########################################
42473 ## <summary>
42474 -## Receive squid_server packets.
42475 +## Receive stunnel_server packets.
42476 ## </summary>
42477 ## <param name="domain">
42478 ## <summary>
42479 @@ -82819,17 +85920,17 @@ interface(`corenet_dontaudit_send_squid_server_packets',`
42480 ## </param>
42481 ## <infoflow type="read" weight="10"/>
42482 #
42483 -interface(`corenet_receive_squid_server_packets',`
42484 +interface(`corenet_receive_stunnel_server_packets',`
42485 gen_require(`
42486 - type squid_server_packet_t;
42487 + type stunnel_server_packet_t;
42488 ')
42489
42490 - allow $1 squid_server_packet_t:packet recv;
42491 + allow $1 stunnel_server_packet_t:packet recv;
42492 ')
42493
42494 ########################################
42495 ## <summary>
42496 -## Do not audit attempts to receive squid_server packets.
42497 +## Do not audit attempts to receive stunnel_server packets.
42498 ## </summary>
42499 ## <param name="domain">
42500 ## <summary>
42501 @@ -82838,17 +85939,17 @@ interface(`corenet_receive_squid_server_packets',`
42502 ## </param>
42503 ## <infoflow type="none"/>
42504 #
42505 -interface(`corenet_dontaudit_receive_squid_server_packets',`
42506 +interface(`corenet_dontaudit_receive_stunnel_server_packets',`
42507 gen_require(`
42508 - type squid_server_packet_t;
42509 + type stunnel_server_packet_t;
42510 ')
42511
42512 - dontaudit $1 squid_server_packet_t:packet recv;
42513 + dontaudit $1 stunnel_server_packet_t:packet recv;
42514 ')
42515
42516 ########################################
42517 ## <summary>
42518 -## Send and receive squid_server packets.
42519 +## Send and receive stunnel_server packets.
42520 ## </summary>
42521 ## <param name="domain">
42522 ## <summary>
42523 @@ -82857,14 +85958,14 @@ interface(`corenet_dontaudit_receive_squid_server_packets',`
42524 ## </param>
42525 ## <infoflow type="both" weight="10"/>
42526 #
42527 -interface(`corenet_sendrecv_squid_server_packets',`
42528 - corenet_send_squid_server_packets($1)
42529 - corenet_receive_squid_server_packets($1)
42530 +interface(`corenet_sendrecv_stunnel_server_packets',`
42531 + corenet_send_stunnel_server_packets($1)
42532 + corenet_receive_stunnel_server_packets($1)
42533 ')
42534
42535 ########################################
42536 ## <summary>
42537 -## Do not audit attempts to send and receive squid_server packets.
42538 +## Do not audit attempts to send and receive stunnel_server packets.
42539 ## </summary>
42540 ## <param name="domain">
42541 ## <summary>
42542 @@ -82873,14 +85974,14 @@ interface(`corenet_sendrecv_squid_server_packets',`
42543 ## </param>
42544 ## <infoflow type="none"/>
42545 #
42546 -interface(`corenet_dontaudit_sendrecv_squid_server_packets',`
42547 - corenet_dontaudit_send_squid_server_packets($1)
42548 - corenet_dontaudit_receive_squid_server_packets($1)
42549 +interface(`corenet_dontaudit_sendrecv_stunnel_server_packets',`
42550 + corenet_dontaudit_send_stunnel_server_packets($1)
42551 + corenet_dontaudit_receive_stunnel_server_packets($1)
42552 ')
42553
42554 ########################################
42555 ## <summary>
42556 -## Relabel packets to squid_server the packet type.
42557 +## Relabel packets to stunnel_server the packet type.
42558 ## </summary>
42559 ## <param name="domain">
42560 ## <summary>
42561 @@ -82888,20 +85989,20 @@ interface(`corenet_dontaudit_sendrecv_squid_server_packets',`
42562 ## </summary>
42563 ## </param>
42564 #
42565 -interface(`corenet_relabelto_squid_server_packets',`
42566 +interface(`corenet_relabelto_stunnel_server_packets',`
42567 gen_require(`
42568 - type squid_server_packet_t;
42569 + type stunnel_server_packet_t;
42570 ')
42571
42572 - allow $1 squid_server_packet_t:packet relabelto;
42573 + allow $1 stunnel_server_packet_t:packet relabelto;
42574 ')
42575
42576 - # snmp and htcp
42577 + # no defined portcon
42578
42579
42580 ########################################
42581 ## <summary>
42582 -## Send and receive TCP traffic on the ssdp port.
42583 +## Send and receive TCP traffic on the svn port.
42584 ## </summary>
42585 ## <param name="domain">
42586 ## <summary>
42587 @@ -82910,17 +86011,17 @@ interface(`corenet_relabelto_squid_server_packets',`
42588 ## </param>
42589 ## <infoflow type="both" weight="10"/>
42590 #
42591 -interface(`corenet_tcp_sendrecv_ssdp_port',`
42592 +interface(`corenet_tcp_sendrecv_svn_port',`
42593 gen_require(`
42594 - type ssdp_port_t;
42595 + type svn_port_t;
42596 ')
42597
42598 - allow $1 ssdp_port_t:tcp_socket { send_msg recv_msg };
42599 + allow $1 svn_port_t:tcp_socket { send_msg recv_msg };
42600 ')
42601
42602 ########################################
42603 ## <summary>
42604 -## Send UDP traffic on the ssdp port.
42605 +## Send UDP traffic on the svn port.
42606 ## </summary>
42607 ## <param name="domain">
42608 ## <summary>
42609 @@ -82929,17 +86030,17 @@ interface(`corenet_tcp_sendrecv_ssdp_port',`
42610 ## </param>
42611 ## <infoflow type="write" weight="10"/>
42612 #
42613 -interface(`corenet_udp_send_ssdp_port',`
42614 +interface(`corenet_udp_send_svn_port',`
42615 gen_require(`
42616 - type ssdp_port_t;
42617 + type svn_port_t;
42618 ')
42619
42620 - allow $1 ssdp_port_t:udp_socket send_msg;
42621 + allow $1 svn_port_t:udp_socket send_msg;
42622 ')
42623
42624 ########################################
42625 ## <summary>
42626 -## Do not audit attempts to send UDP traffic on the ssdp port.
42627 +## Do not audit attempts to send UDP traffic on the svn port.
42628 ## </summary>
42629 ## <param name="domain">
42630 ## <summary>
42631 @@ -82948,17 +86049,17 @@ interface(`corenet_udp_send_ssdp_port',`
42632 ## </param>
42633 ## <infoflow type="none"/>
42634 #
42635 -interface(`corenet_dontaudit_udp_send_ssdp_port',`
42636 +interface(`corenet_dontaudit_udp_send_svn_port',`
42637 gen_require(`
42638 - type ssdp_port_t;
42639 + type svn_port_t;
42640 ')
42641
42642 - dontaudit $1 ssdp_port_t:udp_socket send_msg;
42643 + dontaudit $1 svn_port_t:udp_socket send_msg;
42644 ')
42645
42646 ########################################
42647 ## <summary>
42648 -## Receive UDP traffic on the ssdp port.
42649 +## Receive UDP traffic on the svn port.
42650 ## </summary>
42651 ## <param name="domain">
42652 ## <summary>
42653 @@ -82967,17 +86068,17 @@ interface(`corenet_dontaudit_udp_send_ssdp_port',`
42654 ## </param>
42655 ## <infoflow type="read" weight="10"/>
42656 #
42657 -interface(`corenet_udp_receive_ssdp_port',`
42658 +interface(`corenet_udp_receive_svn_port',`
42659 gen_require(`
42660 - type ssdp_port_t;
42661 + type svn_port_t;
42662 ')
42663
42664 - allow $1 ssdp_port_t:udp_socket recv_msg;
42665 + allow $1 svn_port_t:udp_socket recv_msg;
42666 ')
42667
42668 ########################################
42669 ## <summary>
42670 -## Do not audit attempts to receive UDP traffic on the ssdp port.
42671 +## Do not audit attempts to receive UDP traffic on the svn port.
42672 ## </summary>
42673 ## <param name="domain">
42674 ## <summary>
42675 @@ -82986,17 +86087,17 @@ interface(`corenet_udp_receive_ssdp_port',`
42676 ## </param>
42677 ## <infoflow type="none"/>
42678 #
42679 -interface(`corenet_dontaudit_udp_receive_ssdp_port',`
42680 +interface(`corenet_dontaudit_udp_receive_svn_port',`
42681 gen_require(`
42682 - type ssdp_port_t;
42683 + type svn_port_t;
42684 ')
42685
42686 - dontaudit $1 ssdp_port_t:udp_socket recv_msg;
42687 + dontaudit $1 svn_port_t:udp_socket recv_msg;
42688 ')
42689
42690 ########################################
42691 ## <summary>
42692 -## Send and receive UDP traffic on the ssdp port.
42693 +## Send and receive UDP traffic on the svn port.
42694 ## </summary>
42695 ## <param name="domain">
42696 ## <summary>
42697 @@ -83005,15 +86106,15 @@ interface(`corenet_dontaudit_udp_receive_ssdp_port',`
42698 ## </param>
42699 ## <infoflow type="both" weight="10"/>
42700 #
42701 -interface(`corenet_udp_sendrecv_ssdp_port',`
42702 - corenet_udp_send_ssdp_port($1)
42703 - corenet_udp_receive_ssdp_port($1)
42704 +interface(`corenet_udp_sendrecv_svn_port',`
42705 + corenet_udp_send_svn_port($1)
42706 + corenet_udp_receive_svn_port($1)
42707 ')
42708
42709 ########################################
42710 ## <summary>
42711 ## Do not audit attempts to send and receive
42712 -## UDP traffic on the ssdp port.
42713 +## UDP traffic on the svn port.
42714 ## </summary>
42715 ## <param name="domain">
42716 ## <summary>
42717 @@ -83022,14 +86123,14 @@ interface(`corenet_udp_sendrecv_ssdp_port',`
42718 ## </param>
42719 ## <infoflow type="none"/>
42720 #
42721 -interface(`corenet_dontaudit_udp_sendrecv_ssdp_port',`
42722 - corenet_dontaudit_udp_send_ssdp_port($1)
42723 - corenet_dontaudit_udp_receive_ssdp_port($1)
42724 +interface(`corenet_dontaudit_udp_sendrecv_svn_port',`
42725 + corenet_dontaudit_udp_send_svn_port($1)
42726 + corenet_dontaudit_udp_receive_svn_port($1)
42727 ')
42728
42729 ########################################
42730 ## <summary>
42731 -## Bind TCP sockets to the ssdp port.
42732 +## Bind TCP sockets to the svn port.
42733 ## </summary>
42734 ## <param name="domain">
42735 ## <summary>
42736 @@ -83038,18 +86139,18 @@ interface(`corenet_dontaudit_udp_sendrecv_ssdp_port',`
42737 ## </param>
42738 ## <infoflow type="none"/>
42739 #
42740 -interface(`corenet_tcp_bind_ssdp_port',`
42741 +interface(`corenet_tcp_bind_svn_port',`
42742 gen_require(`
42743 - type ssdp_port_t;
42744 + type svn_port_t;
42745 ')
42746
42747 - allow $1 ssdp_port_t:tcp_socket name_bind;
42748 + allow $1 svn_port_t:tcp_socket name_bind;
42749
42750 ')
42751
42752 ########################################
42753 ## <summary>
42754 -## Bind UDP sockets to the ssdp port.
42755 +## Bind UDP sockets to the svn port.
42756 ## </summary>
42757 ## <param name="domain">
42758 ## <summary>
42759 @@ -83058,18 +86159,18 @@ interface(`corenet_tcp_bind_ssdp_port',`
42760 ## </param>
42761 ## <infoflow type="none"/>
42762 #
42763 -interface(`corenet_udp_bind_ssdp_port',`
42764 +interface(`corenet_udp_bind_svn_port',`
42765 gen_require(`
42766 - type ssdp_port_t;
42767 + type svn_port_t;
42768 ')
42769
42770 - allow $1 ssdp_port_t:udp_socket name_bind;
42771 + allow $1 svn_port_t:udp_socket name_bind;
42772
42773 ')
42774
42775 ########################################
42776 ## <summary>
42777 -## Make a TCP connection to the ssdp port.
42778 +## Make a TCP connection to the svn port.
42779 ## </summary>
42780 ## <param name="domain">
42781 ## <summary>
42782 @@ -83077,18 +86178,18 @@ interface(`corenet_udp_bind_ssdp_port',`
42783 ## </summary>
42784 ## </param>
42785 #
42786 -interface(`corenet_tcp_connect_ssdp_port',`
42787 +interface(`corenet_tcp_connect_svn_port',`
42788 gen_require(`
42789 - type ssdp_port_t;
42790 + type svn_port_t;
42791 ')
42792
42793 - allow $1 ssdp_port_t:tcp_socket name_connect;
42794 + allow $1 svn_port_t:tcp_socket name_connect;
42795 ')
42796
42797
42798 ########################################
42799 ## <summary>
42800 -## Send ssdp_client packets.
42801 +## Send svn_client packets.
42802 ## </summary>
42803 ## <param name="domain">
42804 ## <summary>
42805 @@ -83097,17 +86198,17 @@ interface(`corenet_tcp_connect_ssdp_port',`
42806 ## </param>
42807 ## <infoflow type="write" weight="10"/>
42808 #
42809 -interface(`corenet_send_ssdp_client_packets',`
42810 +interface(`corenet_send_svn_client_packets',`
42811 gen_require(`
42812 - type ssdp_client_packet_t;
42813 + type svn_client_packet_t;
42814 ')
42815
42816 - allow $1 ssdp_client_packet_t:packet send;
42817 + allow $1 svn_client_packet_t:packet send;
42818 ')
42819
42820 ########################################
42821 ## <summary>
42822 -## Do not audit attempts to send ssdp_client packets.
42823 +## Do not audit attempts to send svn_client packets.
42824 ## </summary>
42825 ## <param name="domain">
42826 ## <summary>
42827 @@ -83116,17 +86217,17 @@ interface(`corenet_send_ssdp_client_packets',`
42828 ## </param>
42829 ## <infoflow type="none"/>
42830 #
42831 -interface(`corenet_dontaudit_send_ssdp_client_packets',`
42832 +interface(`corenet_dontaudit_send_svn_client_packets',`
42833 gen_require(`
42834 - type ssdp_client_packet_t;
42835 + type svn_client_packet_t;
42836 ')
42837
42838 - dontaudit $1 ssdp_client_packet_t:packet send;
42839 + dontaudit $1 svn_client_packet_t:packet send;
42840 ')
42841
42842 ########################################
42843 ## <summary>
42844 -## Receive ssdp_client packets.
42845 +## Receive svn_client packets.
42846 ## </summary>
42847 ## <param name="domain">
42848 ## <summary>
42849 @@ -83135,17 +86236,17 @@ interface(`corenet_dontaudit_send_ssdp_client_packets',`
42850 ## </param>
42851 ## <infoflow type="read" weight="10"/>
42852 #
42853 -interface(`corenet_receive_ssdp_client_packets',`
42854 +interface(`corenet_receive_svn_client_packets',`
42855 gen_require(`
42856 - type ssdp_client_packet_t;
42857 + type svn_client_packet_t;
42858 ')
42859
42860 - allow $1 ssdp_client_packet_t:packet recv;
42861 + allow $1 svn_client_packet_t:packet recv;
42862 ')
42863
42864 ########################################
42865 ## <summary>
42866 -## Do not audit attempts to receive ssdp_client packets.
42867 +## Do not audit attempts to receive svn_client packets.
42868 ## </summary>
42869 ## <param name="domain">
42870 ## <summary>
42871 @@ -83154,17 +86255,17 @@ interface(`corenet_receive_ssdp_client_packets',`
42872 ## </param>
42873 ## <infoflow type="none"/>
42874 #
42875 -interface(`corenet_dontaudit_receive_ssdp_client_packets',`
42876 +interface(`corenet_dontaudit_receive_svn_client_packets',`
42877 gen_require(`
42878 - type ssdp_client_packet_t;
42879 + type svn_client_packet_t;
42880 ')
42881
42882 - dontaudit $1 ssdp_client_packet_t:packet recv;
42883 + dontaudit $1 svn_client_packet_t:packet recv;
42884 ')
42885
42886 ########################################
42887 ## <summary>
42888 -## Send and receive ssdp_client packets.
42889 +## Send and receive svn_client packets.
42890 ## </summary>
42891 ## <param name="domain">
42892 ## <summary>
42893 @@ -83173,14 +86274,14 @@ interface(`corenet_dontaudit_receive_ssdp_client_packets',`
42894 ## </param>
42895 ## <infoflow type="both" weight="10"/>
42896 #
42897 -interface(`corenet_sendrecv_ssdp_client_packets',`
42898 - corenet_send_ssdp_client_packets($1)
42899 - corenet_receive_ssdp_client_packets($1)
42900 +interface(`corenet_sendrecv_svn_client_packets',`
42901 + corenet_send_svn_client_packets($1)
42902 + corenet_receive_svn_client_packets($1)
42903 ')
42904
42905 ########################################
42906 ## <summary>
42907 -## Do not audit attempts to send and receive ssdp_client packets.
42908 +## Do not audit attempts to send and receive svn_client packets.
42909 ## </summary>
42910 ## <param name="domain">
42911 ## <summary>
42912 @@ -83189,14 +86290,14 @@ interface(`corenet_sendrecv_ssdp_client_packets',`
42913 ## </param>
42914 ## <infoflow type="none"/>
42915 #
42916 -interface(`corenet_dontaudit_sendrecv_ssdp_client_packets',`
42917 - corenet_dontaudit_send_ssdp_client_packets($1)
42918 - corenet_dontaudit_receive_ssdp_client_packets($1)
42919 +interface(`corenet_dontaudit_sendrecv_svn_client_packets',`
42920 + corenet_dontaudit_send_svn_client_packets($1)
42921 + corenet_dontaudit_receive_svn_client_packets($1)
42922 ')
42923
42924 ########################################
42925 ## <summary>
42926 -## Relabel packets to ssdp_client the packet type.
42927 +## Relabel packets to svn_client the packet type.
42928 ## </summary>
42929 ## <param name="domain">
42930 ## <summary>
42931 @@ -83204,18 +86305,18 @@ interface(`corenet_dontaudit_sendrecv_ssdp_client_packets',`
42932 ## </summary>
42933 ## </param>
42934 #
42935 -interface(`corenet_relabelto_ssdp_client_packets',`
42936 +interface(`corenet_relabelto_svn_client_packets',`
42937 gen_require(`
42938 - type ssdp_client_packet_t;
42939 + type svn_client_packet_t;
42940 ')
42941
42942 - allow $1 ssdp_client_packet_t:packet relabelto;
42943 + allow $1 svn_client_packet_t:packet relabelto;
42944 ')
42945
42946
42947 ########################################
42948 ## <summary>
42949 -## Send ssdp_server packets.
42950 +## Send svn_server packets.
42951 ## </summary>
42952 ## <param name="domain">
42953 ## <summary>
42954 @@ -83224,17 +86325,17 @@ interface(`corenet_relabelto_ssdp_client_packets',`
42955 ## </param>
42956 ## <infoflow type="write" weight="10"/>
42957 #
42958 -interface(`corenet_send_ssdp_server_packets',`
42959 +interface(`corenet_send_svn_server_packets',`
42960 gen_require(`
42961 - type ssdp_server_packet_t;
42962 + type svn_server_packet_t;
42963 ')
42964
42965 - allow $1 ssdp_server_packet_t:packet send;
42966 + allow $1 svn_server_packet_t:packet send;
42967 ')
42968
42969 ########################################
42970 ## <summary>
42971 -## Do not audit attempts to send ssdp_server packets.
42972 +## Do not audit attempts to send svn_server packets.
42973 ## </summary>
42974 ## <param name="domain">
42975 ## <summary>
42976 @@ -83243,17 +86344,17 @@ interface(`corenet_send_ssdp_server_packets',`
42977 ## </param>
42978 ## <infoflow type="none"/>
42979 #
42980 -interface(`corenet_dontaudit_send_ssdp_server_packets',`
42981 +interface(`corenet_dontaudit_send_svn_server_packets',`
42982 gen_require(`
42983 - type ssdp_server_packet_t;
42984 + type svn_server_packet_t;
42985 ')
42986
42987 - dontaudit $1 ssdp_server_packet_t:packet send;
42988 + dontaudit $1 svn_server_packet_t:packet send;
42989 ')
42990
42991 ########################################
42992 ## <summary>
42993 -## Receive ssdp_server packets.
42994 +## Receive svn_server packets.
42995 ## </summary>
42996 ## <param name="domain">
42997 ## <summary>
42998 @@ -83262,17 +86363,17 @@ interface(`corenet_dontaudit_send_ssdp_server_packets',`
42999 ## </param>
43000 ## <infoflow type="read" weight="10"/>
43001 #
43002 -interface(`corenet_receive_ssdp_server_packets',`
43003 +interface(`corenet_receive_svn_server_packets',`
43004 gen_require(`
43005 - type ssdp_server_packet_t;
43006 + type svn_server_packet_t;
43007 ')
43008
43009 - allow $1 ssdp_server_packet_t:packet recv;
43010 + allow $1 svn_server_packet_t:packet recv;
43011 ')
43012
43013 ########################################
43014 ## <summary>
43015 -## Do not audit attempts to receive ssdp_server packets.
43016 +## Do not audit attempts to receive svn_server packets.
43017 ## </summary>
43018 ## <param name="domain">
43019 ## <summary>
43020 @@ -83281,17 +86382,17 @@ interface(`corenet_receive_ssdp_server_packets',`
43021 ## </param>
43022 ## <infoflow type="none"/>
43023 #
43024 -interface(`corenet_dontaudit_receive_ssdp_server_packets',`
43025 +interface(`corenet_dontaudit_receive_svn_server_packets',`
43026 gen_require(`
43027 - type ssdp_server_packet_t;
43028 + type svn_server_packet_t;
43029 ')
43030
43031 - dontaudit $1 ssdp_server_packet_t:packet recv;
43032 + dontaudit $1 svn_server_packet_t:packet recv;
43033 ')
43034
43035 ########################################
43036 ## <summary>
43037 -## Send and receive ssdp_server packets.
43038 +## Send and receive svn_server packets.
43039 ## </summary>
43040 ## <param name="domain">
43041 ## <summary>
43042 @@ -83300,14 +86401,14 @@ interface(`corenet_dontaudit_receive_ssdp_server_packets',`
43043 ## </param>
43044 ## <infoflow type="both" weight="10"/>
43045 #
43046 -interface(`corenet_sendrecv_ssdp_server_packets',`
43047 - corenet_send_ssdp_server_packets($1)
43048 - corenet_receive_ssdp_server_packets($1)
43049 +interface(`corenet_sendrecv_svn_server_packets',`
43050 + corenet_send_svn_server_packets($1)
43051 + corenet_receive_svn_server_packets($1)
43052 ')
43053
43054 ########################################
43055 ## <summary>
43056 -## Do not audit attempts to send and receive ssdp_server packets.
43057 +## Do not audit attempts to send and receive svn_server packets.
43058 ## </summary>
43059 ## <param name="domain">
43060 ## <summary>
43061 @@ -83316,14 +86417,14 @@ interface(`corenet_sendrecv_ssdp_server_packets',`
43062 ## </param>
43063 ## <infoflow type="none"/>
43064 #
43065 -interface(`corenet_dontaudit_sendrecv_ssdp_server_packets',`
43066 - corenet_dontaudit_send_ssdp_server_packets($1)
43067 - corenet_dontaudit_receive_ssdp_server_packets($1)
43068 +interface(`corenet_dontaudit_sendrecv_svn_server_packets',`
43069 + corenet_dontaudit_send_svn_server_packets($1)
43070 + corenet_dontaudit_receive_svn_server_packets($1)
43071 ')
43072
43073 ########################################
43074 ## <summary>
43075 -## Relabel packets to ssdp_server the packet type.
43076 +## Relabel packets to svn_server the packet type.
43077 ## </summary>
43078 ## <param name="domain">
43079 ## <summary>
43080 @@ -83331,12 +86432,12 @@ interface(`corenet_dontaudit_sendrecv_ssdp_server_packets',`
43081 ## </summary>
43082 ## </param>
43083 #
43084 -interface(`corenet_relabelto_ssdp_server_packets',`
43085 +interface(`corenet_relabelto_svn_server_packets',`
43086 gen_require(`
43087 - type ssdp_server_packet_t;
43088 + type svn_server_packet_t;
43089 ')
43090
43091 - allow $1 ssdp_server_packet_t:packet relabelto;
43092 + allow $1 svn_server_packet_t:packet relabelto;
43093 ')
43094
43095
43096 @@ -83344,7 +86445,7 @@ interface(`corenet_relabelto_ssdp_server_packets',`
43097
43098 ########################################
43099 ## <summary>
43100 -## Send and receive TCP traffic on the ssh port.
43101 +## Send and receive TCP traffic on the svrloc port.
43102 ## </summary>
43103 ## <param name="domain">
43104 ## <summary>
43105 @@ -83353,17 +86454,17 @@ interface(`corenet_relabelto_ssdp_server_packets',`
43106 ## </param>
43107 ## <infoflow type="both" weight="10"/>
43108 #
43109 -interface(`corenet_tcp_sendrecv_ssh_port',`
43110 +interface(`corenet_tcp_sendrecv_svrloc_port',`
43111 gen_require(`
43112 - type ssh_port_t;
43113 + type svrloc_port_t;
43114 ')
43115
43116 - allow $1 ssh_port_t:tcp_socket { send_msg recv_msg };
43117 + allow $1 svrloc_port_t:tcp_socket { send_msg recv_msg };
43118 ')
43119
43120 ########################################
43121 ## <summary>
43122 -## Send UDP traffic on the ssh port.
43123 +## Send UDP traffic on the svrloc port.
43124 ## </summary>
43125 ## <param name="domain">
43126 ## <summary>
43127 @@ -83372,17 +86473,17 @@ interface(`corenet_tcp_sendrecv_ssh_port',`
43128 ## </param>
43129 ## <infoflow type="write" weight="10"/>
43130 #
43131 -interface(`corenet_udp_send_ssh_port',`
43132 +interface(`corenet_udp_send_svrloc_port',`
43133 gen_require(`
43134 - type ssh_port_t;
43135 + type svrloc_port_t;
43136 ')
43137
43138 - allow $1 ssh_port_t:udp_socket send_msg;
43139 + allow $1 svrloc_port_t:udp_socket send_msg;
43140 ')
43141
43142 ########################################
43143 ## <summary>
43144 -## Do not audit attempts to send UDP traffic on the ssh port.
43145 +## Do not audit attempts to send UDP traffic on the svrloc port.
43146 ## </summary>
43147 ## <param name="domain">
43148 ## <summary>
43149 @@ -83391,17 +86492,17 @@ interface(`corenet_udp_send_ssh_port',`
43150 ## </param>
43151 ## <infoflow type="none"/>
43152 #
43153 -interface(`corenet_dontaudit_udp_send_ssh_port',`
43154 +interface(`corenet_dontaudit_udp_send_svrloc_port',`
43155 gen_require(`
43156 - type ssh_port_t;
43157 + type svrloc_port_t;
43158 ')
43159
43160 - dontaudit $1 ssh_port_t:udp_socket send_msg;
43161 + dontaudit $1 svrloc_port_t:udp_socket send_msg;
43162 ')
43163
43164 ########################################
43165 ## <summary>
43166 -## Receive UDP traffic on the ssh port.
43167 +## Receive UDP traffic on the svrloc port.
43168 ## </summary>
43169 ## <param name="domain">
43170 ## <summary>
43171 @@ -83410,17 +86511,17 @@ interface(`corenet_dontaudit_udp_send_ssh_port',`
43172 ## </param>
43173 ## <infoflow type="read" weight="10"/>
43174 #
43175 -interface(`corenet_udp_receive_ssh_port',`
43176 +interface(`corenet_udp_receive_svrloc_port',`
43177 gen_require(`
43178 - type ssh_port_t;
43179 + type svrloc_port_t;
43180 ')
43181
43182 - allow $1 ssh_port_t:udp_socket recv_msg;
43183 + allow $1 svrloc_port_t:udp_socket recv_msg;
43184 ')
43185
43186 ########################################
43187 ## <summary>
43188 -## Do not audit attempts to receive UDP traffic on the ssh port.
43189 +## Do not audit attempts to receive UDP traffic on the svrloc port.
43190 ## </summary>
43191 ## <param name="domain">
43192 ## <summary>
43193 @@ -83429,17 +86530,17 @@ interface(`corenet_udp_receive_ssh_port',`
43194 ## </param>
43195 ## <infoflow type="none"/>
43196 #
43197 -interface(`corenet_dontaudit_udp_receive_ssh_port',`
43198 +interface(`corenet_dontaudit_udp_receive_svrloc_port',`
43199 gen_require(`
43200 - type ssh_port_t;
43201 + type svrloc_port_t;
43202 ')
43203
43204 - dontaudit $1 ssh_port_t:udp_socket recv_msg;
43205 + dontaudit $1 svrloc_port_t:udp_socket recv_msg;
43206 ')
43207
43208 ########################################
43209 ## <summary>
43210 -## Send and receive UDP traffic on the ssh port.
43211 +## Send and receive UDP traffic on the svrloc port.
43212 ## </summary>
43213 ## <param name="domain">
43214 ## <summary>
43215 @@ -83448,15 +86549,15 @@ interface(`corenet_dontaudit_udp_receive_ssh_port',`
43216 ## </param>
43217 ## <infoflow type="both" weight="10"/>
43218 #
43219 -interface(`corenet_udp_sendrecv_ssh_port',`
43220 - corenet_udp_send_ssh_port($1)
43221 - corenet_udp_receive_ssh_port($1)
43222 +interface(`corenet_udp_sendrecv_svrloc_port',`
43223 + corenet_udp_send_svrloc_port($1)
43224 + corenet_udp_receive_svrloc_port($1)
43225 ')
43226
43227 ########################################
43228 ## <summary>
43229 ## Do not audit attempts to send and receive
43230 -## UDP traffic on the ssh port.
43231 +## UDP traffic on the svrloc port.
43232 ## </summary>
43233 ## <param name="domain">
43234 ## <summary>
43235 @@ -83465,14 +86566,14 @@ interface(`corenet_udp_sendrecv_ssh_port',`
43236 ## </param>
43237 ## <infoflow type="none"/>
43238 #
43239 -interface(`corenet_dontaudit_udp_sendrecv_ssh_port',`
43240 - corenet_dontaudit_udp_send_ssh_port($1)
43241 - corenet_dontaudit_udp_receive_ssh_port($1)
43242 +interface(`corenet_dontaudit_udp_sendrecv_svrloc_port',`
43243 + corenet_dontaudit_udp_send_svrloc_port($1)
43244 + corenet_dontaudit_udp_receive_svrloc_port($1)
43245 ')
43246
43247 ########################################
43248 ## <summary>
43249 -## Bind TCP sockets to the ssh port.
43250 +## Bind TCP sockets to the svrloc port.
43251 ## </summary>
43252 ## <param name="domain">
43253 ## <summary>
43254 @@ -83481,18 +86582,18 @@ interface(`corenet_dontaudit_udp_sendrecv_ssh_port',`
43255 ## </param>
43256 ## <infoflow type="none"/>
43257 #
43258 -interface(`corenet_tcp_bind_ssh_port',`
43259 +interface(`corenet_tcp_bind_svrloc_port',`
43260 gen_require(`
43261 - type ssh_port_t;
43262 + type svrloc_port_t;
43263 ')
43264
43265 - allow $1 ssh_port_t:tcp_socket name_bind;
43266 + allow $1 svrloc_port_t:tcp_socket name_bind;
43267 allow $1 self:capability net_bind_service;
43268 ')
43269
43270 ########################################
43271 ## <summary>
43272 -## Bind UDP sockets to the ssh port.
43273 +## Bind UDP sockets to the svrloc port.
43274 ## </summary>
43275 ## <param name="domain">
43276 ## <summary>
43277 @@ -83501,18 +86602,18 @@ interface(`corenet_tcp_bind_ssh_port',`
43278 ## </param>
43279 ## <infoflow type="none"/>
43280 #
43281 -interface(`corenet_udp_bind_ssh_port',`
43282 +interface(`corenet_udp_bind_svrloc_port',`
43283 gen_require(`
43284 - type ssh_port_t;
43285 + type svrloc_port_t;
43286 ')
43287
43288 - allow $1 ssh_port_t:udp_socket name_bind;
43289 + allow $1 svrloc_port_t:udp_socket name_bind;
43290 allow $1 self:capability net_bind_service;
43291 ')
43292
43293 ########################################
43294 ## <summary>
43295 -## Make a TCP connection to the ssh port.
43296 +## Make a TCP connection to the svrloc port.
43297 ## </summary>
43298 ## <param name="domain">
43299 ## <summary>
43300 @@ -83520,18 +86621,18 @@ interface(`corenet_udp_bind_ssh_port',`
43301 ## </summary>
43302 ## </param>
43303 #
43304 -interface(`corenet_tcp_connect_ssh_port',`
43305 +interface(`corenet_tcp_connect_svrloc_port',`
43306 gen_require(`
43307 - type ssh_port_t;
43308 + type svrloc_port_t;
43309 ')
43310
43311 - allow $1 ssh_port_t:tcp_socket name_connect;
43312 + allow $1 svrloc_port_t:tcp_socket name_connect;
43313 ')
43314
43315
43316 ########################################
43317 ## <summary>
43318 -## Send ssh_client packets.
43319 +## Send svrloc_client packets.
43320 ## </summary>
43321 ## <param name="domain">
43322 ## <summary>
43323 @@ -83540,17 +86641,17 @@ interface(`corenet_tcp_connect_ssh_port',`
43324 ## </param>
43325 ## <infoflow type="write" weight="10"/>
43326 #
43327 -interface(`corenet_send_ssh_client_packets',`
43328 +interface(`corenet_send_svrloc_client_packets',`
43329 gen_require(`
43330 - type ssh_client_packet_t;
43331 + type svrloc_client_packet_t;
43332 ')
43333
43334 - allow $1 ssh_client_packet_t:packet send;
43335 + allow $1 svrloc_client_packet_t:packet send;
43336 ')
43337
43338 ########################################
43339 ## <summary>
43340 -## Do not audit attempts to send ssh_client packets.
43341 +## Do not audit attempts to send svrloc_client packets.
43342 ## </summary>
43343 ## <param name="domain">
43344 ## <summary>
43345 @@ -83559,17 +86660,17 @@ interface(`corenet_send_ssh_client_packets',`
43346 ## </param>
43347 ## <infoflow type="none"/>
43348 #
43349 -interface(`corenet_dontaudit_send_ssh_client_packets',`
43350 +interface(`corenet_dontaudit_send_svrloc_client_packets',`
43351 gen_require(`
43352 - type ssh_client_packet_t;
43353 + type svrloc_client_packet_t;
43354 ')
43355
43356 - dontaudit $1 ssh_client_packet_t:packet send;
43357 + dontaudit $1 svrloc_client_packet_t:packet send;
43358 ')
43359
43360 ########################################
43361 ## <summary>
43362 -## Receive ssh_client packets.
43363 +## Receive svrloc_client packets.
43364 ## </summary>
43365 ## <param name="domain">
43366 ## <summary>
43367 @@ -83578,17 +86679,17 @@ interface(`corenet_dontaudit_send_ssh_client_packets',`
43368 ## </param>
43369 ## <infoflow type="read" weight="10"/>
43370 #
43371 -interface(`corenet_receive_ssh_client_packets',`
43372 +interface(`corenet_receive_svrloc_client_packets',`
43373 gen_require(`
43374 - type ssh_client_packet_t;
43375 + type svrloc_client_packet_t;
43376 ')
43377
43378 - allow $1 ssh_client_packet_t:packet recv;
43379 + allow $1 svrloc_client_packet_t:packet recv;
43380 ')
43381
43382 ########################################
43383 ## <summary>
43384 -## Do not audit attempts to receive ssh_client packets.
43385 +## Do not audit attempts to receive svrloc_client packets.
43386 ## </summary>
43387 ## <param name="domain">
43388 ## <summary>
43389 @@ -83597,17 +86698,17 @@ interface(`corenet_receive_ssh_client_packets',`
43390 ## </param>
43391 ## <infoflow type="none"/>
43392 #
43393 -interface(`corenet_dontaudit_receive_ssh_client_packets',`
43394 +interface(`corenet_dontaudit_receive_svrloc_client_packets',`
43395 gen_require(`
43396 - type ssh_client_packet_t;
43397 + type svrloc_client_packet_t;
43398 ')
43399
43400 - dontaudit $1 ssh_client_packet_t:packet recv;
43401 + dontaudit $1 svrloc_client_packet_t:packet recv;
43402 ')
43403
43404 ########################################
43405 ## <summary>
43406 -## Send and receive ssh_client packets.
43407 +## Send and receive svrloc_client packets.
43408 ## </summary>
43409 ## <param name="domain">
43410 ## <summary>
43411 @@ -83616,14 +86717,14 @@ interface(`corenet_dontaudit_receive_ssh_client_packets',`
43412 ## </param>
43413 ## <infoflow type="both" weight="10"/>
43414 #
43415 -interface(`corenet_sendrecv_ssh_client_packets',`
43416 - corenet_send_ssh_client_packets($1)
43417 - corenet_receive_ssh_client_packets($1)
43418 +interface(`corenet_sendrecv_svrloc_client_packets',`
43419 + corenet_send_svrloc_client_packets($1)
43420 + corenet_receive_svrloc_client_packets($1)
43421 ')
43422
43423 ########################################
43424 ## <summary>
43425 -## Do not audit attempts to send and receive ssh_client packets.
43426 +## Do not audit attempts to send and receive svrloc_client packets.
43427 ## </summary>
43428 ## <param name="domain">
43429 ## <summary>
43430 @@ -83632,14 +86733,14 @@ interface(`corenet_sendrecv_ssh_client_packets',`
43431 ## </param>
43432 ## <infoflow type="none"/>
43433 #
43434 -interface(`corenet_dontaudit_sendrecv_ssh_client_packets',`
43435 - corenet_dontaudit_send_ssh_client_packets($1)
43436 - corenet_dontaudit_receive_ssh_client_packets($1)
43437 +interface(`corenet_dontaudit_sendrecv_svrloc_client_packets',`
43438 + corenet_dontaudit_send_svrloc_client_packets($1)
43439 + corenet_dontaudit_receive_svrloc_client_packets($1)
43440 ')
43441
43442 ########################################
43443 ## <summary>
43444 -## Relabel packets to ssh_client the packet type.
43445 +## Relabel packets to svrloc_client the packet type.
43446 ## </summary>
43447 ## <param name="domain">
43448 ## <summary>
43449 @@ -83647,18 +86748,18 @@ interface(`corenet_dontaudit_sendrecv_ssh_client_packets',`
43450 ## </summary>
43451 ## </param>
43452 #
43453 -interface(`corenet_relabelto_ssh_client_packets',`
43454 +interface(`corenet_relabelto_svrloc_client_packets',`
43455 gen_require(`
43456 - type ssh_client_packet_t;
43457 + type svrloc_client_packet_t;
43458 ')
43459
43460 - allow $1 ssh_client_packet_t:packet relabelto;
43461 + allow $1 svrloc_client_packet_t:packet relabelto;
43462 ')
43463
43464
43465 ########################################
43466 ## <summary>
43467 -## Send ssh_server packets.
43468 +## Send svrloc_server packets.
43469 ## </summary>
43470 ## <param name="domain">
43471 ## <summary>
43472 @@ -83667,17 +86768,17 @@ interface(`corenet_relabelto_ssh_client_packets',`
43473 ## </param>
43474 ## <infoflow type="write" weight="10"/>
43475 #
43476 -interface(`corenet_send_ssh_server_packets',`
43477 +interface(`corenet_send_svrloc_server_packets',`
43478 gen_require(`
43479 - type ssh_server_packet_t;
43480 + type svrloc_server_packet_t;
43481 ')
43482
43483 - allow $1 ssh_server_packet_t:packet send;
43484 + allow $1 svrloc_server_packet_t:packet send;
43485 ')
43486
43487 ########################################
43488 ## <summary>
43489 -## Do not audit attempts to send ssh_server packets.
43490 +## Do not audit attempts to send svrloc_server packets.
43491 ## </summary>
43492 ## <param name="domain">
43493 ## <summary>
43494 @@ -83686,17 +86787,17 @@ interface(`corenet_send_ssh_server_packets',`
43495 ## </param>
43496 ## <infoflow type="none"/>
43497 #
43498 -interface(`corenet_dontaudit_send_ssh_server_packets',`
43499 +interface(`corenet_dontaudit_send_svrloc_server_packets',`
43500 gen_require(`
43501 - type ssh_server_packet_t;
43502 + type svrloc_server_packet_t;
43503 ')
43504
43505 - dontaudit $1 ssh_server_packet_t:packet send;
43506 + dontaudit $1 svrloc_server_packet_t:packet send;
43507 ')
43508
43509 ########################################
43510 ## <summary>
43511 -## Receive ssh_server packets.
43512 +## Receive svrloc_server packets.
43513 ## </summary>
43514 ## <param name="domain">
43515 ## <summary>
43516 @@ -83705,17 +86806,17 @@ interface(`corenet_dontaudit_send_ssh_server_packets',`
43517 ## </param>
43518 ## <infoflow type="read" weight="10"/>
43519 #
43520 -interface(`corenet_receive_ssh_server_packets',`
43521 +interface(`corenet_receive_svrloc_server_packets',`
43522 gen_require(`
43523 - type ssh_server_packet_t;
43524 + type svrloc_server_packet_t;
43525 ')
43526
43527 - allow $1 ssh_server_packet_t:packet recv;
43528 + allow $1 svrloc_server_packet_t:packet recv;
43529 ')
43530
43531 ########################################
43532 ## <summary>
43533 -## Do not audit attempts to receive ssh_server packets.
43534 +## Do not audit attempts to receive svrloc_server packets.
43535 ## </summary>
43536 ## <param name="domain">
43537 ## <summary>
43538 @@ -83724,17 +86825,17 @@ interface(`corenet_receive_ssh_server_packets',`
43539 ## </param>
43540 ## <infoflow type="none"/>
43541 #
43542 -interface(`corenet_dontaudit_receive_ssh_server_packets',`
43543 +interface(`corenet_dontaudit_receive_svrloc_server_packets',`
43544 gen_require(`
43545 - type ssh_server_packet_t;
43546 + type svrloc_server_packet_t;
43547 ')
43548
43549 - dontaudit $1 ssh_server_packet_t:packet recv;
43550 + dontaudit $1 svrloc_server_packet_t:packet recv;
43551 ')
43552
43553 ########################################
43554 ## <summary>
43555 -## Send and receive ssh_server packets.
43556 +## Send and receive svrloc_server packets.
43557 ## </summary>
43558 ## <param name="domain">
43559 ## <summary>
43560 @@ -83743,14 +86844,14 @@ interface(`corenet_dontaudit_receive_ssh_server_packets',`
43561 ## </param>
43562 ## <infoflow type="both" weight="10"/>
43563 #
43564 -interface(`corenet_sendrecv_ssh_server_packets',`
43565 - corenet_send_ssh_server_packets($1)
43566 - corenet_receive_ssh_server_packets($1)
43567 +interface(`corenet_sendrecv_svrloc_server_packets',`
43568 + corenet_send_svrloc_server_packets($1)
43569 + corenet_receive_svrloc_server_packets($1)
43570 ')
43571
43572 ########################################
43573 ## <summary>
43574 -## Do not audit attempts to send and receive ssh_server packets.
43575 +## Do not audit attempts to send and receive svrloc_server packets.
43576 ## </summary>
43577 ## <param name="domain">
43578 ## <summary>
43579 @@ -83759,14 +86860,14 @@ interface(`corenet_sendrecv_ssh_server_packets',`
43580 ## </param>
43581 ## <infoflow type="none"/>
43582 #
43583 -interface(`corenet_dontaudit_sendrecv_ssh_server_packets',`
43584 - corenet_dontaudit_send_ssh_server_packets($1)
43585 - corenet_dontaudit_receive_ssh_server_packets($1)
43586 +interface(`corenet_dontaudit_sendrecv_svrloc_server_packets',`
43587 + corenet_dontaudit_send_svrloc_server_packets($1)
43588 + corenet_dontaudit_receive_svrloc_server_packets($1)
43589 ')
43590
43591 ########################################
43592 ## <summary>
43593 -## Relabel packets to ssh_server the packet type.
43594 +## Relabel packets to svrloc_server the packet type.
43595 ## </summary>
43596 ## <param name="domain">
43597 ## <summary>
43598 @@ -83774,12 +86875,12 @@ interface(`corenet_dontaudit_sendrecv_ssh_server_packets',`
43599 ## </summary>
43600 ## </param>
43601 #
43602 -interface(`corenet_relabelto_ssh_server_packets',`
43603 +interface(`corenet_relabelto_svrloc_server_packets',`
43604 gen_require(`
43605 - type ssh_server_packet_t;
43606 + type svrloc_server_packet_t;
43607 ')
43608
43609 - allow $1 ssh_server_packet_t:packet relabelto;
43610 + allow $1 svrloc_server_packet_t:packet relabelto;
43611 ')
43612
43613
43614 @@ -83787,7 +86888,7 @@ interface(`corenet_relabelto_ssh_server_packets',`
43615
43616 ########################################
43617 ## <summary>
43618 -## Send and receive TCP traffic on the stunnel port.
43619 +## Send and receive TCP traffic on the swat port.
43620 ## </summary>
43621 ## <param name="domain">
43622 ## <summary>
43623 @@ -83796,17 +86897,17 @@ interface(`corenet_relabelto_ssh_server_packets',`
43624 ## </param>
43625 ## <infoflow type="both" weight="10"/>
43626 #
43627 -interface(`corenet_tcp_sendrecv_stunnel_port',`
43628 +interface(`corenet_tcp_sendrecv_swat_port',`
43629 gen_require(`
43630 - type stunnel_port_t;
43631 + type swat_port_t;
43632 ')
43633
43634 - allow $1 stunnel_port_t:tcp_socket { send_msg recv_msg };
43635 + allow $1 swat_port_t:tcp_socket { send_msg recv_msg };
43636 ')
43637
43638 ########################################
43639 ## <summary>
43640 -## Send UDP traffic on the stunnel port.
43641 +## Send UDP traffic on the swat port.
43642 ## </summary>
43643 ## <param name="domain">
43644 ## <summary>
43645 @@ -83815,17 +86916,17 @@ interface(`corenet_tcp_sendrecv_stunnel_port',`
43646 ## </param>
43647 ## <infoflow type="write" weight="10"/>
43648 #
43649 -interface(`corenet_udp_send_stunnel_port',`
43650 +interface(`corenet_udp_send_swat_port',`
43651 gen_require(`
43652 - type stunnel_port_t;
43653 + type swat_port_t;
43654 ')
43655
43656 - allow $1 stunnel_port_t:udp_socket send_msg;
43657 + allow $1 swat_port_t:udp_socket send_msg;
43658 ')
43659
43660 ########################################
43661 ## <summary>
43662 -## Do not audit attempts to send UDP traffic on the stunnel port.
43663 +## Do not audit attempts to send UDP traffic on the swat port.
43664 ## </summary>
43665 ## <param name="domain">
43666 ## <summary>
43667 @@ -83834,17 +86935,17 @@ interface(`corenet_udp_send_stunnel_port',`
43668 ## </param>
43669 ## <infoflow type="none"/>
43670 #
43671 -interface(`corenet_dontaudit_udp_send_stunnel_port',`
43672 +interface(`corenet_dontaudit_udp_send_swat_port',`
43673 gen_require(`
43674 - type stunnel_port_t;
43675 + type swat_port_t;
43676 ')
43677
43678 - dontaudit $1 stunnel_port_t:udp_socket send_msg;
43679 + dontaudit $1 swat_port_t:udp_socket send_msg;
43680 ')
43681
43682 ########################################
43683 ## <summary>
43684 -## Receive UDP traffic on the stunnel port.
43685 +## Receive UDP traffic on the swat port.
43686 ## </summary>
43687 ## <param name="domain">
43688 ## <summary>
43689 @@ -83853,17 +86954,17 @@ interface(`corenet_dontaudit_udp_send_stunnel_port',`
43690 ## </param>
43691 ## <infoflow type="read" weight="10"/>
43692 #
43693 -interface(`corenet_udp_receive_stunnel_port',`
43694 +interface(`corenet_udp_receive_swat_port',`
43695 gen_require(`
43696 - type stunnel_port_t;
43697 + type swat_port_t;
43698 ')
43699
43700 - allow $1 stunnel_port_t:udp_socket recv_msg;
43701 + allow $1 swat_port_t:udp_socket recv_msg;
43702 ')
43703
43704 ########################################
43705 ## <summary>
43706 -## Do not audit attempts to receive UDP traffic on the stunnel port.
43707 +## Do not audit attempts to receive UDP traffic on the swat port.
43708 ## </summary>
43709 ## <param name="domain">
43710 ## <summary>
43711 @@ -83872,17 +86973,17 @@ interface(`corenet_udp_receive_stunnel_port',`
43712 ## </param>
43713 ## <infoflow type="none"/>
43714 #
43715 -interface(`corenet_dontaudit_udp_receive_stunnel_port',`
43716 +interface(`corenet_dontaudit_udp_receive_swat_port',`
43717 gen_require(`
43718 - type stunnel_port_t;
43719 + type swat_port_t;
43720 ')
43721
43722 - dontaudit $1 stunnel_port_t:udp_socket recv_msg;
43723 + dontaudit $1 swat_port_t:udp_socket recv_msg;
43724 ')
43725
43726 ########################################
43727 ## <summary>
43728 -## Send and receive UDP traffic on the stunnel port.
43729 +## Send and receive UDP traffic on the swat port.
43730 ## </summary>
43731 ## <param name="domain">
43732 ## <summary>
43733 @@ -83891,15 +86992,15 @@ interface(`corenet_dontaudit_udp_receive_stunnel_port',`
43734 ## </param>
43735 ## <infoflow type="both" weight="10"/>
43736 #
43737 -interface(`corenet_udp_sendrecv_stunnel_port',`
43738 - corenet_udp_send_stunnel_port($1)
43739 - corenet_udp_receive_stunnel_port($1)
43740 +interface(`corenet_udp_sendrecv_swat_port',`
43741 + corenet_udp_send_swat_port($1)
43742 + corenet_udp_receive_swat_port($1)
43743 ')
43744
43745 ########################################
43746 ## <summary>
43747 ## Do not audit attempts to send and receive
43748 -## UDP traffic on the stunnel port.
43749 +## UDP traffic on the swat port.
43750 ## </summary>
43751 ## <param name="domain">
43752 ## <summary>
43753 @@ -83908,14 +87009,14 @@ interface(`corenet_udp_sendrecv_stunnel_port',`
43754 ## </param>
43755 ## <infoflow type="none"/>
43756 #
43757 -interface(`corenet_dontaudit_udp_sendrecv_stunnel_port',`
43758 - corenet_dontaudit_udp_send_stunnel_port($1)
43759 - corenet_dontaudit_udp_receive_stunnel_port($1)
43760 +interface(`corenet_dontaudit_udp_sendrecv_swat_port',`
43761 + corenet_dontaudit_udp_send_swat_port($1)
43762 + corenet_dontaudit_udp_receive_swat_port($1)
43763 ')
43764
43765 ########################################
43766 ## <summary>
43767 -## Bind TCP sockets to the stunnel port.
43768 +## Bind TCP sockets to the swat port.
43769 ## </summary>
43770 ## <param name="domain">
43771 ## <summary>
43772 @@ -83924,18 +87025,18 @@ interface(`corenet_dontaudit_udp_sendrecv_stunnel_port',`
43773 ## </param>
43774 ## <infoflow type="none"/>
43775 #
43776 -interface(`corenet_tcp_bind_stunnel_port',`
43777 +interface(`corenet_tcp_bind_swat_port',`
43778 gen_require(`
43779 - type stunnel_port_t;
43780 + type swat_port_t;
43781 ')
43782
43783 - allow $1 stunnel_port_t:tcp_socket name_bind;
43784 -
43785 + allow $1 swat_port_t:tcp_socket name_bind;
43786 + allow $1 self:capability net_bind_service;
43787 ')
43788
43789 ########################################
43790 ## <summary>
43791 -## Bind UDP sockets to the stunnel port.
43792 +## Bind UDP sockets to the swat port.
43793 ## </summary>
43794 ## <param name="domain">
43795 ## <summary>
43796 @@ -83944,18 +87045,18 @@ interface(`corenet_tcp_bind_stunnel_port',`
43797 ## </param>
43798 ## <infoflow type="none"/>
43799 #
43800 -interface(`corenet_udp_bind_stunnel_port',`
43801 +interface(`corenet_udp_bind_swat_port',`
43802 gen_require(`
43803 - type stunnel_port_t;
43804 + type swat_port_t;
43805 ')
43806
43807 - allow $1 stunnel_port_t:udp_socket name_bind;
43808 -
43809 + allow $1 swat_port_t:udp_socket name_bind;
43810 + allow $1 self:capability net_bind_service;
43811 ')
43812
43813 ########################################
43814 ## <summary>
43815 -## Make a TCP connection to the stunnel port.
43816 +## Make a TCP connection to the swat port.
43817 ## </summary>
43818 ## <param name="domain">
43819 ## <summary>
43820 @@ -83963,18 +87064,18 @@ interface(`corenet_udp_bind_stunnel_port',`
43821 ## </summary>
43822 ## </param>
43823 #
43824 -interface(`corenet_tcp_connect_stunnel_port',`
43825 +interface(`corenet_tcp_connect_swat_port',`
43826 gen_require(`
43827 - type stunnel_port_t;
43828 + type swat_port_t;
43829 ')
43830
43831 - allow $1 stunnel_port_t:tcp_socket name_connect;
43832 + allow $1 swat_port_t:tcp_socket name_connect;
43833 ')
43834
43835
43836 ########################################
43837 ## <summary>
43838 -## Send stunnel_client packets.
43839 +## Send swat_client packets.
43840 ## </summary>
43841 ## <param name="domain">
43842 ## <summary>
43843 @@ -83983,17 +87084,17 @@ interface(`corenet_tcp_connect_stunnel_port',`
43844 ## </param>
43845 ## <infoflow type="write" weight="10"/>
43846 #
43847 -interface(`corenet_send_stunnel_client_packets',`
43848 +interface(`corenet_send_swat_client_packets',`
43849 gen_require(`
43850 - type stunnel_client_packet_t;
43851 + type swat_client_packet_t;
43852 ')
43853
43854 - allow $1 stunnel_client_packet_t:packet send;
43855 + allow $1 swat_client_packet_t:packet send;
43856 ')
43857
43858 ########################################
43859 ## <summary>
43860 -## Do not audit attempts to send stunnel_client packets.
43861 +## Do not audit attempts to send swat_client packets.
43862 ## </summary>
43863 ## <param name="domain">
43864 ## <summary>
43865 @@ -84002,17 +87103,17 @@ interface(`corenet_send_stunnel_client_packets',`
43866 ## </param>
43867 ## <infoflow type="none"/>
43868 #
43869 -interface(`corenet_dontaudit_send_stunnel_client_packets',`
43870 +interface(`corenet_dontaudit_send_swat_client_packets',`
43871 gen_require(`
43872 - type stunnel_client_packet_t;
43873 + type swat_client_packet_t;
43874 ')
43875
43876 - dontaudit $1 stunnel_client_packet_t:packet send;
43877 + dontaudit $1 swat_client_packet_t:packet send;
43878 ')
43879
43880 ########################################
43881 ## <summary>
43882 -## Receive stunnel_client packets.
43883 +## Receive swat_client packets.
43884 ## </summary>
43885 ## <param name="domain">
43886 ## <summary>
43887 @@ -84021,17 +87122,17 @@ interface(`corenet_dontaudit_send_stunnel_client_packets',`
43888 ## </param>
43889 ## <infoflow type="read" weight="10"/>
43890 #
43891 -interface(`corenet_receive_stunnel_client_packets',`
43892 +interface(`corenet_receive_swat_client_packets',`
43893 gen_require(`
43894 - type stunnel_client_packet_t;
43895 + type swat_client_packet_t;
43896 ')
43897
43898 - allow $1 stunnel_client_packet_t:packet recv;
43899 + allow $1 swat_client_packet_t:packet recv;
43900 ')
43901
43902 ########################################
43903 ## <summary>
43904 -## Do not audit attempts to receive stunnel_client packets.
43905 +## Do not audit attempts to receive swat_client packets.
43906 ## </summary>
43907 ## <param name="domain">
43908 ## <summary>
43909 @@ -84040,17 +87141,17 @@ interface(`corenet_receive_stunnel_client_packets',`
43910 ## </param>
43911 ## <infoflow type="none"/>
43912 #
43913 -interface(`corenet_dontaudit_receive_stunnel_client_packets',`
43914 +interface(`corenet_dontaudit_receive_swat_client_packets',`
43915 gen_require(`
43916 - type stunnel_client_packet_t;
43917 + type swat_client_packet_t;
43918 ')
43919
43920 - dontaudit $1 stunnel_client_packet_t:packet recv;
43921 + dontaudit $1 swat_client_packet_t:packet recv;
43922 ')
43923
43924 ########################################
43925 ## <summary>
43926 -## Send and receive stunnel_client packets.
43927 +## Send and receive swat_client packets.
43928 ## </summary>
43929 ## <param name="domain">
43930 ## <summary>
43931 @@ -84059,14 +87160,14 @@ interface(`corenet_dontaudit_receive_stunnel_client_packets',`
43932 ## </param>
43933 ## <infoflow type="both" weight="10"/>
43934 #
43935 -interface(`corenet_sendrecv_stunnel_client_packets',`
43936 - corenet_send_stunnel_client_packets($1)
43937 - corenet_receive_stunnel_client_packets($1)
43938 +interface(`corenet_sendrecv_swat_client_packets',`
43939 + corenet_send_swat_client_packets($1)
43940 + corenet_receive_swat_client_packets($1)
43941 ')
43942
43943 ########################################
43944 ## <summary>
43945 -## Do not audit attempts to send and receive stunnel_client packets.
43946 +## Do not audit attempts to send and receive swat_client packets.
43947 ## </summary>
43948 ## <param name="domain">
43949 ## <summary>
43950 @@ -84075,14 +87176,14 @@ interface(`corenet_sendrecv_stunnel_client_packets',`
43951 ## </param>
43952 ## <infoflow type="none"/>
43953 #
43954 -interface(`corenet_dontaudit_sendrecv_stunnel_client_packets',`
43955 - corenet_dontaudit_send_stunnel_client_packets($1)
43956 - corenet_dontaudit_receive_stunnel_client_packets($1)
43957 +interface(`corenet_dontaudit_sendrecv_swat_client_packets',`
43958 + corenet_dontaudit_send_swat_client_packets($1)
43959 + corenet_dontaudit_receive_swat_client_packets($1)
43960 ')
43961
43962 ########################################
43963 ## <summary>
43964 -## Relabel packets to stunnel_client the packet type.
43965 +## Relabel packets to swat_client the packet type.
43966 ## </summary>
43967 ## <param name="domain">
43968 ## <summary>
43969 @@ -84090,18 +87191,18 @@ interface(`corenet_dontaudit_sendrecv_stunnel_client_packets',`
43970 ## </summary>
43971 ## </param>
43972 #
43973 -interface(`corenet_relabelto_stunnel_client_packets',`
43974 +interface(`corenet_relabelto_swat_client_packets',`
43975 gen_require(`
43976 - type stunnel_client_packet_t;
43977 + type swat_client_packet_t;
43978 ')
43979
43980 - allow $1 stunnel_client_packet_t:packet relabelto;
43981 + allow $1 swat_client_packet_t:packet relabelto;
43982 ')
43983
43984
43985 ########################################
43986 ## <summary>
43987 -## Send stunnel_server packets.
43988 +## Send swat_server packets.
43989 ## </summary>
43990 ## <param name="domain">
43991 ## <summary>
43992 @@ -84110,17 +87211,17 @@ interface(`corenet_relabelto_stunnel_client_packets',`
43993 ## </param>
43994 ## <infoflow type="write" weight="10"/>
43995 #
43996 -interface(`corenet_send_stunnel_server_packets',`
43997 +interface(`corenet_send_swat_server_packets',`
43998 gen_require(`
43999 - type stunnel_server_packet_t;
44000 + type swat_server_packet_t;
44001 ')
44002
44003 - allow $1 stunnel_server_packet_t:packet send;
44004 + allow $1 swat_server_packet_t:packet send;
44005 ')
44006
44007 ########################################
44008 ## <summary>
44009 -## Do not audit attempts to send stunnel_server packets.
44010 +## Do not audit attempts to send swat_server packets.
44011 ## </summary>
44012 ## <param name="domain">
44013 ## <summary>
44014 @@ -84129,17 +87230,17 @@ interface(`corenet_send_stunnel_server_packets',`
44015 ## </param>
44016 ## <infoflow type="none"/>
44017 #
44018 -interface(`corenet_dontaudit_send_stunnel_server_packets',`
44019 +interface(`corenet_dontaudit_send_swat_server_packets',`
44020 gen_require(`
44021 - type stunnel_server_packet_t;
44022 + type swat_server_packet_t;
44023 ')
44024
44025 - dontaudit $1 stunnel_server_packet_t:packet send;
44026 + dontaudit $1 swat_server_packet_t:packet send;
44027 ')
44028
44029 ########################################
44030 ## <summary>
44031 -## Receive stunnel_server packets.
44032 +## Receive swat_server packets.
44033 ## </summary>
44034 ## <param name="domain">
44035 ## <summary>
44036 @@ -84148,17 +87249,17 @@ interface(`corenet_dontaudit_send_stunnel_server_packets',`
44037 ## </param>
44038 ## <infoflow type="read" weight="10"/>
44039 #
44040 -interface(`corenet_receive_stunnel_server_packets',`
44041 +interface(`corenet_receive_swat_server_packets',`
44042 gen_require(`
44043 - type stunnel_server_packet_t;
44044 + type swat_server_packet_t;
44045 ')
44046
44047 - allow $1 stunnel_server_packet_t:packet recv;
44048 + allow $1 swat_server_packet_t:packet recv;
44049 ')
44050
44051 ########################################
44052 ## <summary>
44053 -## Do not audit attempts to receive stunnel_server packets.
44054 +## Do not audit attempts to receive swat_server packets.
44055 ## </summary>
44056 ## <param name="domain">
44057 ## <summary>
44058 @@ -84167,17 +87268,17 @@ interface(`corenet_receive_stunnel_server_packets',`
44059 ## </param>
44060 ## <infoflow type="none"/>
44061 #
44062 -interface(`corenet_dontaudit_receive_stunnel_server_packets',`
44063 +interface(`corenet_dontaudit_receive_swat_server_packets',`
44064 gen_require(`
44065 - type stunnel_server_packet_t;
44066 + type swat_server_packet_t;
44067 ')
44068
44069 - dontaudit $1 stunnel_server_packet_t:packet recv;
44070 + dontaudit $1 swat_server_packet_t:packet recv;
44071 ')
44072
44073 ########################################
44074 ## <summary>
44075 -## Send and receive stunnel_server packets.
44076 +## Send and receive swat_server packets.
44077 ## </summary>
44078 ## <param name="domain">
44079 ## <summary>
44080 @@ -84186,14 +87287,14 @@ interface(`corenet_dontaudit_receive_stunnel_server_packets',`
44081 ## </param>
44082 ## <infoflow type="both" weight="10"/>
44083 #
44084 -interface(`corenet_sendrecv_stunnel_server_packets',`
44085 - corenet_send_stunnel_server_packets($1)
44086 - corenet_receive_stunnel_server_packets($1)
44087 +interface(`corenet_sendrecv_swat_server_packets',`
44088 + corenet_send_swat_server_packets($1)
44089 + corenet_receive_swat_server_packets($1)
44090 ')
44091
44092 ########################################
44093 ## <summary>
44094 -## Do not audit attempts to send and receive stunnel_server packets.
44095 +## Do not audit attempts to send and receive swat_server packets.
44096 ## </summary>
44097 ## <param name="domain">
44098 ## <summary>
44099 @@ -84202,14 +87303,14 @@ interface(`corenet_sendrecv_stunnel_server_packets',`
44100 ## </param>
44101 ## <infoflow type="none"/>
44102 #
44103 -interface(`corenet_dontaudit_sendrecv_stunnel_server_packets',`
44104 - corenet_dontaudit_send_stunnel_server_packets($1)
44105 - corenet_dontaudit_receive_stunnel_server_packets($1)
44106 +interface(`corenet_dontaudit_sendrecv_swat_server_packets',`
44107 + corenet_dontaudit_send_swat_server_packets($1)
44108 + corenet_dontaudit_receive_swat_server_packets($1)
44109 ')
44110
44111 ########################################
44112 ## <summary>
44113 -## Relabel packets to stunnel_server the packet type.
44114 +## Relabel packets to swat_server the packet type.
44115 ## </summary>
44116 ## <param name="domain">
44117 ## <summary>
44118 @@ -84217,20 +87318,20 @@ interface(`corenet_dontaudit_sendrecv_stunnel_server_packets',`
44119 ## </summary>
44120 ## </param>
44121 #
44122 -interface(`corenet_relabelto_stunnel_server_packets',`
44123 +interface(`corenet_relabelto_swat_server_packets',`
44124 gen_require(`
44125 - type stunnel_server_packet_t;
44126 + type swat_server_packet_t;
44127 ')
44128
44129 - allow $1 stunnel_server_packet_t:packet relabelto;
44130 + allow $1 swat_server_packet_t:packet relabelto;
44131 ')
44132
44133 - # no defined portcon
44134 +
44135
44136
44137 ########################################
44138 ## <summary>
44139 -## Send and receive TCP traffic on the svn port.
44140 +## Send and receive TCP traffic on the syncthing port.
44141 ## </summary>
44142 ## <param name="domain">
44143 ## <summary>
44144 @@ -84239,17 +87340,17 @@ interface(`corenet_relabelto_stunnel_server_packets',`
44145 ## </param>
44146 ## <infoflow type="both" weight="10"/>
44147 #
44148 -interface(`corenet_tcp_sendrecv_svn_port',`
44149 +interface(`corenet_tcp_sendrecv_syncthing_port',`
44150 gen_require(`
44151 - type svn_port_t;
44152 + type syncthing_port_t;
44153 ')
44154
44155 - allow $1 svn_port_t:tcp_socket { send_msg recv_msg };
44156 + allow $1 syncthing_port_t:tcp_socket { send_msg recv_msg };
44157 ')
44158
44159 ########################################
44160 ## <summary>
44161 -## Send UDP traffic on the svn port.
44162 +## Send UDP traffic on the syncthing port.
44163 ## </summary>
44164 ## <param name="domain">
44165 ## <summary>
44166 @@ -84258,17 +87359,17 @@ interface(`corenet_tcp_sendrecv_svn_port',`
44167 ## </param>
44168 ## <infoflow type="write" weight="10"/>
44169 #
44170 -interface(`corenet_udp_send_svn_port',`
44171 +interface(`corenet_udp_send_syncthing_port',`
44172 gen_require(`
44173 - type svn_port_t;
44174 + type syncthing_port_t;
44175 ')
44176
44177 - allow $1 svn_port_t:udp_socket send_msg;
44178 + allow $1 syncthing_port_t:udp_socket send_msg;
44179 ')
44180
44181 ########################################
44182 ## <summary>
44183 -## Do not audit attempts to send UDP traffic on the svn port.
44184 +## Do not audit attempts to send UDP traffic on the syncthing port.
44185 ## </summary>
44186 ## <param name="domain">
44187 ## <summary>
44188 @@ -84277,17 +87378,17 @@ interface(`corenet_udp_send_svn_port',`
44189 ## </param>
44190 ## <infoflow type="none"/>
44191 #
44192 -interface(`corenet_dontaudit_udp_send_svn_port',`
44193 +interface(`corenet_dontaudit_udp_send_syncthing_port',`
44194 gen_require(`
44195 - type svn_port_t;
44196 + type syncthing_port_t;
44197 ')
44198
44199 - dontaudit $1 svn_port_t:udp_socket send_msg;
44200 + dontaudit $1 syncthing_port_t:udp_socket send_msg;
44201 ')
44202
44203 ########################################
44204 ## <summary>
44205 -## Receive UDP traffic on the svn port.
44206 +## Receive UDP traffic on the syncthing port.
44207 ## </summary>
44208 ## <param name="domain">
44209 ## <summary>
44210 @@ -84296,17 +87397,17 @@ interface(`corenet_dontaudit_udp_send_svn_port',`
44211 ## </param>
44212 ## <infoflow type="read" weight="10"/>
44213 #
44214 -interface(`corenet_udp_receive_svn_port',`
44215 +interface(`corenet_udp_receive_syncthing_port',`
44216 gen_require(`
44217 - type svn_port_t;
44218 + type syncthing_port_t;
44219 ')
44220
44221 - allow $1 svn_port_t:udp_socket recv_msg;
44222 + allow $1 syncthing_port_t:udp_socket recv_msg;
44223 ')
44224
44225 ########################################
44226 ## <summary>
44227 -## Do not audit attempts to receive UDP traffic on the svn port.
44228 +## Do not audit attempts to receive UDP traffic on the syncthing port.
44229 ## </summary>
44230 ## <param name="domain">
44231 ## <summary>
44232 @@ -84315,17 +87416,17 @@ interface(`corenet_udp_receive_svn_port',`
44233 ## </param>
44234 ## <infoflow type="none"/>
44235 #
44236 -interface(`corenet_dontaudit_udp_receive_svn_port',`
44237 +interface(`corenet_dontaudit_udp_receive_syncthing_port',`
44238 gen_require(`
44239 - type svn_port_t;
44240 + type syncthing_port_t;
44241 ')
44242
44243 - dontaudit $1 svn_port_t:udp_socket recv_msg;
44244 + dontaudit $1 syncthing_port_t:udp_socket recv_msg;
44245 ')
44246
44247 ########################################
44248 ## <summary>
44249 -## Send and receive UDP traffic on the svn port.
44250 +## Send and receive UDP traffic on the syncthing port.
44251 ## </summary>
44252 ## <param name="domain">
44253 ## <summary>
44254 @@ -84334,15 +87435,15 @@ interface(`corenet_dontaudit_udp_receive_svn_port',`
44255 ## </param>
44256 ## <infoflow type="both" weight="10"/>
44257 #
44258 -interface(`corenet_udp_sendrecv_svn_port',`
44259 - corenet_udp_send_svn_port($1)
44260 - corenet_udp_receive_svn_port($1)
44261 +interface(`corenet_udp_sendrecv_syncthing_port',`
44262 + corenet_udp_send_syncthing_port($1)
44263 + corenet_udp_receive_syncthing_port($1)
44264 ')
44265
44266 ########################################
44267 ## <summary>
44268 ## Do not audit attempts to send and receive
44269 -## UDP traffic on the svn port.
44270 +## UDP traffic on the syncthing port.
44271 ## </summary>
44272 ## <param name="domain">
44273 ## <summary>
44274 @@ -84351,14 +87452,14 @@ interface(`corenet_udp_sendrecv_svn_port',`
44275 ## </param>
44276 ## <infoflow type="none"/>
44277 #
44278 -interface(`corenet_dontaudit_udp_sendrecv_svn_port',`
44279 - corenet_dontaudit_udp_send_svn_port($1)
44280 - corenet_dontaudit_udp_receive_svn_port($1)
44281 +interface(`corenet_dontaudit_udp_sendrecv_syncthing_port',`
44282 + corenet_dontaudit_udp_send_syncthing_port($1)
44283 + corenet_dontaudit_udp_receive_syncthing_port($1)
44284 ')
44285
44286 ########################################
44287 ## <summary>
44288 -## Bind TCP sockets to the svn port.
44289 +## Bind TCP sockets to the syncthing port.
44290 ## </summary>
44291 ## <param name="domain">
44292 ## <summary>
44293 @@ -84367,18 +87468,18 @@ interface(`corenet_dontaudit_udp_sendrecv_svn_port',`
44294 ## </param>
44295 ## <infoflow type="none"/>
44296 #
44297 -interface(`corenet_tcp_bind_svn_port',`
44298 +interface(`corenet_tcp_bind_syncthing_port',`
44299 gen_require(`
44300 - type svn_port_t;
44301 + type syncthing_port_t;
44302 ')
44303
44304 - allow $1 svn_port_t:tcp_socket name_bind;
44305 + allow $1 syncthing_port_t:tcp_socket name_bind;
44306
44307 ')
44308
44309 ########################################
44310 ## <summary>
44311 -## Bind UDP sockets to the svn port.
44312 +## Bind UDP sockets to the syncthing port.
44313 ## </summary>
44314 ## <param name="domain">
44315 ## <summary>
44316 @@ -84387,18 +87488,18 @@ interface(`corenet_tcp_bind_svn_port',`
44317 ## </param>
44318 ## <infoflow type="none"/>
44319 #
44320 -interface(`corenet_udp_bind_svn_port',`
44321 +interface(`corenet_udp_bind_syncthing_port',`
44322 gen_require(`
44323 - type svn_port_t;
44324 + type syncthing_port_t;
44325 ')
44326
44327 - allow $1 svn_port_t:udp_socket name_bind;
44328 + allow $1 syncthing_port_t:udp_socket name_bind;
44329
44330 ')
44331
44332 ########################################
44333 ## <summary>
44334 -## Make a TCP connection to the svn port.
44335 +## Make a TCP connection to the syncthing port.
44336 ## </summary>
44337 ## <param name="domain">
44338 ## <summary>
44339 @@ -84406,18 +87507,18 @@ interface(`corenet_udp_bind_svn_port',`
44340 ## </summary>
44341 ## </param>
44342 #
44343 -interface(`corenet_tcp_connect_svn_port',`
44344 +interface(`corenet_tcp_connect_syncthing_port',`
44345 gen_require(`
44346 - type svn_port_t;
44347 + type syncthing_port_t;
44348 ')
44349
44350 - allow $1 svn_port_t:tcp_socket name_connect;
44351 + allow $1 syncthing_port_t:tcp_socket name_connect;
44352 ')
44353
44354
44355 ########################################
44356 ## <summary>
44357 -## Send svn_client packets.
44358 +## Send syncthing_client packets.
44359 ## </summary>
44360 ## <param name="domain">
44361 ## <summary>
44362 @@ -84426,17 +87527,17 @@ interface(`corenet_tcp_connect_svn_port',`
44363 ## </param>
44364 ## <infoflow type="write" weight="10"/>
44365 #
44366 -interface(`corenet_send_svn_client_packets',`
44367 +interface(`corenet_send_syncthing_client_packets',`
44368 gen_require(`
44369 - type svn_client_packet_t;
44370 + type syncthing_client_packet_t;
44371 ')
44372
44373 - allow $1 svn_client_packet_t:packet send;
44374 + allow $1 syncthing_client_packet_t:packet send;
44375 ')
44376
44377 ########################################
44378 ## <summary>
44379 -## Do not audit attempts to send svn_client packets.
44380 +## Do not audit attempts to send syncthing_client packets.
44381 ## </summary>
44382 ## <param name="domain">
44383 ## <summary>
44384 @@ -84445,17 +87546,17 @@ interface(`corenet_send_svn_client_packets',`
44385 ## </param>
44386 ## <infoflow type="none"/>
44387 #
44388 -interface(`corenet_dontaudit_send_svn_client_packets',`
44389 +interface(`corenet_dontaudit_send_syncthing_client_packets',`
44390 gen_require(`
44391 - type svn_client_packet_t;
44392 + type syncthing_client_packet_t;
44393 ')
44394
44395 - dontaudit $1 svn_client_packet_t:packet send;
44396 + dontaudit $1 syncthing_client_packet_t:packet send;
44397 ')
44398
44399 ########################################
44400 ## <summary>
44401 -## Receive svn_client packets.
44402 +## Receive syncthing_client packets.
44403 ## </summary>
44404 ## <param name="domain">
44405 ## <summary>
44406 @@ -84464,17 +87565,17 @@ interface(`corenet_dontaudit_send_svn_client_packets',`
44407 ## </param>
44408 ## <infoflow type="read" weight="10"/>
44409 #
44410 -interface(`corenet_receive_svn_client_packets',`
44411 +interface(`corenet_receive_syncthing_client_packets',`
44412 gen_require(`
44413 - type svn_client_packet_t;
44414 + type syncthing_client_packet_t;
44415 ')
44416
44417 - allow $1 svn_client_packet_t:packet recv;
44418 + allow $1 syncthing_client_packet_t:packet recv;
44419 ')
44420
44421 ########################################
44422 ## <summary>
44423 -## Do not audit attempts to receive svn_client packets.
44424 +## Do not audit attempts to receive syncthing_client packets.
44425 ## </summary>
44426 ## <param name="domain">
44427 ## <summary>
44428 @@ -84483,17 +87584,17 @@ interface(`corenet_receive_svn_client_packets',`
44429 ## </param>
44430 ## <infoflow type="none"/>
44431 #
44432 -interface(`corenet_dontaudit_receive_svn_client_packets',`
44433 +interface(`corenet_dontaudit_receive_syncthing_client_packets',`
44434 gen_require(`
44435 - type svn_client_packet_t;
44436 + type syncthing_client_packet_t;
44437 ')
44438
44439 - dontaudit $1 svn_client_packet_t:packet recv;
44440 + dontaudit $1 syncthing_client_packet_t:packet recv;
44441 ')
44442
44443 ########################################
44444 ## <summary>
44445 -## Send and receive svn_client packets.
44446 +## Send and receive syncthing_client packets.
44447 ## </summary>
44448 ## <param name="domain">
44449 ## <summary>
44450 @@ -84502,14 +87603,14 @@ interface(`corenet_dontaudit_receive_svn_client_packets',`
44451 ## </param>
44452 ## <infoflow type="both" weight="10"/>
44453 #
44454 -interface(`corenet_sendrecv_svn_client_packets',`
44455 - corenet_send_svn_client_packets($1)
44456 - corenet_receive_svn_client_packets($1)
44457 +interface(`corenet_sendrecv_syncthing_client_packets',`
44458 + corenet_send_syncthing_client_packets($1)
44459 + corenet_receive_syncthing_client_packets($1)
44460 ')
44461
44462 ########################################
44463 ## <summary>
44464 -## Do not audit attempts to send and receive svn_client packets.
44465 +## Do not audit attempts to send and receive syncthing_client packets.
44466 ## </summary>
44467 ## <param name="domain">
44468 ## <summary>
44469 @@ -84518,14 +87619,14 @@ interface(`corenet_sendrecv_svn_client_packets',`
44470 ## </param>
44471 ## <infoflow type="none"/>
44472 #
44473 -interface(`corenet_dontaudit_sendrecv_svn_client_packets',`
44474 - corenet_dontaudit_send_svn_client_packets($1)
44475 - corenet_dontaudit_receive_svn_client_packets($1)
44476 +interface(`corenet_dontaudit_sendrecv_syncthing_client_packets',`
44477 + corenet_dontaudit_send_syncthing_client_packets($1)
44478 + corenet_dontaudit_receive_syncthing_client_packets($1)
44479 ')
44480
44481 ########################################
44482 ## <summary>
44483 -## Relabel packets to svn_client the packet type.
44484 +## Relabel packets to syncthing_client the packet type.
44485 ## </summary>
44486 ## <param name="domain">
44487 ## <summary>
44488 @@ -84533,18 +87634,18 @@ interface(`corenet_dontaudit_sendrecv_svn_client_packets',`
44489 ## </summary>
44490 ## </param>
44491 #
44492 -interface(`corenet_relabelto_svn_client_packets',`
44493 +interface(`corenet_relabelto_syncthing_client_packets',`
44494 gen_require(`
44495 - type svn_client_packet_t;
44496 + type syncthing_client_packet_t;
44497 ')
44498
44499 - allow $1 svn_client_packet_t:packet relabelto;
44500 + allow $1 syncthing_client_packet_t:packet relabelto;
44501 ')
44502
44503
44504 ########################################
44505 ## <summary>
44506 -## Send svn_server packets.
44507 +## Send syncthing_server packets.
44508 ## </summary>
44509 ## <param name="domain">
44510 ## <summary>
44511 @@ -84553,17 +87654,17 @@ interface(`corenet_relabelto_svn_client_packets',`
44512 ## </param>
44513 ## <infoflow type="write" weight="10"/>
44514 #
44515 -interface(`corenet_send_svn_server_packets',`
44516 +interface(`corenet_send_syncthing_server_packets',`
44517 gen_require(`
44518 - type svn_server_packet_t;
44519 + type syncthing_server_packet_t;
44520 ')
44521
44522 - allow $1 svn_server_packet_t:packet send;
44523 + allow $1 syncthing_server_packet_t:packet send;
44524 ')
44525
44526 ########################################
44527 ## <summary>
44528 -## Do not audit attempts to send svn_server packets.
44529 +## Do not audit attempts to send syncthing_server packets.
44530 ## </summary>
44531 ## <param name="domain">
44532 ## <summary>
44533 @@ -84572,17 +87673,17 @@ interface(`corenet_send_svn_server_packets',`
44534 ## </param>
44535 ## <infoflow type="none"/>
44536 #
44537 -interface(`corenet_dontaudit_send_svn_server_packets',`
44538 +interface(`corenet_dontaudit_send_syncthing_server_packets',`
44539 gen_require(`
44540 - type svn_server_packet_t;
44541 + type syncthing_server_packet_t;
44542 ')
44543
44544 - dontaudit $1 svn_server_packet_t:packet send;
44545 + dontaudit $1 syncthing_server_packet_t:packet send;
44546 ')
44547
44548 ########################################
44549 ## <summary>
44550 -## Receive svn_server packets.
44551 +## Receive syncthing_server packets.
44552 ## </summary>
44553 ## <param name="domain">
44554 ## <summary>
44555 @@ -84591,17 +87692,17 @@ interface(`corenet_dontaudit_send_svn_server_packets',`
44556 ## </param>
44557 ## <infoflow type="read" weight="10"/>
44558 #
44559 -interface(`corenet_receive_svn_server_packets',`
44560 +interface(`corenet_receive_syncthing_server_packets',`
44561 gen_require(`
44562 - type svn_server_packet_t;
44563 + type syncthing_server_packet_t;
44564 ')
44565
44566 - allow $1 svn_server_packet_t:packet recv;
44567 + allow $1 syncthing_server_packet_t:packet recv;
44568 ')
44569
44570 ########################################
44571 ## <summary>
44572 -## Do not audit attempts to receive svn_server packets.
44573 +## Do not audit attempts to receive syncthing_server packets.
44574 ## </summary>
44575 ## <param name="domain">
44576 ## <summary>
44577 @@ -84610,17 +87711,17 @@ interface(`corenet_receive_svn_server_packets',`
44578 ## </param>
44579 ## <infoflow type="none"/>
44580 #
44581 -interface(`corenet_dontaudit_receive_svn_server_packets',`
44582 +interface(`corenet_dontaudit_receive_syncthing_server_packets',`
44583 gen_require(`
44584 - type svn_server_packet_t;
44585 + type syncthing_server_packet_t;
44586 ')
44587
44588 - dontaudit $1 svn_server_packet_t:packet recv;
44589 + dontaudit $1 syncthing_server_packet_t:packet recv;
44590 ')
44591
44592 ########################################
44593 ## <summary>
44594 -## Send and receive svn_server packets.
44595 +## Send and receive syncthing_server packets.
44596 ## </summary>
44597 ## <param name="domain">
44598 ## <summary>
44599 @@ -84629,14 +87730,14 @@ interface(`corenet_dontaudit_receive_svn_server_packets',`
44600 ## </param>
44601 ## <infoflow type="both" weight="10"/>
44602 #
44603 -interface(`corenet_sendrecv_svn_server_packets',`
44604 - corenet_send_svn_server_packets($1)
44605 - corenet_receive_svn_server_packets($1)
44606 +interface(`corenet_sendrecv_syncthing_server_packets',`
44607 + corenet_send_syncthing_server_packets($1)
44608 + corenet_receive_syncthing_server_packets($1)
44609 ')
44610
44611 ########################################
44612 ## <summary>
44613 -## Do not audit attempts to send and receive svn_server packets.
44614 +## Do not audit attempts to send and receive syncthing_server packets.
44615 ## </summary>
44616 ## <param name="domain">
44617 ## <summary>
44618 @@ -84645,14 +87746,14 @@ interface(`corenet_sendrecv_svn_server_packets',`
44619 ## </param>
44620 ## <infoflow type="none"/>
44621 #
44622 -interface(`corenet_dontaudit_sendrecv_svn_server_packets',`
44623 - corenet_dontaudit_send_svn_server_packets($1)
44624 - corenet_dontaudit_receive_svn_server_packets($1)
44625 +interface(`corenet_dontaudit_sendrecv_syncthing_server_packets',`
44626 + corenet_dontaudit_send_syncthing_server_packets($1)
44627 + corenet_dontaudit_receive_syncthing_server_packets($1)
44628 ')
44629
44630 ########################################
44631 ## <summary>
44632 -## Relabel packets to svn_server the packet type.
44633 +## Relabel packets to syncthing_server the packet type.
44634 ## </summary>
44635 ## <param name="domain">
44636 ## <summary>
44637 @@ -84660,12 +87761,12 @@ interface(`corenet_dontaudit_sendrecv_svn_server_packets',`
44638 ## </summary>
44639 ## </param>
44640 #
44641 -interface(`corenet_relabelto_svn_server_packets',`
44642 +interface(`corenet_relabelto_syncthing_server_packets',`
44643 gen_require(`
44644 - type svn_server_packet_t;
44645 + type syncthing_server_packet_t;
44646 ')
44647
44648 - allow $1 svn_server_packet_t:packet relabelto;
44649 + allow $1 syncthing_server_packet_t:packet relabelto;
44650 ')
44651
44652
44653 @@ -84673,7 +87774,7 @@ interface(`corenet_relabelto_svn_server_packets',`
44654
44655 ########################################
44656 ## <summary>
44657 -## Send and receive TCP traffic on the svrloc port.
44658 +## Send and receive TCP traffic on the syncthing_admin port.
44659 ## </summary>
44660 ## <param name="domain">
44661 ## <summary>
44662 @@ -84682,17 +87783,17 @@ interface(`corenet_relabelto_svn_server_packets',`
44663 ## </param>
44664 ## <infoflow type="both" weight="10"/>
44665 #
44666 -interface(`corenet_tcp_sendrecv_svrloc_port',`
44667 +interface(`corenet_tcp_sendrecv_syncthing_admin_port',`
44668 gen_require(`
44669 - type svrloc_port_t;
44670 + type syncthing_admin_port_t;
44671 ')
44672
44673 - allow $1 svrloc_port_t:tcp_socket { send_msg recv_msg };
44674 + allow $1 syncthing_admin_port_t:tcp_socket { send_msg recv_msg };
44675 ')
44676
44677 ########################################
44678 ## <summary>
44679 -## Send UDP traffic on the svrloc port.
44680 +## Send UDP traffic on the syncthing_admin port.
44681 ## </summary>
44682 ## <param name="domain">
44683 ## <summary>
44684 @@ -84701,17 +87802,17 @@ interface(`corenet_tcp_sendrecv_svrloc_port',`
44685 ## </param>
44686 ## <infoflow type="write" weight="10"/>
44687 #
44688 -interface(`corenet_udp_send_svrloc_port',`
44689 +interface(`corenet_udp_send_syncthing_admin_port',`
44690 gen_require(`
44691 - type svrloc_port_t;
44692 + type syncthing_admin_port_t;
44693 ')
44694
44695 - allow $1 svrloc_port_t:udp_socket send_msg;
44696 + allow $1 syncthing_admin_port_t:udp_socket send_msg;
44697 ')
44698
44699 ########################################
44700 ## <summary>
44701 -## Do not audit attempts to send UDP traffic on the svrloc port.
44702 +## Do not audit attempts to send UDP traffic on the syncthing_admin port.
44703 ## </summary>
44704 ## <param name="domain">
44705 ## <summary>
44706 @@ -84720,17 +87821,17 @@ interface(`corenet_udp_send_svrloc_port',`
44707 ## </param>
44708 ## <infoflow type="none"/>
44709 #
44710 -interface(`corenet_dontaudit_udp_send_svrloc_port',`
44711 +interface(`corenet_dontaudit_udp_send_syncthing_admin_port',`
44712 gen_require(`
44713 - type svrloc_port_t;
44714 + type syncthing_admin_port_t;
44715 ')
44716
44717 - dontaudit $1 svrloc_port_t:udp_socket send_msg;
44718 + dontaudit $1 syncthing_admin_port_t:udp_socket send_msg;
44719 ')
44720
44721 ########################################
44722 ## <summary>
44723 -## Receive UDP traffic on the svrloc port.
44724 +## Receive UDP traffic on the syncthing_admin port.
44725 ## </summary>
44726 ## <param name="domain">
44727 ## <summary>
44728 @@ -84739,17 +87840,17 @@ interface(`corenet_dontaudit_udp_send_svrloc_port',`
44729 ## </param>
44730 ## <infoflow type="read" weight="10"/>
44731 #
44732 -interface(`corenet_udp_receive_svrloc_port',`
44733 +interface(`corenet_udp_receive_syncthing_admin_port',`
44734 gen_require(`
44735 - type svrloc_port_t;
44736 + type syncthing_admin_port_t;
44737 ')
44738
44739 - allow $1 svrloc_port_t:udp_socket recv_msg;
44740 + allow $1 syncthing_admin_port_t:udp_socket recv_msg;
44741 ')
44742
44743 ########################################
44744 ## <summary>
44745 -## Do not audit attempts to receive UDP traffic on the svrloc port.
44746 +## Do not audit attempts to receive UDP traffic on the syncthing_admin port.
44747 ## </summary>
44748 ## <param name="domain">
44749 ## <summary>
44750 @@ -84758,17 +87859,17 @@ interface(`corenet_udp_receive_svrloc_port',`
44751 ## </param>
44752 ## <infoflow type="none"/>
44753 #
44754 -interface(`corenet_dontaudit_udp_receive_svrloc_port',`
44755 +interface(`corenet_dontaudit_udp_receive_syncthing_admin_port',`
44756 gen_require(`
44757 - type svrloc_port_t;
44758 + type syncthing_admin_port_t;
44759 ')
44760
44761 - dontaudit $1 svrloc_port_t:udp_socket recv_msg;
44762 + dontaudit $1 syncthing_admin_port_t:udp_socket recv_msg;
44763 ')
44764
44765 ########################################
44766 ## <summary>
44767 -## Send and receive UDP traffic on the svrloc port.
44768 +## Send and receive UDP traffic on the syncthing_admin port.
44769 ## </summary>
44770 ## <param name="domain">
44771 ## <summary>
44772 @@ -84777,15 +87878,15 @@ interface(`corenet_dontaudit_udp_receive_svrloc_port',`
44773 ## </param>
44774 ## <infoflow type="both" weight="10"/>
44775 #
44776 -interface(`corenet_udp_sendrecv_svrloc_port',`
44777 - corenet_udp_send_svrloc_port($1)
44778 - corenet_udp_receive_svrloc_port($1)
44779 +interface(`corenet_udp_sendrecv_syncthing_admin_port',`
44780 + corenet_udp_send_syncthing_admin_port($1)
44781 + corenet_udp_receive_syncthing_admin_port($1)
44782 ')
44783
44784 ########################################
44785 ## <summary>
44786 ## Do not audit attempts to send and receive
44787 -## UDP traffic on the svrloc port.
44788 +## UDP traffic on the syncthing_admin port.
44789 ## </summary>
44790 ## <param name="domain">
44791 ## <summary>
44792 @@ -84794,14 +87895,14 @@ interface(`corenet_udp_sendrecv_svrloc_port',`
44793 ## </param>
44794 ## <infoflow type="none"/>
44795 #
44796 -interface(`corenet_dontaudit_udp_sendrecv_svrloc_port',`
44797 - corenet_dontaudit_udp_send_svrloc_port($1)
44798 - corenet_dontaudit_udp_receive_svrloc_port($1)
44799 +interface(`corenet_dontaudit_udp_sendrecv_syncthing_admin_port',`
44800 + corenet_dontaudit_udp_send_syncthing_admin_port($1)
44801 + corenet_dontaudit_udp_receive_syncthing_admin_port($1)
44802 ')
44803
44804 ########################################
44805 ## <summary>
44806 -## Bind TCP sockets to the svrloc port.
44807 +## Bind TCP sockets to the syncthing_admin port.
44808 ## </summary>
44809 ## <param name="domain">
44810 ## <summary>
44811 @@ -84810,18 +87911,18 @@ interface(`corenet_dontaudit_udp_sendrecv_svrloc_port',`
44812 ## </param>
44813 ## <infoflow type="none"/>
44814 #
44815 -interface(`corenet_tcp_bind_svrloc_port',`
44816 +interface(`corenet_tcp_bind_syncthing_admin_port',`
44817 gen_require(`
44818 - type svrloc_port_t;
44819 + type syncthing_admin_port_t;
44820 ')
44821
44822 - allow $1 svrloc_port_t:tcp_socket name_bind;
44823 - allow $1 self:capability net_bind_service;
44824 + allow $1 syncthing_admin_port_t:tcp_socket name_bind;
44825 +
44826 ')
44827
44828 ########################################
44829 ## <summary>
44830 -## Bind UDP sockets to the svrloc port.
44831 +## Bind UDP sockets to the syncthing_admin port.
44832 ## </summary>
44833 ## <param name="domain">
44834 ## <summary>
44835 @@ -84830,18 +87931,18 @@ interface(`corenet_tcp_bind_svrloc_port',`
44836 ## </param>
44837 ## <infoflow type="none"/>
44838 #
44839 -interface(`corenet_udp_bind_svrloc_port',`
44840 +interface(`corenet_udp_bind_syncthing_admin_port',`
44841 gen_require(`
44842 - type svrloc_port_t;
44843 + type syncthing_admin_port_t;
44844 ')
44845
44846 - allow $1 svrloc_port_t:udp_socket name_bind;
44847 - allow $1 self:capability net_bind_service;
44848 + allow $1 syncthing_admin_port_t:udp_socket name_bind;
44849 +
44850 ')
44851
44852 ########################################
44853 ## <summary>
44854 -## Make a TCP connection to the svrloc port.
44855 +## Make a TCP connection to the syncthing_admin port.
44856 ## </summary>
44857 ## <param name="domain">
44858 ## <summary>
44859 @@ -84849,18 +87950,18 @@ interface(`corenet_udp_bind_svrloc_port',`
44860 ## </summary>
44861 ## </param>
44862 #
44863 -interface(`corenet_tcp_connect_svrloc_port',`
44864 +interface(`corenet_tcp_connect_syncthing_admin_port',`
44865 gen_require(`
44866 - type svrloc_port_t;
44867 + type syncthing_admin_port_t;
44868 ')
44869
44870 - allow $1 svrloc_port_t:tcp_socket name_connect;
44871 + allow $1 syncthing_admin_port_t:tcp_socket name_connect;
44872 ')
44873
44874
44875 ########################################
44876 ## <summary>
44877 -## Send svrloc_client packets.
44878 +## Send syncthing_admin_client packets.
44879 ## </summary>
44880 ## <param name="domain">
44881 ## <summary>
44882 @@ -84869,17 +87970,17 @@ interface(`corenet_tcp_connect_svrloc_port',`
44883 ## </param>
44884 ## <infoflow type="write" weight="10"/>
44885 #
44886 -interface(`corenet_send_svrloc_client_packets',`
44887 +interface(`corenet_send_syncthing_admin_client_packets',`
44888 gen_require(`
44889 - type svrloc_client_packet_t;
44890 + type syncthing_admin_client_packet_t;
44891 ')
44892
44893 - allow $1 svrloc_client_packet_t:packet send;
44894 + allow $1 syncthing_admin_client_packet_t:packet send;
44895 ')
44896
44897 ########################################
44898 ## <summary>
44899 -## Do not audit attempts to send svrloc_client packets.
44900 +## Do not audit attempts to send syncthing_admin_client packets.
44901 ## </summary>
44902 ## <param name="domain">
44903 ## <summary>
44904 @@ -84888,17 +87989,17 @@ interface(`corenet_send_svrloc_client_packets',`
44905 ## </param>
44906 ## <infoflow type="none"/>
44907 #
44908 -interface(`corenet_dontaudit_send_svrloc_client_packets',`
44909 +interface(`corenet_dontaudit_send_syncthing_admin_client_packets',`
44910 gen_require(`
44911 - type svrloc_client_packet_t;
44912 + type syncthing_admin_client_packet_t;
44913 ')
44914
44915 - dontaudit $1 svrloc_client_packet_t:packet send;
44916 + dontaudit $1 syncthing_admin_client_packet_t:packet send;
44917 ')
44918
44919 ########################################
44920 ## <summary>
44921 -## Receive svrloc_client packets.
44922 +## Receive syncthing_admin_client packets.
44923 ## </summary>
44924 ## <param name="domain">
44925 ## <summary>
44926 @@ -84907,17 +88008,17 @@ interface(`corenet_dontaudit_send_svrloc_client_packets',`
44927 ## </param>
44928 ## <infoflow type="read" weight="10"/>
44929 #
44930 -interface(`corenet_receive_svrloc_client_packets',`
44931 +interface(`corenet_receive_syncthing_admin_client_packets',`
44932 gen_require(`
44933 - type svrloc_client_packet_t;
44934 + type syncthing_admin_client_packet_t;
44935 ')
44936
44937 - allow $1 svrloc_client_packet_t:packet recv;
44938 + allow $1 syncthing_admin_client_packet_t:packet recv;
44939 ')
44940
44941 ########################################
44942 ## <summary>
44943 -## Do not audit attempts to receive svrloc_client packets.
44944 +## Do not audit attempts to receive syncthing_admin_client packets.
44945 ## </summary>
44946 ## <param name="domain">
44947 ## <summary>
44948 @@ -84926,17 +88027,17 @@ interface(`corenet_receive_svrloc_client_packets',`
44949 ## </param>
44950 ## <infoflow type="none"/>
44951 #
44952 -interface(`corenet_dontaudit_receive_svrloc_client_packets',`
44953 +interface(`corenet_dontaudit_receive_syncthing_admin_client_packets',`
44954 gen_require(`
44955 - type svrloc_client_packet_t;
44956 + type syncthing_admin_client_packet_t;
44957 ')
44958
44959 - dontaudit $1 svrloc_client_packet_t:packet recv;
44960 + dontaudit $1 syncthing_admin_client_packet_t:packet recv;
44961 ')
44962
44963 ########################################
44964 ## <summary>
44965 -## Send and receive svrloc_client packets.
44966 +## Send and receive syncthing_admin_client packets.
44967 ## </summary>
44968 ## <param name="domain">
44969 ## <summary>
44970 @@ -84945,14 +88046,14 @@ interface(`corenet_dontaudit_receive_svrloc_client_packets',`
44971 ## </param>
44972 ## <infoflow type="both" weight="10"/>
44973 #
44974 -interface(`corenet_sendrecv_svrloc_client_packets',`
44975 - corenet_send_svrloc_client_packets($1)
44976 - corenet_receive_svrloc_client_packets($1)
44977 +interface(`corenet_sendrecv_syncthing_admin_client_packets',`
44978 + corenet_send_syncthing_admin_client_packets($1)
44979 + corenet_receive_syncthing_admin_client_packets($1)
44980 ')
44981
44982 ########################################
44983 ## <summary>
44984 -## Do not audit attempts to send and receive svrloc_client packets.
44985 +## Do not audit attempts to send and receive syncthing_admin_client packets.
44986 ## </summary>
44987 ## <param name="domain">
44988 ## <summary>
44989 @@ -84961,14 +88062,14 @@ interface(`corenet_sendrecv_svrloc_client_packets',`
44990 ## </param>
44991 ## <infoflow type="none"/>
44992 #
44993 -interface(`corenet_dontaudit_sendrecv_svrloc_client_packets',`
44994 - corenet_dontaudit_send_svrloc_client_packets($1)
44995 - corenet_dontaudit_receive_svrloc_client_packets($1)
44996 +interface(`corenet_dontaudit_sendrecv_syncthing_admin_client_packets',`
44997 + corenet_dontaudit_send_syncthing_admin_client_packets($1)
44998 + corenet_dontaudit_receive_syncthing_admin_client_packets($1)
44999 ')
45000
45001 ########################################
45002 ## <summary>
45003 -## Relabel packets to svrloc_client the packet type.
45004 +## Relabel packets to syncthing_admin_client the packet type.
45005 ## </summary>
45006 ## <param name="domain">
45007 ## <summary>
45008 @@ -84976,18 +88077,18 @@ interface(`corenet_dontaudit_sendrecv_svrloc_client_packets',`
45009 ## </summary>
45010 ## </param>
45011 #
45012 -interface(`corenet_relabelto_svrloc_client_packets',`
45013 +interface(`corenet_relabelto_syncthing_admin_client_packets',`
45014 gen_require(`
45015 - type svrloc_client_packet_t;
45016 + type syncthing_admin_client_packet_t;
45017 ')
45018
45019 - allow $1 svrloc_client_packet_t:packet relabelto;
45020 + allow $1 syncthing_admin_client_packet_t:packet relabelto;
45021 ')
45022
45023
45024 ########################################
45025 ## <summary>
45026 -## Send svrloc_server packets.
45027 +## Send syncthing_admin_server packets.
45028 ## </summary>
45029 ## <param name="domain">
45030 ## <summary>
45031 @@ -84996,17 +88097,17 @@ interface(`corenet_relabelto_svrloc_client_packets',`
45032 ## </param>
45033 ## <infoflow type="write" weight="10"/>
45034 #
45035 -interface(`corenet_send_svrloc_server_packets',`
45036 +interface(`corenet_send_syncthing_admin_server_packets',`
45037 gen_require(`
45038 - type svrloc_server_packet_t;
45039 + type syncthing_admin_server_packet_t;
45040 ')
45041
45042 - allow $1 svrloc_server_packet_t:packet send;
45043 + allow $1 syncthing_admin_server_packet_t:packet send;
45044 ')
45045
45046 ########################################
45047 ## <summary>
45048 -## Do not audit attempts to send svrloc_server packets.
45049 +## Do not audit attempts to send syncthing_admin_server packets.
45050 ## </summary>
45051 ## <param name="domain">
45052 ## <summary>
45053 @@ -85015,17 +88116,17 @@ interface(`corenet_send_svrloc_server_packets',`
45054 ## </param>
45055 ## <infoflow type="none"/>
45056 #
45057 -interface(`corenet_dontaudit_send_svrloc_server_packets',`
45058 +interface(`corenet_dontaudit_send_syncthing_admin_server_packets',`
45059 gen_require(`
45060 - type svrloc_server_packet_t;
45061 + type syncthing_admin_server_packet_t;
45062 ')
45063
45064 - dontaudit $1 svrloc_server_packet_t:packet send;
45065 + dontaudit $1 syncthing_admin_server_packet_t:packet send;
45066 ')
45067
45068 ########################################
45069 ## <summary>
45070 -## Receive svrloc_server packets.
45071 +## Receive syncthing_admin_server packets.
45072 ## </summary>
45073 ## <param name="domain">
45074 ## <summary>
45075 @@ -85034,17 +88135,17 @@ interface(`corenet_dontaudit_send_svrloc_server_packets',`
45076 ## </param>
45077 ## <infoflow type="read" weight="10"/>
45078 #
45079 -interface(`corenet_receive_svrloc_server_packets',`
45080 +interface(`corenet_receive_syncthing_admin_server_packets',`
45081 gen_require(`
45082 - type svrloc_server_packet_t;
45083 + type syncthing_admin_server_packet_t;
45084 ')
45085
45086 - allow $1 svrloc_server_packet_t:packet recv;
45087 + allow $1 syncthing_admin_server_packet_t:packet recv;
45088 ')
45089
45090 ########################################
45091 ## <summary>
45092 -## Do not audit attempts to receive svrloc_server packets.
45093 +## Do not audit attempts to receive syncthing_admin_server packets.
45094 ## </summary>
45095 ## <param name="domain">
45096 ## <summary>
45097 @@ -85053,17 +88154,17 @@ interface(`corenet_receive_svrloc_server_packets',`
45098 ## </param>
45099 ## <infoflow type="none"/>
45100 #
45101 -interface(`corenet_dontaudit_receive_svrloc_server_packets',`
45102 +interface(`corenet_dontaudit_receive_syncthing_admin_server_packets',`
45103 gen_require(`
45104 - type svrloc_server_packet_t;
45105 + type syncthing_admin_server_packet_t;
45106 ')
45107
45108 - dontaudit $1 svrloc_server_packet_t:packet recv;
45109 + dontaudit $1 syncthing_admin_server_packet_t:packet recv;
45110 ')
45111
45112 ########################################
45113 ## <summary>
45114 -## Send and receive svrloc_server packets.
45115 +## Send and receive syncthing_admin_server packets.
45116 ## </summary>
45117 ## <param name="domain">
45118 ## <summary>
45119 @@ -85072,14 +88173,14 @@ interface(`corenet_dontaudit_receive_svrloc_server_packets',`
45120 ## </param>
45121 ## <infoflow type="both" weight="10"/>
45122 #
45123 -interface(`corenet_sendrecv_svrloc_server_packets',`
45124 - corenet_send_svrloc_server_packets($1)
45125 - corenet_receive_svrloc_server_packets($1)
45126 +interface(`corenet_sendrecv_syncthing_admin_server_packets',`
45127 + corenet_send_syncthing_admin_server_packets($1)
45128 + corenet_receive_syncthing_admin_server_packets($1)
45129 ')
45130
45131 ########################################
45132 ## <summary>
45133 -## Do not audit attempts to send and receive svrloc_server packets.
45134 +## Do not audit attempts to send and receive syncthing_admin_server packets.
45135 ## </summary>
45136 ## <param name="domain">
45137 ## <summary>
45138 @@ -85088,14 +88189,14 @@ interface(`corenet_sendrecv_svrloc_server_packets',`
45139 ## </param>
45140 ## <infoflow type="none"/>
45141 #
45142 -interface(`corenet_dontaudit_sendrecv_svrloc_server_packets',`
45143 - corenet_dontaudit_send_svrloc_server_packets($1)
45144 - corenet_dontaudit_receive_svrloc_server_packets($1)
45145 +interface(`corenet_dontaudit_sendrecv_syncthing_admin_server_packets',`
45146 + corenet_dontaudit_send_syncthing_admin_server_packets($1)
45147 + corenet_dontaudit_receive_syncthing_admin_server_packets($1)
45148 ')
45149
45150 ########################################
45151 ## <summary>
45152 -## Relabel packets to svrloc_server the packet type.
45153 +## Relabel packets to syncthing_admin_server the packet type.
45154 ## </summary>
45155 ## <param name="domain">
45156 ## <summary>
45157 @@ -85103,12 +88204,12 @@ interface(`corenet_dontaudit_sendrecv_svrloc_server_packets',`
45158 ## </summary>
45159 ## </param>
45160 #
45161 -interface(`corenet_relabelto_svrloc_server_packets',`
45162 +interface(`corenet_relabelto_syncthing_admin_server_packets',`
45163 gen_require(`
45164 - type svrloc_server_packet_t;
45165 + type syncthing_admin_server_packet_t;
45166 ')
45167
45168 - allow $1 svrloc_server_packet_t:packet relabelto;
45169 + allow $1 syncthing_admin_server_packet_t:packet relabelto;
45170 ')
45171
45172
45173 @@ -85116,7 +88217,7 @@ interface(`corenet_relabelto_svrloc_server_packets',`
45174
45175 ########################################
45176 ## <summary>
45177 -## Send and receive TCP traffic on the swat port.
45178 +## Send and receive TCP traffic on the syncthing_discovery port.
45179 ## </summary>
45180 ## <param name="domain">
45181 ## <summary>
45182 @@ -85125,17 +88226,17 @@ interface(`corenet_relabelto_svrloc_server_packets',`
45183 ## </param>
45184 ## <infoflow type="both" weight="10"/>
45185 #
45186 -interface(`corenet_tcp_sendrecv_swat_port',`
45187 +interface(`corenet_tcp_sendrecv_syncthing_discovery_port',`
45188 gen_require(`
45189 - type swat_port_t;
45190 + type syncthing_discovery_port_t;
45191 ')
45192
45193 - allow $1 swat_port_t:tcp_socket { send_msg recv_msg };
45194 + allow $1 syncthing_discovery_port_t:tcp_socket { send_msg recv_msg };
45195 ')
45196
45197 ########################################
45198 ## <summary>
45199 -## Send UDP traffic on the swat port.
45200 +## Send UDP traffic on the syncthing_discovery port.
45201 ## </summary>
45202 ## <param name="domain">
45203 ## <summary>
45204 @@ -85144,17 +88245,17 @@ interface(`corenet_tcp_sendrecv_swat_port',`
45205 ## </param>
45206 ## <infoflow type="write" weight="10"/>
45207 #
45208 -interface(`corenet_udp_send_swat_port',`
45209 +interface(`corenet_udp_send_syncthing_discovery_port',`
45210 gen_require(`
45211 - type swat_port_t;
45212 + type syncthing_discovery_port_t;
45213 ')
45214
45215 - allow $1 swat_port_t:udp_socket send_msg;
45216 + allow $1 syncthing_discovery_port_t:udp_socket send_msg;
45217 ')
45218
45219 ########################################
45220 ## <summary>
45221 -## Do not audit attempts to send UDP traffic on the swat port.
45222 +## Do not audit attempts to send UDP traffic on the syncthing_discovery port.
45223 ## </summary>
45224 ## <param name="domain">
45225 ## <summary>
45226 @@ -85163,17 +88264,17 @@ interface(`corenet_udp_send_swat_port',`
45227 ## </param>
45228 ## <infoflow type="none"/>
45229 #
45230 -interface(`corenet_dontaudit_udp_send_swat_port',`
45231 +interface(`corenet_dontaudit_udp_send_syncthing_discovery_port',`
45232 gen_require(`
45233 - type swat_port_t;
45234 + type syncthing_discovery_port_t;
45235 ')
45236
45237 - dontaudit $1 swat_port_t:udp_socket send_msg;
45238 + dontaudit $1 syncthing_discovery_port_t:udp_socket send_msg;
45239 ')
45240
45241 ########################################
45242 ## <summary>
45243 -## Receive UDP traffic on the swat port.
45244 +## Receive UDP traffic on the syncthing_discovery port.
45245 ## </summary>
45246 ## <param name="domain">
45247 ## <summary>
45248 @@ -85182,17 +88283,17 @@ interface(`corenet_dontaudit_udp_send_swat_port',`
45249 ## </param>
45250 ## <infoflow type="read" weight="10"/>
45251 #
45252 -interface(`corenet_udp_receive_swat_port',`
45253 +interface(`corenet_udp_receive_syncthing_discovery_port',`
45254 gen_require(`
45255 - type swat_port_t;
45256 + type syncthing_discovery_port_t;
45257 ')
45258
45259 - allow $1 swat_port_t:udp_socket recv_msg;
45260 + allow $1 syncthing_discovery_port_t:udp_socket recv_msg;
45261 ')
45262
45263 ########################################
45264 ## <summary>
45265 -## Do not audit attempts to receive UDP traffic on the swat port.
45266 +## Do not audit attempts to receive UDP traffic on the syncthing_discovery port.
45267 ## </summary>
45268 ## <param name="domain">
45269 ## <summary>
45270 @@ -85201,17 +88302,17 @@ interface(`corenet_udp_receive_swat_port',`
45271 ## </param>
45272 ## <infoflow type="none"/>
45273 #
45274 -interface(`corenet_dontaudit_udp_receive_swat_port',`
45275 +interface(`corenet_dontaudit_udp_receive_syncthing_discovery_port',`
45276 gen_require(`
45277 - type swat_port_t;
45278 + type syncthing_discovery_port_t;
45279 ')
45280
45281 - dontaudit $1 swat_port_t:udp_socket recv_msg;
45282 + dontaudit $1 syncthing_discovery_port_t:udp_socket recv_msg;
45283 ')
45284
45285 ########################################
45286 ## <summary>
45287 -## Send and receive UDP traffic on the swat port.
45288 +## Send and receive UDP traffic on the syncthing_discovery port.
45289 ## </summary>
45290 ## <param name="domain">
45291 ## <summary>
45292 @@ -85220,15 +88321,15 @@ interface(`corenet_dontaudit_udp_receive_swat_port',`
45293 ## </param>
45294 ## <infoflow type="both" weight="10"/>
45295 #
45296 -interface(`corenet_udp_sendrecv_swat_port',`
45297 - corenet_udp_send_swat_port($1)
45298 - corenet_udp_receive_swat_port($1)
45299 +interface(`corenet_udp_sendrecv_syncthing_discovery_port',`
45300 + corenet_udp_send_syncthing_discovery_port($1)
45301 + corenet_udp_receive_syncthing_discovery_port($1)
45302 ')
45303
45304 ########################################
45305 ## <summary>
45306 ## Do not audit attempts to send and receive
45307 -## UDP traffic on the swat port.
45308 +## UDP traffic on the syncthing_discovery port.
45309 ## </summary>
45310 ## <param name="domain">
45311 ## <summary>
45312 @@ -85237,14 +88338,14 @@ interface(`corenet_udp_sendrecv_swat_port',`
45313 ## </param>
45314 ## <infoflow type="none"/>
45315 #
45316 -interface(`corenet_dontaudit_udp_sendrecv_swat_port',`
45317 - corenet_dontaudit_udp_send_swat_port($1)
45318 - corenet_dontaudit_udp_receive_swat_port($1)
45319 +interface(`corenet_dontaudit_udp_sendrecv_syncthing_discovery_port',`
45320 + corenet_dontaudit_udp_send_syncthing_discovery_port($1)
45321 + corenet_dontaudit_udp_receive_syncthing_discovery_port($1)
45322 ')
45323
45324 ########################################
45325 ## <summary>
45326 -## Bind TCP sockets to the swat port.
45327 +## Bind TCP sockets to the syncthing_discovery port.
45328 ## </summary>
45329 ## <param name="domain">
45330 ## <summary>
45331 @@ -85253,18 +88354,18 @@ interface(`corenet_dontaudit_udp_sendrecv_swat_port',`
45332 ## </param>
45333 ## <infoflow type="none"/>
45334 #
45335 -interface(`corenet_tcp_bind_swat_port',`
45336 +interface(`corenet_tcp_bind_syncthing_discovery_port',`
45337 gen_require(`
45338 - type swat_port_t;
45339 + type syncthing_discovery_port_t;
45340 ')
45341
45342 - allow $1 swat_port_t:tcp_socket name_bind;
45343 - allow $1 self:capability net_bind_service;
45344 + allow $1 syncthing_discovery_port_t:tcp_socket name_bind;
45345 +
45346 ')
45347
45348 ########################################
45349 ## <summary>
45350 -## Bind UDP sockets to the swat port.
45351 +## Bind UDP sockets to the syncthing_discovery port.
45352 ## </summary>
45353 ## <param name="domain">
45354 ## <summary>
45355 @@ -85273,18 +88374,18 @@ interface(`corenet_tcp_bind_swat_port',`
45356 ## </param>
45357 ## <infoflow type="none"/>
45358 #
45359 -interface(`corenet_udp_bind_swat_port',`
45360 +interface(`corenet_udp_bind_syncthing_discovery_port',`
45361 gen_require(`
45362 - type swat_port_t;
45363 + type syncthing_discovery_port_t;
45364 ')
45365
45366 - allow $1 swat_port_t:udp_socket name_bind;
45367 - allow $1 self:capability net_bind_service;
45368 + allow $1 syncthing_discovery_port_t:udp_socket name_bind;
45369 +
45370 ')
45371
45372 ########################################
45373 ## <summary>
45374 -## Make a TCP connection to the swat port.
45375 +## Make a TCP connection to the syncthing_discovery port.
45376 ## </summary>
45377 ## <param name="domain">
45378 ## <summary>
45379 @@ -85292,18 +88393,18 @@ interface(`corenet_udp_bind_swat_port',`
45380 ## </summary>
45381 ## </param>
45382 #
45383 -interface(`corenet_tcp_connect_swat_port',`
45384 +interface(`corenet_tcp_connect_syncthing_discovery_port',`
45385 gen_require(`
45386 - type swat_port_t;
45387 + type syncthing_discovery_port_t;
45388 ')
45389
45390 - allow $1 swat_port_t:tcp_socket name_connect;
45391 + allow $1 syncthing_discovery_port_t:tcp_socket name_connect;
45392 ')
45393
45394
45395 ########################################
45396 ## <summary>
45397 -## Send swat_client packets.
45398 +## Send syncthing_discovery_client packets.
45399 ## </summary>
45400 ## <param name="domain">
45401 ## <summary>
45402 @@ -85312,17 +88413,17 @@ interface(`corenet_tcp_connect_swat_port',`
45403 ## </param>
45404 ## <infoflow type="write" weight="10"/>
45405 #
45406 -interface(`corenet_send_swat_client_packets',`
45407 +interface(`corenet_send_syncthing_discovery_client_packets',`
45408 gen_require(`
45409 - type swat_client_packet_t;
45410 + type syncthing_discovery_client_packet_t;
45411 ')
45412
45413 - allow $1 swat_client_packet_t:packet send;
45414 + allow $1 syncthing_discovery_client_packet_t:packet send;
45415 ')
45416
45417 ########################################
45418 ## <summary>
45419 -## Do not audit attempts to send swat_client packets.
45420 +## Do not audit attempts to send syncthing_discovery_client packets.
45421 ## </summary>
45422 ## <param name="domain">
45423 ## <summary>
45424 @@ -85331,17 +88432,17 @@ interface(`corenet_send_swat_client_packets',`
45425 ## </param>
45426 ## <infoflow type="none"/>
45427 #
45428 -interface(`corenet_dontaudit_send_swat_client_packets',`
45429 +interface(`corenet_dontaudit_send_syncthing_discovery_client_packets',`
45430 gen_require(`
45431 - type swat_client_packet_t;
45432 + type syncthing_discovery_client_packet_t;
45433 ')
45434
45435 - dontaudit $1 swat_client_packet_t:packet send;
45436 + dontaudit $1 syncthing_discovery_client_packet_t:packet send;
45437 ')
45438
45439 ########################################
45440 ## <summary>
45441 -## Receive swat_client packets.
45442 +## Receive syncthing_discovery_client packets.
45443 ## </summary>
45444 ## <param name="domain">
45445 ## <summary>
45446 @@ -85350,17 +88451,17 @@ interface(`corenet_dontaudit_send_swat_client_packets',`
45447 ## </param>
45448 ## <infoflow type="read" weight="10"/>
45449 #
45450 -interface(`corenet_receive_swat_client_packets',`
45451 +interface(`corenet_receive_syncthing_discovery_client_packets',`
45452 gen_require(`
45453 - type swat_client_packet_t;
45454 + type syncthing_discovery_client_packet_t;
45455 ')
45456
45457 - allow $1 swat_client_packet_t:packet recv;
45458 + allow $1 syncthing_discovery_client_packet_t:packet recv;
45459 ')
45460
45461 ########################################
45462 ## <summary>
45463 -## Do not audit attempts to receive swat_client packets.
45464 +## Do not audit attempts to receive syncthing_discovery_client packets.
45465 ## </summary>
45466 ## <param name="domain">
45467 ## <summary>
45468 @@ -85369,17 +88470,17 @@ interface(`corenet_receive_swat_client_packets',`
45469 ## </param>
45470 ## <infoflow type="none"/>
45471 #
45472 -interface(`corenet_dontaudit_receive_swat_client_packets',`
45473 +interface(`corenet_dontaudit_receive_syncthing_discovery_client_packets',`
45474 gen_require(`
45475 - type swat_client_packet_t;
45476 + type syncthing_discovery_client_packet_t;
45477 ')
45478
45479 - dontaudit $1 swat_client_packet_t:packet recv;
45480 + dontaudit $1 syncthing_discovery_client_packet_t:packet recv;
45481 ')
45482
45483 ########################################
45484 ## <summary>
45485 -## Send and receive swat_client packets.
45486 +## Send and receive syncthing_discovery_client packets.
45487 ## </summary>
45488 ## <param name="domain">
45489 ## <summary>
45490 @@ -85388,14 +88489,14 @@ interface(`corenet_dontaudit_receive_swat_client_packets',`
45491 ## </param>
45492 ## <infoflow type="both" weight="10"/>
45493 #
45494 -interface(`corenet_sendrecv_swat_client_packets',`
45495 - corenet_send_swat_client_packets($1)
45496 - corenet_receive_swat_client_packets($1)
45497 +interface(`corenet_sendrecv_syncthing_discovery_client_packets',`
45498 + corenet_send_syncthing_discovery_client_packets($1)
45499 + corenet_receive_syncthing_discovery_client_packets($1)
45500 ')
45501
45502 ########################################
45503 ## <summary>
45504 -## Do not audit attempts to send and receive swat_client packets.
45505 +## Do not audit attempts to send and receive syncthing_discovery_client packets.
45506 ## </summary>
45507 ## <param name="domain">
45508 ## <summary>
45509 @@ -85404,14 +88505,14 @@ interface(`corenet_sendrecv_swat_client_packets',`
45510 ## </param>
45511 ## <infoflow type="none"/>
45512 #
45513 -interface(`corenet_dontaudit_sendrecv_swat_client_packets',`
45514 - corenet_dontaudit_send_swat_client_packets($1)
45515 - corenet_dontaudit_receive_swat_client_packets($1)
45516 +interface(`corenet_dontaudit_sendrecv_syncthing_discovery_client_packets',`
45517 + corenet_dontaudit_send_syncthing_discovery_client_packets($1)
45518 + corenet_dontaudit_receive_syncthing_discovery_client_packets($1)
45519 ')
45520
45521 ########################################
45522 ## <summary>
45523 -## Relabel packets to swat_client the packet type.
45524 +## Relabel packets to syncthing_discovery_client the packet type.
45525 ## </summary>
45526 ## <param name="domain">
45527 ## <summary>
45528 @@ -85419,18 +88520,18 @@ interface(`corenet_dontaudit_sendrecv_swat_client_packets',`
45529 ## </summary>
45530 ## </param>
45531 #
45532 -interface(`corenet_relabelto_swat_client_packets',`
45533 +interface(`corenet_relabelto_syncthing_discovery_client_packets',`
45534 gen_require(`
45535 - type swat_client_packet_t;
45536 + type syncthing_discovery_client_packet_t;
45537 ')
45538
45539 - allow $1 swat_client_packet_t:packet relabelto;
45540 + allow $1 syncthing_discovery_client_packet_t:packet relabelto;
45541 ')
45542
45543
45544 ########################################
45545 ## <summary>
45546 -## Send swat_server packets.
45547 +## Send syncthing_discovery_server packets.
45548 ## </summary>
45549 ## <param name="domain">
45550 ## <summary>
45551 @@ -85439,17 +88540,17 @@ interface(`corenet_relabelto_swat_client_packets',`
45552 ## </param>
45553 ## <infoflow type="write" weight="10"/>
45554 #
45555 -interface(`corenet_send_swat_server_packets',`
45556 +interface(`corenet_send_syncthing_discovery_server_packets',`
45557 gen_require(`
45558 - type swat_server_packet_t;
45559 + type syncthing_discovery_server_packet_t;
45560 ')
45561
45562 - allow $1 swat_server_packet_t:packet send;
45563 + allow $1 syncthing_discovery_server_packet_t:packet send;
45564 ')
45565
45566 ########################################
45567 ## <summary>
45568 -## Do not audit attempts to send swat_server packets.
45569 +## Do not audit attempts to send syncthing_discovery_server packets.
45570 ## </summary>
45571 ## <param name="domain">
45572 ## <summary>
45573 @@ -85458,17 +88559,17 @@ interface(`corenet_send_swat_server_packets',`
45574 ## </param>
45575 ## <infoflow type="none"/>
45576 #
45577 -interface(`corenet_dontaudit_send_swat_server_packets',`
45578 +interface(`corenet_dontaudit_send_syncthing_discovery_server_packets',`
45579 gen_require(`
45580 - type swat_server_packet_t;
45581 + type syncthing_discovery_server_packet_t;
45582 ')
45583
45584 - dontaudit $1 swat_server_packet_t:packet send;
45585 + dontaudit $1 syncthing_discovery_server_packet_t:packet send;
45586 ')
45587
45588 ########################################
45589 ## <summary>
45590 -## Receive swat_server packets.
45591 +## Receive syncthing_discovery_server packets.
45592 ## </summary>
45593 ## <param name="domain">
45594 ## <summary>
45595 @@ -85477,17 +88578,17 @@ interface(`corenet_dontaudit_send_swat_server_packets',`
45596 ## </param>
45597 ## <infoflow type="read" weight="10"/>
45598 #
45599 -interface(`corenet_receive_swat_server_packets',`
45600 +interface(`corenet_receive_syncthing_discovery_server_packets',`
45601 gen_require(`
45602 - type swat_server_packet_t;
45603 + type syncthing_discovery_server_packet_t;
45604 ')
45605
45606 - allow $1 swat_server_packet_t:packet recv;
45607 + allow $1 syncthing_discovery_server_packet_t:packet recv;
45608 ')
45609
45610 ########################################
45611 ## <summary>
45612 -## Do not audit attempts to receive swat_server packets.
45613 +## Do not audit attempts to receive syncthing_discovery_server packets.
45614 ## </summary>
45615 ## <param name="domain">
45616 ## <summary>
45617 @@ -85496,17 +88597,17 @@ interface(`corenet_receive_swat_server_packets',`
45618 ## </param>
45619 ## <infoflow type="none"/>
45620 #
45621 -interface(`corenet_dontaudit_receive_swat_server_packets',`
45622 +interface(`corenet_dontaudit_receive_syncthing_discovery_server_packets',`
45623 gen_require(`
45624 - type swat_server_packet_t;
45625 + type syncthing_discovery_server_packet_t;
45626 ')
45627
45628 - dontaudit $1 swat_server_packet_t:packet recv;
45629 + dontaudit $1 syncthing_discovery_server_packet_t:packet recv;
45630 ')
45631
45632 ########################################
45633 ## <summary>
45634 -## Send and receive swat_server packets.
45635 +## Send and receive syncthing_discovery_server packets.
45636 ## </summary>
45637 ## <param name="domain">
45638 ## <summary>
45639 @@ -85515,14 +88616,14 @@ interface(`corenet_dontaudit_receive_swat_server_packets',`
45640 ## </param>
45641 ## <infoflow type="both" weight="10"/>
45642 #
45643 -interface(`corenet_sendrecv_swat_server_packets',`
45644 - corenet_send_swat_server_packets($1)
45645 - corenet_receive_swat_server_packets($1)
45646 +interface(`corenet_sendrecv_syncthing_discovery_server_packets',`
45647 + corenet_send_syncthing_discovery_server_packets($1)
45648 + corenet_receive_syncthing_discovery_server_packets($1)
45649 ')
45650
45651 ########################################
45652 ## <summary>
45653 -## Do not audit attempts to send and receive swat_server packets.
45654 +## Do not audit attempts to send and receive syncthing_discovery_server packets.
45655 ## </summary>
45656 ## <param name="domain">
45657 ## <summary>
45658 @@ -85531,14 +88632,14 @@ interface(`corenet_sendrecv_swat_server_packets',`
45659 ## </param>
45660 ## <infoflow type="none"/>
45661 #
45662 -interface(`corenet_dontaudit_sendrecv_swat_server_packets',`
45663 - corenet_dontaudit_send_swat_server_packets($1)
45664 - corenet_dontaudit_receive_swat_server_packets($1)
45665 +interface(`corenet_dontaudit_sendrecv_syncthing_discovery_server_packets',`
45666 + corenet_dontaudit_send_syncthing_discovery_server_packets($1)
45667 + corenet_dontaudit_receive_syncthing_discovery_server_packets($1)
45668 ')
45669
45670 ########################################
45671 ## <summary>
45672 -## Relabel packets to swat_server the packet type.
45673 +## Relabel packets to syncthing_discovery_server the packet type.
45674 ## </summary>
45675 ## <param name="domain">
45676 ## <summary>
45677 @@ -85546,12 +88647,12 @@ interface(`corenet_dontaudit_sendrecv_swat_server_packets',`
45678 ## </summary>
45679 ## </param>
45680 #
45681 -interface(`corenet_relabelto_swat_server_packets',`
45682 +interface(`corenet_relabelto_syncthing_discovery_server_packets',`
45683 gen_require(`
45684 - type swat_server_packet_t;
45685 + type syncthing_discovery_server_packet_t;
45686 ')
45687
45688 - allow $1 swat_server_packet_t:packet relabelto;
45689 + allow $1 syncthing_discovery_server_packet_t:packet relabelto;
45690 ')
45691
45692
45693
45694 diff --git a/policy/modules/kernel/corenetwork.te b/policy/modules/kernel/corenetwork.te
45695 index af43a4e2..a7eb9045 100644
45696 --- a/policy/modules/kernel/corenetwork.te
45697 +++ b/policy/modules/kernel/corenetwork.te
45698 @@ -2,7 +2,7 @@
45699 # This is a generated file! Instead of modifying this file, the
45700 # corenetwork.te.in or corenetwork.te.m4 file should be modified.
45701 #
45702 -policy_module(corenetwork, 1.21.0)
45703 +policy_module(corenetwork, 1.23.3)
45704
45705 ########################################
45706 #
45707 @@ -867,6 +867,14 @@ typeattribute kismet_port_t unreserved_port_type;
45708 portcon tcp 2501 gen_context(system_u:object_r:kismet_port_t,s0)
45709
45710
45711 +type kdeconnect_port_t, port_type, defined_port_type;
45712 +type kdeconnect_client_packet_t, packet_type, client_packet_type;
45713 +type kdeconnect_server_packet_t, packet_type, server_packet_type;
45714 +typeattribute kdeconnect_port_t unreserved_port_type;
45715 +portcon tcp 1714 gen_context(system_u:object_r:kdeconnect_port_t,s0)
45716 +portcon udp 1714 gen_context(system_u:object_r:kdeconnect_port_t,s0)
45717 +
45718 +
45719 type kprop_port_t, port_type, defined_port_type;
45720 type kprop_client_packet_t, packet_type, client_packet_type;
45721 type kprop_server_packet_t, packet_type, server_packet_type;
45722 @@ -902,6 +910,7 @@ portcon udp 389 gen_context(system_u:object_r:ldap_port_t,s0)
45723 portcon tcp 636 gen_context(system_u:object_r:ldap_port_t,s0)
45724 portcon udp 636 gen_context(system_u:object_r:ldap_port_t,s0)
45725 portcon tcp 3268 gen_context(system_u:object_r:ldap_port_t,s0)
45726 +portcon tcp 3269 gen_context(system_u:object_r:ldap_port_t,s0)
45727
45728
45729 type lirc_port_t, port_type, defined_port_type;
45730 @@ -911,6 +920,14 @@ typeattribute lirc_port_t unreserved_port_type;
45731 portcon tcp 8765 gen_context(system_u:object_r:lirc_port_t,s0)
45732
45733
45734 +type llmnr_port_t, port_type, defined_port_type;
45735 +type llmnr_client_packet_t, packet_type, client_packet_type;
45736 +type llmnr_server_packet_t, packet_type, server_packet_type;
45737 +typeattribute llmnr_port_t unreserved_port_type;
45738 +portcon tcp 5355 gen_context(system_u:object_r:llmnr_port_t,s0)
45739 +portcon udp 5355 gen_context(system_u:object_r:llmnr_port_t,s0)
45740 +
45741 +
45742 type lmtp_port_t, port_type, defined_port_type;
45743 type lmtp_client_packet_t, packet_type, client_packet_type;
45744 type lmtp_server_packet_t, packet_type, server_packet_type;
45745 @@ -961,6 +978,21 @@ portcon tcp 5050 gen_context(system_u:object_r:mmcc_port_t,s0)
45746 portcon udp 5050 gen_context(system_u:object_r:mmcc_port_t,s0)
45747
45748
45749 +type mon_port_t, port_type, defined_port_type;
45750 +type mon_client_packet_t, packet_type, client_packet_type;
45751 +type mon_server_packet_t, packet_type, server_packet_type;
45752 +typeattribute mon_port_t unreserved_port_type;
45753 +portcon tcp 2583 gen_context(system_u:object_r:mon_port_t,s0)
45754 +portcon udp 2583 gen_context(system_u:object_r:mon_port_t,s0)
45755 +
45756 +
45757 +type monit_port_t, port_type, defined_port_type;
45758 +type monit_client_packet_t, packet_type, client_packet_type;
45759 +type monit_server_packet_t, packet_type, server_packet_type;
45760 +typeattribute monit_port_t unreserved_port_type;
45761 +portcon tcp 2812 gen_context(system_u:object_r:monit_port_t,s0)
45762 +
45763 +
45764 type monopd_port_t, port_type, defined_port_type;
45765 type monopd_client_packet_t, packet_type, client_packet_type;
45766 type monopd_server_packet_t, packet_type, server_packet_type;
45767 @@ -1248,6 +1280,7 @@ type postgrey_port_t, port_type, defined_port_type;
45768 type postgrey_client_packet_t, packet_type, client_packet_type;
45769 type postgrey_server_packet_t, packet_type, server_packet_type;
45770 typeattribute postgrey_port_t unreserved_port_type;
45771 +portcon tcp 10023 gen_context(system_u:object_r:postgrey_port_t,s0)
45772 portcon tcp 60000 gen_context(system_u:object_r:postgrey_port_t,s0)
45773
45774
45775 @@ -1360,6 +1393,7 @@ type redis_client_packet_t, packet_type, client_packet_type;
45776 type redis_server_packet_t, packet_type, server_packet_type;
45777 typeattribute redis_port_t unreserved_port_type;
45778 portcon tcp 6379 gen_context(system_u:object_r:redis_port_t,s0)
45779 +portcon tcp 26379 gen_context(system_u:object_r:redis_port_t,s0)
45780
45781
45782 type repository_port_t, port_type, defined_port_type;
45783 @@ -1400,6 +1434,8 @@ typeattribute rndc_port_t reserved_port_type;
45784 typeattribute rndc_port_t rpc_port_type;
45785 portcon tcp 953 gen_context(system_u:object_r:rndc_port_t,s0)
45786 portcon udp 953 gen_context(system_u:object_r:rndc_port_t,s0)
45787 +portcon tcp 8953 gen_context(system_u:object_r:rndc_port_t,s0)
45788 +portcon udp 8953 gen_context(system_u:object_r:rndc_port_t,s0)
45789
45790
45791 type router_port_t, port_type, defined_port_type;
45792 @@ -1433,7 +1469,9 @@ type rtorrent_port_t, port_type, defined_port_type;
45793 type rtorrent_client_packet_t, packet_type, client_packet_type;
45794 type rtorrent_server_packet_t, packet_type, server_packet_type;
45795 typeattribute rtorrent_port_t unreserved_port_type;
45796 +portcon tcp 6881 gen_context(system_u:object_r:rtorrent_port_t,s0)
45797 portcon udp 6881 gen_context(system_u:object_r:rtorrent_port_t,s0)
45798 +portcon tcp 6926 gen_context(system_u:object_r:rtorrent_port_t,s0)
45799
45800
45801 type rtsp_port_t, port_type, defined_port_type;
45802 @@ -1613,6 +1651,27 @@ typeattribute swat_port_t rpc_port_type;
45803 portcon tcp 901 gen_context(system_u:object_r:swat_port_t,s0)
45804
45805
45806 +type syncthing_port_t, port_type, defined_port_type;
45807 +type syncthing_client_packet_t, packet_type, client_packet_type;
45808 +type syncthing_server_packet_t, packet_type, server_packet_type;
45809 +typeattribute syncthing_port_t unreserved_port_type;
45810 +portcon tcp 22000 gen_context(system_u:object_r:syncthing_port_t,s0)
45811 +
45812 +
45813 +type syncthing_admin_port_t, port_type, defined_port_type;
45814 +type syncthing_admin_client_packet_t, packet_type, client_packet_type;
45815 +type syncthing_admin_server_packet_t, packet_type, server_packet_type;
45816 +typeattribute syncthing_admin_port_t unreserved_port_type;
45817 +portcon tcp 8384 gen_context(system_u:object_r:syncthing_admin_port_t,s0)
45818 +
45819 +
45820 +type syncthing_discovery_port_t, port_type, defined_port_type;
45821 +type syncthing_discovery_client_packet_t, packet_type, client_packet_type;
45822 +type syncthing_discovery_server_packet_t, packet_type, server_packet_type;
45823 +typeattribute syncthing_discovery_port_t unreserved_port_type;
45824 +portcon udp 21027 gen_context(system_u:object_r:syncthing_discovery_port_t,s0)
45825 +
45826 +
45827 type sype_transport_port_t, port_type, defined_port_type;
45828 type sype_transport_client_packet_t, packet_type, client_packet_type;
45829 type sype_transport_server_packet_t, packet_type, server_packet_type;