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
|
/* splcmd.c
Spool a command.
Copyright (C) 1991, 1992, 1993, 1995, 2002 Ian Lance Taylor
This file is part of the Taylor UUCP package.
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
The author of the program may be contacted at ian@airs.com.
*/
#include "uucp.h"
#include "uudefs.h"
#include "uuconf.h"
#include "sysdep.h"
#include "system.h"
#include <errno.h>
#include <ctype.h>
/* Given a set of commands to execute for a remote system, create a
command file holding them. This creates a single command file
holding all the commands passed in. It returns a jobid. */
char *
zsysdep_spool_commands (qsys, bgrade, ccmds, pascmds, pftemp)
const struct uuconf_system *qsys;
int bgrade;
int ccmds;
const struct scmd *pascmds;
boolean *pftemp;
{
char abtempfile[sizeof "TMP1234567890"];
char *ztemp;
FILE *e;
int i;
const struct scmd *qcmd;
char *z;
char *zjobid;
if (pftemp != NULL)
*pftemp = TRUE;
#if DEBUG > 0
if (! UUCONF_GRADE_LEGAL (bgrade))
ulog (LOG_FATAL, "Bad grade %d", bgrade);
#endif
/* Write the commands into a temporary file and then rename it to
avoid a race with uucico reading the file. */
sprintf (abtempfile, "TMP%010lx", (unsigned long) getpid ());
ztemp = zsfind_file (abtempfile, qsys->uuconf_zname, bgrade);
if (ztemp == NULL)
return NULL;
e = esysdep_fopen (ztemp, FALSE, FALSE, TRUE);
if (e == NULL)
{
ubuffree (ztemp);
return NULL;
}
for (i = 0, qcmd = pascmds; i < ccmds; i++, qcmd++)
{
boolean fquote;
const struct scmd *q;
struct scmd squoted;
fquote = fcmd_needs_quotes (qcmd);
if (! fquote)
q = qcmd;
else
{
uquote_cmd (qcmd, &squoted);
q = &squoted;
}
switch (q->bcmd)
{
case 'S':
fprintf (e, "S %s %s %s -%s %s 0%o %s\n", q->zfrom, q->zto,
q->zuser, q->zoptions, q->ztemp, q->imode,
q->znotify == NULL ? (const char *) "" : q->znotify);
break;
case 'R':
fprintf (e, "R %s %s %s -%s\n", q->zfrom, q->zto, q->zuser,
q->zoptions);
break;
case 'X':
fprintf (e, "X %s %s %s -%s\n", q->zfrom, q->zto, q->zuser,
q->zoptions);
break;
case 'E':
fprintf (e, "E %s %s %s -%s %s 0%o %s 0 %s\n", q->zfrom, q->zto,
q->zuser, q->zoptions, q->ztemp, q->imode,
q->znotify, q->zcmd);
break;
default:
ulog (LOG_ERROR,
"zsysdep_spool_commands: Unrecognized type %d",
q->bcmd);
(void) fclose (e);
(void) remove (ztemp);
ubuffree (ztemp);
if (pftemp != NULL)
*pftemp = FALSE;
return NULL;
}
if (fquote)
ufree_quoted_cmd (&squoted);
}
if (! fstdiosync (e, ztemp))
{
(void) fclose (e);
(void) remove (ztemp);
ubuffree (ztemp);
return NULL;
}
if (fclose (e) != 0)
{
ulog (LOG_ERROR, "fclose: %s", strerror (errno));
(void) remove (ztemp);
ubuffree (ztemp);
return NULL;
}
/* The filename returned by zscmd_file is subject to some unlikely
race conditions, so keep trying the link until the destination
file does not already exist. Each call to zscmd_file should
return a file name which does not already exist, so we don't have
to do anything special before calling it again. */
while (TRUE)
{
z = zscmd_file (qsys, bgrade);
if (z == NULL)
{
(void) remove (ztemp);
ubuffree (ztemp);
return NULL;
}
if (link (ztemp, z) >= 0)
break;
if (errno != EEXIST)
{
ulog (LOG_ERROR, "link (%s, %s): %s", ztemp, z, strerror (errno));
(void) remove (ztemp);
ubuffree (ztemp);
ubuffree (z);
return NULL;
}
ubuffree (z);
}
(void) remove (ztemp);
ubuffree (ztemp);
zjobid = zsfile_to_jobid (qsys, z, bgrade);
if (zjobid == NULL)
(void) remove (z);
ubuffree (z);
return zjobid;
}
|