File: mod_msg.c

package info (click to toggle)
proftpd-mod-msg 0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 164 kB
  • sloc: ansic: 1,124; makefile: 17
file content (879 lines) | stat: -rw-r--r-- 23,854 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
/*
 * ProFTPD: mod_msg -- a module for sending messages to connected clients
 * Copyright (c) 2004-2018 TJ Saunders
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA.
 *
 * As a special exemption, TJ Saunders and other respective copyright holders
 * give permission to link this program with OpenSSL, and distribute the
 * resulting executable, without including the source code for OpenSSL in the
 * source distribution.
 *
 * This is mod_msg, contrib software for proftpd 1.2 and above.
 * For more information contact TJ Saunders <tj@castaglia.org>.
 */

#include "conf.h"
#include "mod_ctrls.h"
#include "privs.h"

#include <sys/ipc.h>
#include <sys/msg.h>

#ifndef MSGMAX
# define MSGMAX 8192
#endif /* MSGMAX */

#define MOD_MSG_VERSION		"mod_msg/0.5"

/* Make sure the version of proftpd is as necessary. */
#if PROFTPD_VERSION_NUMBER < 0x0001030604
# error "ProFTPD 1.3.6 or later required"
#endif

#define MSG_PROJ_ID		246

/* From src/main.c */
extern pid_t mpid;

module msg_module;

#ifndef PR_USE_CTRLS
# error "mod_msg requires Controls support (--enable-ctrls)"
#endif /* PR_USE_CTRLS */

static ctrls_acttab_t msg_acttab[];

static int msg_engine = FALSE;
static int msg_logfd = -1;
static array_header *msg_pending_list = NULL;
static pool *msg_pool = NULL;
static pool *msg_pending_pool = NULL;
static pr_fh_t *msg_queue_fh = NULL;
static char *msg_queue_path = NULL;
static int msg_qid = -1;

/* Define our own structure for messages, since one is not portably defined.
 */
struct mq_msg {
  /* Message type */
  long mtype;

  /* Message data */
  char mtext[1];
};

static key_t msg_get_key(const char *path) {
  pr_fh_t *fh;

  /* ftok() uses stat(2) on the given path, which means that it needs to exist.
   * So stat() the file ourselves first, and create it if necessary.  We need
   * make sure that permissions on the file we create match the ones that
   * mod_xfer would create.
   */
  fh = pr_fsio_open(path, O_WRONLY|O_CREAT);
  if (!fh) {
    (void) pr_log_writefile(msg_logfd, MOD_MSG_VERSION,
      "error opening '%s': %s", path, strerror(errno));
    return -1;
  }
  pr_fsio_close(fh);

  return ftok(path, MSG_PROJ_ID);
}

static int msg_get_queue(const char *path) {
  int qid;

  /* Obtain a key for this path. */
  key_t key = msg_get_key(path);
  if (key == (key_t) -1) {
    (void) pr_log_writefile(msg_logfd, MOD_MSG_VERSION,
      "unable to get key for '%s': %s", path, strerror(errno));
    return -1;
  }

  /* Try first using IPC_CREAT|IPC_EXCL, to check if there is an existing
   * queue for this key.  If there is, try again, using a flag of zero.
   */
  qid = msgget(key, IPC_CREAT|IPC_EXCL|0666);
  if (qid < 0) {
    if (errno == EEXIST)
      qid = msgget(key, 0);

    else
      return -1;
  }

  return qid;  
}

