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
|
/***********************************************************************
* *
* This software is part of the ast package *
* Copyright (c) 1985-2010 AT&T Intellectual Property *
* and is licensed under the *
* Common Public License, Version 1.0 *
* by AT&T Intellectual Property *
* *
* A copy of the License is available at *
* http://www.opensource.org/licenses/cpl1.0.txt *
* (with md5 checksum 059e8cd6165cb4c31e351f2b69388fd9) *
* *
* Information and Software Systems Research *
* AT&T Research *
* Florham Park NJ *
* *
* Glenn Fowler <gsf@research.att.com> *
* David Korn <dgk@research.att.com> *
* Phong Vo <kpv@research.att.com> *
* *
***********************************************************************/
#include "sfhdr.h"
/* Change the file descriptor
**
** Written by Kiem-Phong Vo.
*/
#if __STD_C
static int _sfdup(int fd, int newfd)
#else
static int _sfdup(fd,newfd)
int fd;
int newfd;
#endif
{
reg int dupfd;
#ifdef F_DUPFD /* the simple case */
while((dupfd = sysfcntlf(fd,F_DUPFD,newfd)) < 0 && errno == EINTR)
errno = 0;
return dupfd;
#else /* do it the hard way */
if((dupfd = sysdupf(fd)) < 0 || dupfd >= newfd)
return dupfd;
/* dup() succeeded but didn't get the right number, recurse */
newfd = _sfdup(fd,newfd);
/* close the one that didn't match */
CLOSE(dupfd);
return newfd;
#endif
}
#if __STD_C
int sfsetfd(Sfio_t* f, int newfd)
#else
int sfsetfd(f,newfd)
Sfio_t *f;
int newfd;
#endif
{
reg int oldfd;
SFMTXDECL(f);
SFMTXENTER(f, -1);
if(f->flags&SF_STRING)
SFMTXRETURN(f, -1);
if((f->mode&SF_INIT) && f->file < 0)
{ /* restoring file descriptor after a previous freeze */
if(newfd < 0)
SFMTXRETURN(f, -1);
}
else
{ /* change file descriptor */
if((f->mode&SF_RDWR) != f->mode && _sfmode(f,0,0) < 0)
SFMTXRETURN(f, -1);
SFLOCK(f,0);
oldfd = f->file;
if(oldfd >= 0)
{ if(newfd >= 0)
{ if((newfd = _sfdup(oldfd,newfd)) < 0)
{ SFOPEN(f,0);
SFMTXRETURN(f, -1);
}
CLOSE(oldfd);
}
else
{ /* sync stream if necessary */
if(((f->mode&SF_WRITE) && f->next > f->data) ||
(f->mode&SF_READ) || f->disc == _Sfudisc)
{ if(SFSYNC(f) < 0)
{ SFOPEN(f,0);
SFMTXRETURN(f, -1);
}
}
if(((f->mode&SF_WRITE) && f->next > f->data) ||
((f->mode&SF_READ) && f->extent < 0 &&
f->next < f->endb) )
{ SFOPEN(f,0);
SFMTXRETURN(f, -1);
}
#ifdef MAP_TYPE
if((f->bits&SF_MMAP) && f->data)
{ SFMUNMAP(f,f->data,f->endb-f->data);
f->data = NIL(uchar*);
}
#endif
/* make stream appears uninitialized */
f->endb = f->endr = f->endw = f->data;
f->extent = f->here = 0;
f->mode = (f->mode&SF_RDWR)|SF_INIT;
f->bits &= ~SF_NULL; /* off /dev/null handling */
}
}
SFOPEN(f,0);
}
/* notify changes */
if(_Sfnotify)
(*_Sfnotify)(f, SF_SETFD, (void*)((long)newfd));
f->file = newfd;
SFMTXRETURN(f,newfd);
}
|