static int msg_recv_msg(void) {
  int nmsgs = 0;
  ssize_t msglen = 0;
  char buf[MSGMAX] = {'\0'};
  struct mq_msg *msg;

  if (!msg_pending_list) {
    if (!msg_pending_pool) {
      msg_pending_pool = make_sub_pool(msg_pool);
      pr_pool_tag(msg_pending_pool, MOD_MSG_VERSION ": pending pool");
    }

    msg_pending_list = make_array(msg_pending_pool, 0, sizeof(char *));
  }

  msg = malloc(sizeof(struct mq_msg) + MSGMAX - sizeof(msg->mtext));
  if (!msg)
    end_login(1);

  msglen = msgrcv(msg_qid, msg, sizeof(buf), getpid(),
    IPC_NOWAIT|MSG_NOERROR);

  while (msglen > 0) {
    pr_signals_handle();

    /* msglen is the number of bytes in the message.  This means it does
     * not know of string semantics, hence we need to add one byte for the
     * terminating NUL character.
     */

    *((char **) push_array(msg_pending_list)) = pstrndup(msg_pending_pool,
      msg->mtext, msglen + 1);
    nmsgs++;

    msglen = msgrcv(msg_qid, msg, sizeof(buf), getpid(),
      IPC_NOWAIT|MSG_NOERROR);
  }

  free(msg);

  if (msglen < 0 &&
#ifdef ENOMSG
      errno != ENOMSG &&
#endif /* ENOMSG */
      errno != EAGAIN)
    return -1;

  return nmsgs;
}

static int msg_send_msg(pid_t dst_pid, const char *msgstr) {
  int res;
  struct mq_msg *msg;

  /* Take the terminating NUL into account. */
  size_t msglen = strlen(msgstr) + 1;

  msg = malloc(sizeof(struct mq_msg) + MSGMAX - sizeof(msg->mtext));
  if (!msg)
    end_login(1);

  msg->mtype = dst_pid;
  sstrncpy(msg->mtext, msgstr, msglen);

  while (msgsnd(msg_qid, msg, msglen, IPC_NOWAIT) < 0) {
    pr_signals_handle();

    if (errno != EAGAIN) {
      free(msg);
      return -1;
    }
  }
  free(msg);

  /* Send SIGUSR2 to the destination process, to let it know that it should
   * check the queue for messages.
   */
  PRIVS_ROOT
  res = kill(dst_pid, SIGUSR2);
  PRIVS_RELINQUISH

  if (res < 0)
    (void) pr_log_writefile(msg_logfd, MOD_MSG_VERSION,
      "error sending notice: %s", strerror(errno));

  return 0;
}

/* Configuration handlers
 */

/* usage: MessageControlsACLs actions|all allow|deny user|group list */
MODRET set_msgctrlsacls(cmd_rec *cmd) {
  char *bad_action = NULL, **actions = NULL;

  CHECK_ARGS(cmd, 4);
  CHECK_CONF(cmd, CONF_ROOT);

  /* We can cheat here, and use the ctrls_parse_acl() routine to
   * separate the given string...
   */
  actions = ctrls_parse_acl(cmd->tmp_pool, cmd->argv[1]);

  /* Check the second parameter to make sure it is "allow" or "deny" */
  if (strcmp(cmd->argv[2], "allow") != 0 &&
      strcmp(cmd->argv[2], "deny") != 0)
    CONF_ERROR(cmd, "second parameter must be 'allow' or 'deny'");

  /* Check the third parameter to make sure it is "user" or "group" */
  if (strcmp(cmd->argv[3], "user") != 0 &&
      strcmp(cmd->argv[3], "group") != 0)
    CONF_ERROR(cmd, "third parameter must be 'user' or 'group'");

  if ((bad_action = ctrls_set_module_acls(msg_acttab, msg_pool,
      actions, cmd->argv[2], cmd->argv[3], cmd->argv[4])) != NULL)
    CONF_ERROR(cmd, pstrcat(cmd->tmp_pool, ": unknown action: '",
      bad_action, "'", NULL));

  return PR_HANDLED(cmd);
}

/* usage: MessageEngine on|off */
MODRET set_msgengine(cmd_rec *cmd) {
  int engine = -1;
  config_rec *c;

  CHECK_ARGS(cmd, 1);
  CHECK_CONF(cmd, CONF_ROOT|CONF_VIRTUAL|CONF_GLOBAL);

  engine = get_boolean(cmd, 1);
  if (engine == -1) {
    CONF_ERROR(cmd, "expected Boolean parameter");
  }

  c = add_config_param(cmd->argv[0], 1, NULL);
  c->argv[0] = pcalloc(c->pool, sizeof(int));
  *((int *) c->argv[0]) = engine;

  return PR_HANDLED(cmd);
}

/* usage: MessageLog path */
MODRET set_msglog(cmd_rec *cmd) {
  CHECK_ARGS(cmd, 1);
  CHECK_CONF(cmd, CONF_ROOT);

  if (pr_fs_valid_path(cmd->argv[1]) < 0) {
    CONF_ERROR(cmd, "must be an absolute path");
  }

  add_config_param_str(cmd->argv[0], 1, cmd->argv[1]);
  return PR_HANDLED(cmd);
}

/* usage: MessageQueue path */
MODRET set_msgqueue(cmd_rec *cmd) {
  CHECK_ARGS(cmd, 1);
  CHECK_CONF(cmd, CONF_ROOT);

  if (pr_fs_valid_path(cmd->argv[1]) < 0) {
    CONF_ERROR(cmd, "must be an absolute path");
  }

  msg_queue_path = pstrdup(msg_pool, cmd->argv[1]);
  return PR_HANDLED(cmd);
}

/* Command handlers
 */

MODRET msg_post_any(cmd_rec *cmd) {
  register unsigned int i = 0;
  char **msgs;

  if (msg_engine == FALSE) {
    return PR_DECLINED(cmd);
  }

  /* If there are no messages pending for this process, be done now. */
  if (!msg_pending_list ||
      msg_pending_list->nelts == 0) {
    return PR_DECLINED(cmd);
  }

  /* Skip commands whose reply format is strictly proscribed. */

  /* XXX there are probably more commands to be skipped here */
  if (strcmp(cmd->argv[0], C_EPSV) == 0 ||
      strcmp(cmd->argv[0], C_PASV) == 0 ||
      strcmp(cmd->argv[0], C_STOU) == 0) {
    return PR_DECLINED(cmd);
  }

  /* Tack on any messages to this command. */
  msgs = (char **) msg_pending_list->elts;
  for (i = 0; i < msg_pending_list->nelts; i++) {
    pr_response_add(R_DUP, "%s", msgs[i]);
  }

  /* Clear the pending pool. */
  destroy_pool(msg_pending_pool);
  msg_pending_pool = NULL;
  msg_pending_list = NULL;

  return PR_DECLINED(cmd);
}

MODRET msg_post_err_any(cmd_rec *cmd) {
  register unsigned int i = 0;
  char **msgs;

  if (msg_engine == FALSE) {
    return PR_DECLINED(cmd);
  }

  /* If there are no messages pending for this process, be done now. */
  if (!msg_pending_list ||
      msg_pending_list->nelts == 0) {
    return PR_DECLINED(cmd);
  }

  /* Skip commands whose reply format is strictly proscribed. */

  /* XXX there are probably more commands to be skipped here */
  if (strcmp(cmd->argv[0], C_EPSV) == 0 ||
      strcmp(cmd->argv[0], C_PASV) == 0 ||
      strcmp(cmd->argv[0], C_STOU) == 0) {
    return PR_DECLINED(cmd);
  }

  /* Tack on any messages to this command. */
  msgs = (char **) msg_pending_list->elts;
  for (i = 0; i < msg_pending_list->nelts; i++) {
    pr_response_add_err(R_DUP, "%s", msgs[i]);
  }

  /* Clear the pending pool. */
  destroy_pool(msg_pending_pool);
  msg_pending_pool = NULL;
  msg_pending_list = NULL;

  return PR_DECLINED(cmd);
}

/* Event handlers
 */

static void msg_exit_ev(const void *event_data, void *user_data) {

  /* Remove the queue from the system.  We can only do this reliably
   * when the standalone daemon process exits; if it's an inetd process,
   * there may be other proftpd processes still running.
   */
  if (getpid() == mpid &&
      ServerType == SERVER_STANDALONE) {
    struct msqid_ds ds;

    if (msgctl(msg_qid, IPC_RMID, &ds) < 0 && errno != EINVAL)
      pr_log_debug(DEBUG1, MOD_MSG_VERSION ": error removing queue %d: %s",
        msg_qid, strerror(errno));
  }
}

static void msg_postparse_ev(const void *event_data, void *user_data) {
  config_rec *c;

  /* Open the MessageLog for the "server config" server here, if any, for
   * use for logging by the daemon process.
   */

  c = find_config(main_server->conf, CONF_PARAM, "MessageLog", FALSE);
  if (c) {
    const char *path = c->argv[0];

    if (strcasecmp(path, "none") != 0 &&
        pr_log_openfile(path, &msg_logfd, 0660) < 0) {
      pr_log_debug(DEBUG2, MOD_MSG_VERSION
        ": error opening MessageLog '%s': %s", path, strerror(errno));
      msg_logfd = -1;
    }
  }

  if (msg_queue_path)
    msg_queue_fh = pr_fsio_open(msg_queue_path, O_RDWR|O_CREAT);

  else
    errno = EINVAL;

  if (!msg_queue_fh) {
    (void) pr_log_writefile(msg_logfd, MOD_MSG_VERSION,
      "error opening MessageQueue: %s", strerror(errno));

  } else {
    msg_qid = msg_get_queue(msg_queue_path);
    if (msg_qid < 0)
      (void) pr_log_writefile(msg_logfd, MOD_MSG_VERSION,
        "error obtaining queue ID: %s", strerror(errno));
else
pr_log_debug(DEBUG0, MOD_MSG_VERSION ": obtained queue ID %d", msg_qid);
  }
}

static void msg_restart_ev(const void *event_data, void *user_data) {
  register unsigned int i;

  if (msg_pool)
    destroy_pool(msg_pool);

  msg_pool = make_sub_pool(permanent_pool);
  pr_pool_tag(msg_pool, MOD_MSG_VERSION);

  for (i = 0; msg_acttab[i].act_action; i++) {
    msg_acttab[i].act_acl = pcalloc(msg_pool, sizeof(ctrls_acl_t));
    ctrls_init_acl(msg_acttab[i].act_acl);
  }
}

static void msg_sigusr2_ev(const void *event_data, void *user_data) {

  /* Check the queue for any messages for us. */
  int res = msg_recv_msg();

  switch (res) {
    case -1:
      (void) pr_log_writefile(msg_logfd, MOD_MSG_VERSION,
        "error receiving messages for pid %u: %s", getpid(), strerror(errno));
      break;

    case 0:
      (void) pr_log_writefile(msg_logfd, MOD_MSG_VERSION,
        "received notice, no messages for pid %u", getpid());
      break;

    default:
      (void) pr_log_writefile(msg_logfd, MOD_MSG_VERSION,
        "received notice, read in %d %s for pid %u", res,
        res == 1 ? "message" : "messages", getpid());
  }
}

static void msg_startup_ev(const void *event_data, void *user_data) {
  int res;

  /* Make sure the process has an fd to the scoreboard. */
  PRIVS_ROOT
  res = pr_open_scoreboard(O_RDWR);
  PRIVS_RELINQUISH

  if (res < 0) {
    switch (res) {
      case PR_SCORE_ERR_BAD_MAGIC:
        pr_log_debug(DEBUG0, "error opening scoreboard: bad/corrupted file");
        break;

      case PR_SCORE_ERR_OLDER_VERSION:
        pr_log_debug(DEBUG0, "error opening scoreboard: bad version (too old)");
        break;

      case PR_SCORE_ERR_NEWER_VERSION:
        pr_log_debug(DEBUG0, "error opening scoreboard: bad version (too new)");
        break;

      default:
        pr_log_debug(DEBUG0, "error opening scoreboard: %s", strerror(errno));
        break;
    }
  }
}

/* Control handlers
 */

/* Handle the 'msg' action */
static int msg_handle_msg(pr_ctrls_t *ctrl, int reqargc, char **reqargv) {
  int res = 0, msg_errno = 0, msg_know_dst = FALSE, msg_sent = FALSE;

  if (!ctrls_check_acl(ctrl, msg_acttab, "msg")) {
    pr_ctrls_add_response(ctrl, "access denied");
    return -1;
  }

  /* Sanity check */
  if (reqargc == 0 || reqargv == NULL) {
    pr_ctrls_add_response(ctrl, "missing required parameters");
    return -1;
  }

  /* Handle 'msg user' requests. */
  if (strcmp(reqargv[0], "user") == 0) {
    register int i = 0;
    pr_scoreboard_entry_t *score = NULL;
    const char *user, *msgstr = "";
    size_t msglen;

    if (reqargc == 1) {
      pr_ctrls_add_response(ctrl, "msg user: missing required user name");
      return -1;
    }

    if (reqargc == 2) {
      pr_ctrls_add_response(ctrl, "msg user: missing required message");
      return -1;
    }

    user = reqargv[1];

    /* Concatenate the given message into a single string.  There may need to
     * be a maximum length on this strength, depending on the maximum msg
     * size allowed for SysV message queues.
     */
    for (i = 2; i < reqargc; i++) {
      msgstr = pstrcat(ctrl->ctrls_tmp_pool, msgstr, *msgstr ? " " : "",
        reqargv[i], NULL);
    }

    msglen = strlen(msgstr) + 1;

    if (msglen == 0) {
      pr_ctrls_add_response(ctrl, "zero length message not allowed");
      return -1;
    }

    if (msglen >= MSGMAX) {
      pr_ctrls_add_response(ctrl, "message exceeds maximum length (%u). "
        "Try sending smaller messages", MSGMAX);
      return -1;
    }

    /* Iterate through the scoreboard, looking for any sessions for the
     * given user.
     */
    if (pr_rewind_scoreboard() < 0) {
      (void) pr_log_writefile(msg_logfd, MOD_MSG_VERSION,
        "error rewinding scoreboard: %s", strerror(errno));
    }

    while ((score = pr_scoreboard_entry_read()) != NULL) {
      pr_signals_handle();

      if (strcmp(user, score->sce_user) == 0) {
        msg_know_dst = TRUE;

        if (msg_send_msg(score->sce_pid, msgstr) < 0) {
          msg_errno = errno;
          (void) pr_log_writefile(msg_logfd, MOD_MSG_VERSION,
            "error sending message to user '%s' (pid %u): %s", user,
            score->sce_pid, strerror(errno));

        } else {
          msg_sent = TRUE;
        }
      }
    }

    pr_restore_scoreboard();

  /* Handle 'msg host' requests. */
  } else if (strcmp(reqargv[0], "host") == 0) {
    register int i = 0;
    pr_scoreboard_entry_t *score = NULL;
    const char *addr, *msgstr = "";
    const pr_netaddr_t *na;

    if (reqargc == 1) {
      pr_ctrls_add_response(ctrl, "msg host: missing required host name");
      return -1;
    }

    if (reqargc == 2) {
      pr_ctrls_add_response(ctrl, "msg host: missing required message");
      return -1;
    }

    /* Concatenate the given message into a single string.  There may need to
     * be a maximum length on this strength, depending on the maximum msg
     * size allowed for SysV message queues.
     */
    for (i = 2; i < reqargc; i++) {
      msgstr = pstrcat(ctrl->ctrls_tmp_pool, msgstr, *msgstr ? " " : "",
        reqargv[i], NULL);
    }

    if (strlen(msgstr) >= MSGMAX) {
      pr_ctrls_add_response(ctrl, "message exceeds maximum length (%u). "
        "Try sending smaller messages", MSGMAX);
      return -1;
    }

    na = pr_netaddr_get_addr(ctrl->ctrls_tmp_pool, reqargv[1], NULL);
    if (!na) {
      pr_ctrls_add_response(ctrl, "msg host: error resolving '%s': %s",
        reqargv[1], strerror(errno));
      return -1;
    }

    addr = pr_netaddr_get_ipstr(na);

    /* Iterate through the scoreboard, looking for any sessions for the
     * given address.
     */
    if (pr_rewind_scoreboard() < 0) {
      (void) pr_log_writefile(msg_logfd, MOD_MSG_VERSION,
        "error rewinding scoreboard: %s", strerror(errno));
    }

    while ((score = pr_scoreboard_entry_read()) != NULL) {
      pr_signals_handle();

      if (strcmp(addr, score->sce_client_addr) == 0) {
        msg_know_dst = TRUE;

        if (msg_send_msg(score->sce_pid, msgstr) < 0) {
          msg_errno = errno;
          (void) pr_log_writefile(msg_logfd, MOD_MSG_VERSION,
            "error sending message to host '%s' (pid %u): %s", reqargv[1],
            score->sce_pid, strerror(errno));

        } else {
          msg_sent = TRUE;
        }
      }
    }

    pr_restore_scoreboard();

  /* Handle 'msg class' requests. */
  } else if (strcmp(reqargv[0], "class") == 0) {
    register int i = 0;
    pr_scoreboard_entry_t *score;
    const char *class = reqargv[1], *msgstr = "";

    if (reqargc == 1) {
      pr_ctrls_add_response(ctrl, "msg class: missing required class name");
      return -1;
    }

    if (reqargc == 2) {
      pr_ctrls_add_response(ctrl, "msg class: missing required message");
      return -1;
    }

    /* Concatenate the given message into a single string.  There may need to
     * be a maximum length on this strength, depending on the maximum msg
     * size allowed for SysV message queues.
     */
    for (i = 2; i < reqargc; i++) {
      msgstr = pstrcat(ctrl->ctrls_tmp_pool, msgstr, *msgstr ? " " : "",
        reqargv[i], NULL);
    }

    if (strlen(msgstr) >= MSGMAX) {
      pr_ctrls_add_response(ctrl, "message exceeds maximum length (%u). "
        "Try sending smaller messages", MSGMAX);
      return -1;
    }

    if (pr_rewind_scoreboard() < 0) {
      (void) pr_log_writefile(msg_logfd, MOD_MSG_VERSION,
        "error rewinding scoreboard: %s", strerror(errno));
    }

    while ((score = pr_scoreboard_entry_read()) != NULL) {
      pr_signals_handle();

      if (strcmp(score->sce_class, class) == 0) {
        msg_know_dst = TRUE;

        if (msg_send_msg(score->sce_pid, msgstr) < 0) {
          msg_errno = errno;
          (void) pr_log_writefile(msg_logfd, MOD_MSG_VERSION,
            "error sending message to class '%s' (pid %u): %s", reqargv[1],
            score->sce_pid, strerror(errno));

        } else {
          msg_sent = TRUE;
        }
      }
    }

    pr_restore_scoreboard();

  /* Handle 'msg all' requests. */
  } else if (strcmp(reqargv[0], "all") == 0) {
    register int i = 0;
    pr_scoreboard_entry_t *score;
    const char *msgstr = "";

    if (reqargc == 1) {
      pr_ctrls_add_response(ctrl, "msg all: missing required message");
      return -1;
    }

    /* Concatenate the given message into a single string.  There may need to
     * be a maximum length on this strength, depending on the maximum msg
     * size allowed for SysV message queues.
     */
    for (i = 1; i < reqargc; i++) {
      msgstr = pstrcat(ctrl->ctrls_tmp_pool, msgstr, *msgstr ? " " : "",
        reqargv[i], NULL);
    }

    if (strlen(msgstr) >= MSGMAX) {
      pr_ctrls_add_response(ctrl, "message exceeds maximum length (%u). "
        "Try sending smaller messages", MSGMAX);
      return -1;
    }

    if (pr_rewind_scoreboard() < 0) {
      (void) pr_log_writefile(msg_logfd, MOD_MSG_VERSION,
        "error rewinding scoreboard: %s", strerror(errno));
    }

    msg_know_dst = TRUE;
    while ((score = pr_scoreboard_entry_read()) != NULL) {
      pr_signals_handle();

      if (msg_send_msg(score->sce_pid, msgstr) < 0) {
        msg_errno = errno;
        (void) pr_log_writefile(msg_logfd, MOD_MSG_VERSION,
          "error sending message to all (pid %lu): %s",
          (unsigned long) score->sce_pid, strerror(errno));

      } else {
        msg_sent = TRUE;
      }
    }

    pr_restore_scoreboard();

  } else {
    pr_ctrls_add_response(ctrl, "unknown msg type requested: '%s'",
      reqargv[0]);
    return -1;
  }

  if (msg_sent)
    pr_ctrls_add_response(ctrl, "message sent");

  else if (!msg_know_dst)
    pr_ctrls_add_response(ctrl, "unable to send message: "
      "no such client connected");

  else
    pr_ctrls_add_response(ctrl, "error sending message: %s",
      strerror(msg_errno));

  return res;
}

/* Initialization functions
 */

static int msg_init(void) {
  register unsigned int i;

  msg_pool = make_sub_pool(permanent_pool);
  pr_pool_tag(msg_pool, MOD_MSG_VERSION);

  for (i = 0; msg_acttab[i].act_action; i++) {
    msg_acttab[i].act_acl = pcalloc(msg_pool, sizeof(ctrls_acl_t));
    ctrls_init_acl(msg_acttab[i].act_acl);

    if (pr_ctrls_register(&msg_module, msg_acttab[i].act_action,
        msg_acttab[i].act_desc, msg_acttab[i].act_cb) < 0)
      pr_log_pri(PR_LOG_INFO, MOD_MSG_VERSION
        ": error registering '%s' control: %s",
        msg_acttab[i].act_action, strerror(errno));
  }

  pr_event_register(&msg_module, "core.exit", msg_exit_ev, NULL);
  pr_event_register(&msg_module, "core.postparse", msg_postparse_ev, NULL);
  pr_event_register(&msg_module, "core.restart", msg_restart_ev, NULL);
  pr_event_register(&msg_module, "core.startup", msg_startup_ev, NULL);

  return 0;
}

static int msg_sess_init(void) {
  config_rec *c;

  /* If there was an error opening the MessageQueue, force the module to
   * be inoperative.  We'd much rather not operate without the MessageQueue.
   */
  if (!msg_queue_fh) {
    msg_engine = FALSE;
    (void) pr_log_writefile(msg_logfd, MOD_MSG_VERSION,
      "missing required MessageQueue, disabling module");
    return 0;
  }

  /* If we don't have the qid, it's pointless to continue further. */
  if (msg_qid < 0) {
    (void) pr_log_writefile(msg_logfd, MOD_MSG_VERSION,
      "missing required queue ID, disabling module");
    return 0;
  }

  c = find_config(main_server->conf, CONF_PARAM, "MessageEngine", FALSE);
  if (c &&
      *((unsigned char *) c->argv[0]) == TRUE)
    msg_engine = TRUE;

  if (!msg_engine)
    return 0;

  pr_event_register(&msg_module, "core.signal.USR2", msg_sigusr2_ev, NULL);
  pr_event_unregister(&msg_module, "core.exit", msg_exit_ev);

  return 0;
}

static ctrls_acttab_t msg_acttab[] = {
  { "msg",	"send messages to connected clients",	NULL,	msg_handle_msg},
  { NULL, NULL, NULL, NULL }
};

/* Module API tables
 */

static conftable msg_conftab[] = {
  { "MessageControlsACLs",	set_msgctrlsacls,	NULL },
  { "MessageEngine",		set_msgengine,		NULL },
  { "MessageLog",		set_msglog,		NULL },
  { "MessageQueue",		set_msgqueue,		NULL },
  { NULL }
};

static cmdtable msg_cmdtab[] = {
  { POST_CMD,		C_ANY,	G_NONE,	msg_post_any,		FALSE,	FALSE },
  { POST_CMD_ERR,	C_ANY,	G_NONE,	msg_post_err_any,	FALSE,	FALSE },
  { 0, NULL }
};

module msg_module = {
  NULL, NULL,

  /* Module API version 2.0 */
  0x20,

  /* Module name */
  "msg",

  /* Module configuration handler table */
  msg_conftab,

  /* Module command handler table */
  msg_cmdtab,

  /* Module authentication handler table */
  NULL,

  /* Module initialization function */
  msg_init,

  /* Session initialization function */
  msg_sess_init
};