Update contrib.
2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
27 #include <sys/select.h>
29 #include <sys/types.h>
31 #include "ipcclient.h"
33 #include <sys/socket.h>
36 #include <commdbconnpref.h>
41 _LIT(KEstlibInit, "STDLIBS-INIT");
43 _LIT(KFDTransferSvr,"FDTrnsfrSvr");
44 //Forward declaration for references below
46 class CFileDesTransferServer;
47 class RFileDesTransferSession;
49 /* TODO: We don't have to do this in CFileTable. Move to methods */
50 class CFileSocketDesc;
62 // The underlying data for a TProcessId is a TUint64. GCC raises an error if this is intialised to a negative value. Consider changing for all platforms.
63 TChild(TInt aFid = -1, TProcessId aPid = 0) : iFid(aFid), iPid(aPid)
65 TChild(TInt aFid = -1, TProcessId aPid = -1) : iFid(aFid), iPid(aPid)
72 // The underlying data for a TProcessId is a TUint64. GCC raises an error if this is intialised to a negative value. Consider changing for all platforms.
73 TChild(RProcess &aProc, TProcessId aFid = 0) : iProc(aProc), iFid(aFid)
75 TChild(RProcess &aProc, TProcessId aFid = -1) : iProc(aProc), iFid(aFid)
82 static TBool MatchByFid(const TChild& aChild1, const TChild& aChild2)
84 if (aChild1.iFid == aChild2.iFid)
91 static TBool MatchByPid(const TChild& aChild1, const TChild& aChild2)
93 if (aChild1.iPid == aChild2.iPid)
107 void StorePtrs(RHeap* aHeap, RFs* aFs, RSocketServ* aSs, RCommServ* aCs, RFastLock* aSsLock, RFastLock* aCsLock)
136 class TFileTableCleanup
139 void SaveUserHeap(RHeap* aHeap)
146 User::SwitchHeap(iUserHeap);
154 class CFileTable: public CBase
163 TInt Init(RHeap* aHeap = NULL);
165 void Default(CFileDescBase* aRedirMedia, CFileDescBase* aStdErrMedia);
167 TInt Attach(TInt aFid, CFileDescBase* aFile);
168 TInt Detach(TInt aFid, CFileDescBase*& aDetached);
169 TInt At(TInt aFid, CFileDescBase*& aFound) const;
170 TInt Reserve(TInt aFids[3]);
171 TInt Detach(TInt aFids[3]);
173 int dup (int fid, int& anErrno);
174 int dup2 (int fid1, int fid2, int& anErrno);
175 int open (const wchar_t* name, int mode, int perms, int& anErrno);
176 int close (int fid, int& anErrno);
178 int UserClose (int fid, int& anErrno);
180 int lseek (int fid, int offset, int whence, int& anErrno);
181 int fstat (int fid, struct stat* st, int& anErrno);
182 int socket (int family, int style, int protocol, int& anErrno, RSocketServ& aSs);
183 int listen (int fd, int n, int& anErrno);
184 int bind (int fd, TSockAddr& address, int& anErrno);
185 int sockname (int fd, TSockAddr& address, int anEnd, int& anErrno);
186 int getsockopt (int fd, int level, int opt, void* buf, unsigned long* len, int& anErrno);
187 int setsockopt (int fd, int level, int opt, void* buf, unsigned long len, int& anErrno);
188 int ioctlcomplete (int fid, int cmd, void* param, TRequestStatus& aStatus, int& anErrno);
189 int ioctlcancel (int fid, int& anErrno);
190 int fcntl (int aFid, int aCmd, long anArg, int& anErrno);
192 TInt Asynch (int fid, CFileDescBase*& aFile);
194 int popen (const wchar_t* file, const wchar_t* cmd,const char* mode, int& anErrno);
195 int pclose (int aFid, int& anErrno);
196 int popen3 (const wchar_t *file, const wchar_t *cmd, wchar_t** envp, int fids[3], int& anErrno);
197 int system (const wchar_t* aCmd, const wchar_t* aCmdArg, int& anErrno);
198 int waitpid (int pid, int* status, int options, int& anErrno);
200 int posix_spawn (int* pid, const wchar_t* wpath,
201 const posix_spawn_file_actions_t* file_actions,
202 const posix_spawnattr_t* attrp,
203 const wchar_t* wargs, wchar_t** wenvp);
205 void TransferToChild (RProcess& child, TInt aFds[], TInt aWhich, TInt aSlot);
206 void PassEnvToChild (RProcess& child, wchar_t** aEnvp);
207 void PassFileActionsToChild (RProcess& child,
208 const posix_spawn_file_actions_t* aFileActions);
210 void CheckOrigins (wchar_t**& wenvp, int& aCount);
211 TInt InheritFiles(CFileDesTransferServer* server);
212 int pipe (int fildes[2], int& anErrno);
213 int mkfifo (const wchar_t *pathname, mode_t mode, int& anErrno, RFs& aFs);
214 int CreatePipeDesc (int fildes, RPipe& aHandle, TUint16 aMode = 0);
215 void ClosePipe (int fds[2], int& err);
217 static CFileDescBase* FifoOpen (const wchar_t* pathName, mode_t mode, int perms, int& anErrno);
218 int link (const wchar_t *oldpathName, const wchar_t *newpathName, int& anErrno, RFs& aFs);
219 static CFileDescBase* LinkOpen (const wchar_t* pathName, mode_t mode, int perms, int& anErrno, RFs& aFs);
220 int unlink (RFs& aFs, const wchar_t *pathName, int& anErrno);
221 static CFileDescBase* FileSocketOpen(int& anErrno);
222 int BindFileSocket(int fid, const struct sockaddr_un* addr, int& anErrno, RFs& aFs);
223 int AcceptFileSocket(CFileSocketDesc* pfs, const struct sockaddr_un* addr, int& anErrno, RFs& aFs);
224 int ConnectFileSocket(int fid, const struct sockaddr_un* addr, int& anErrno, RFs& aFs);
226 TInt RConnectionCount();
227 TInt RConnectionAt (TInt aRcIndex, RConnection *&aRc);
228 TInt AddRConnectionPtr (RConnection *aRc, TInt &aRcIndex);
229 void RemoveRConnectionPtrAt (TInt aRcIndex);
230 void DeleteRConnectionList();
232 CFileDesTransferServer* NewFDTransferServerL(RSemaphore &sem);
233 void StartFDTransferServer(CFileDesTransferServer* pServer);
234 void CloseFDTransferServer(CFileDesTransferServer* pServer);
236 int SetEcho(int aFd, TUint8 aEcho, int& aErrno);
238 void DoTransferAll(RSemaphore &sem,TDesC& name);
239 TInt GetFileCount() const
241 return iFids.Count();
255 TFileTableCleanup iCleanup;
256 CArrayPtrSeg<CFileDescBase> iFids;
259 // invoked by both dup2 and fcntl with F_DUPFD
260 TInt Dup2(TInt aFid, TInt aFid2, TBool aCloseFid2);
262 TInt DupFd(TInt aFid1, TInt aFid2);
263 void Release(TInt aFid);
265 //Lock for protecting FIDs across threads
268 //stores pids of all children of this process
269 RArray<TChild> iChildren;
271 //Methods to manipulate iChildren
272 void AddChild(const TChild& aChild);
273 void RemoveChild(TInt aIdx);
275 void ExpandFTableL(TInt count);
277 const RArray<TChild>& GetChildren() const
282 TInt FindChild(const TInt aFid) const
284 return iChildren.Find(TChild(aFid),
285 TIdentityRelation<TChild>(TChild::MatchByFid));
288 TInt FindChild(const TProcessId aPid) const
290 return iChildren.Find(TChild(-1, aPid),
291 TIdentityRelation<TChild>(TChild::MatchByPid));
294 CArrayPtrSeg<RConnection> iRConnectionList;
295 //Lock for protecting iRConnectionList across threads
298 // A pointer to the private heap
300 friend class CFileDesTransferSession;
304 class PosixFilesystem
310 static wchar_t* getcwd (RFs& aFs, wchar_t* buf, unsigned long len, int& anErrno);
311 static int chdir (RFs& aFs, const wchar_t* path, int& anErrno);
312 static int mkdir (RFs& aFs, const wchar_t* path, int perms, int& anErrno);
313 static int rmdir (RFs& aFs, const wchar_t* path, int& anErrno);
314 static int chmod (RFs& aFs, const wchar_t* path, int perms, int& anErrno);
315 static int reg_unlink (RFs& aFs, const wchar_t* path, int& anErrno);
316 static int stat (RFs& aFs, const wchar_t* name, struct stat* st, int& anErrno);
317 static int rename (RFs& aFs, const wchar_t* oldname, const wchar_t* newname, int& anErrno);
318 static TInt ResolvePath (RFs& aFs, TParse& aResult, const wchar_t* path, TDes* aFilename);
319 static TInt SetDefaultDir (RFs& aFs);
320 static int utime (RFs& aFs, const wchar_t* name, const struct utimbuf* filetimes, int& anErrno);
324 class TAccessPointRecord
328 TBuf<KCommsDbSvrMaxColumnNameLength> iName;
332 TBuf<KCommsDbSvrMaxColumnNameLength> iServiceType;
334 TBuf<KCommsDbSvrMaxColumnNameLength> iBearerType;
336 TUint32 iNetworkWeighting;
339 TAccessPointRecord();
343 NONSHARABLE_CLASS(CLocalSystemInterface) : public CBase
351 IMPORT_C CLocalSystemInterface();
352 IMPORT_C ~CLocalSystemInterface();
354 #ifdef __SYMBIAN_COMPILE_UNUSED__
355 CLocalSystemInterface& Clone();
357 void TerminateProcess(int status);
358 #endif //__SYMBIAN_COMPILE_UNUSED__
360 int AddToDirList(DIR *aDir);
361 int RemoveDirFromList(DIR* aDir);
362 int FindInDirList(DIR* aDir);
366 int dup (int fid, int& anErrno);
367 int dup2 (int fid, int fid2, int& anErrno);
368 int open (const wchar_t* name, int mode, int perms, int& anErrno);
369 int read (int fid, char* buf, unsigned long len, int& anErrno);
370 int write (int fid, const char* buf, unsigned long len, int& anErrno);
371 int fsync (int fid, int& anErrno);
372 int close (int fid, int& anErrno);
373 int lseek (int fid, int offset, int whence, int& anErrno);
374 int fstat (int fid, struct stat* st, int& anErrno);
375 int ioctl (int fid, int cmd, void* param, int& anErrno);
376 int ioctl (int fid, int cmd, void* param, TRequestStatus& aStatus, int& anErrno);
377 int ioctl_complete (int fid, int cmd, void* param, TRequestStatus& aStatus, int& anErrno);
379 #ifdef __SYMBIAN_COMPILE_UNUSED__
380 int ioctl_cancel (int fid, int& anErrno);
381 #endif //__SYMBIAN_COMPILE_UNUSED__
383 wchar_t* getcwd (wchar_t* buf, unsigned long len, int& anErrno);
385 int chdir (const wchar_t* path, int& anErrno);
386 int mkdir (const wchar_t* path, int perms, int& anErrno);
387 int rmdir (const wchar_t* path, int& anErrno);
388 int chmod (const wchar_t* path, int perms, int& anErrno);
389 int stat (const wchar_t* name, struct stat* st, int& anErrno);
390 int rename (const wchar_t* oldname, const wchar_t* newname, int& anErrno);
392 IMPORT_C TInt ResolvePath (TParse& aResult, const wchar_t* path, TDes* aFilename);
393 int socket (int family, int style, int protocol, int& anErrno);
394 int recvfrom (int fd, char* buf, unsigned long cnt, int flags, struct sockaddr* from, unsigned long* fromsize, int& anErrno);
395 int sendto (int fd, const char* buf, unsigned long cnt, int flags, struct sockaddr* to, unsigned long tosize, int& anErrno);
396 int shutdown (int fd, int how, int& anErrno);
397 int listen (int fd, int n, int& anErrno);
398 int accept (int fd, struct sockaddr *addr, size_t *size, int& anErrno);
399 int bind (int fd, const struct sockaddr* addr, unsigned long size, int& anErrno);
400 int connect (int fd, const struct sockaddr* addr, unsigned long size, int& anErrno);
401 int sockname (int fd, struct sockaddr* addr, unsigned long* size, int anEnd, int& anErrno);
402 int getsockopt (int fd, int level, int opt, void* buf, unsigned long* len, int& anErrno);
403 int setsockopt (int fd, int level, int opt, void* buf, unsigned long len, int& anErrno);
405 int popen3 (const wchar_t *file, const wchar_t *cmd, wchar_t** envp, int fids[3], int& anErrno);
406 int waitpid (int pid, int* status, int options, int& anErrno);
408 int fcntl (int aFid, int aCmd, long anArg, int& anErrno);
409 int utime (const wchar_t* name, const struct utimbuf* filetimes, int& anErrno);
411 int popen (const wchar_t* file, const wchar_t* cmd, const char* mode, int& anErrno);
412 int pclose (int aFid, int& anErrno);
413 IMPORT_C void CheckOrigins (wchar_t**& wenvp, int& aCount);
415 int pipe (int fildes[2], int& anErrno );
416 int mkfifo (const wchar_t *pathname, mode_t mode, int& anErrno);
417 int link (const wchar_t *oldpathName, const wchar_t *newpathName, int& anErrno );
418 int unlink (const wchar_t *pathName, int& anErrno );
420 int select (int maxfd, fd_set* readfds,fd_set* writefds,fd_set* exceptfds, struct timeval* tvptr, int& anErrno);
422 int system (const wchar_t* aCmd, const wchar_t* aCmdArg, int& anErrno );
423 const wchar_t* GetDirName (int aFid);
424 IMPORT_C int Truncate (int aFid, int anOffset, int& anErrno);
425 int fchmod (int fd , mode_t perms, int& anErrno);
427 int posix_spawn (int* pid, const wchar_t* wpath,
428 const posix_spawn_file_actions_t* file_actions,
429 const posix_spawnattr_t* attrp,
430 const wchar_t* wargs, wchar_t** wenvp);
432 int SetEcho(int aFd, TUint8 aEcho, int& aErrno);
434 //Set the default interface for network operations
435 int setdefaultif(const struct ifreq* aIfReq);
437 IMPORT_C CFileDescBase* GetDesc(int aFid);
439 // functions returning session to File Server
440 IMPORT_C RFs& FileSession();
441 RCommServ& CommServSession();
442 RSocketServ& SockServSession();
444 //Dynamic Memory related APIs
445 IMPORT_C void* Alloc(size_t aNBytes);
446 IMPORT_C void* ReAlloc(void* aPtr, size_t aNBytes);
447 IMPORT_C void Free(void* aPtr);
448 IMPORT_C void* AllocTLD(TInt aSize);
450 //Return the private Heap memory
451 IMPORT_C RHeap* Heap();
453 //Return the Comms Server Lock
454 RFastLock& CommsSessionLock();
456 //Return reference to file table
457 const CFileTable& FileTable() const;
459 //Get the default connection (RConnection) instance
460 RConnection& GetDefaultConnection();
462 static void WaitForNRequest(TRequestStatus aStatusArray[], TInt aNum);
465 //Helper function to read a record from the IAP table
466 void ReadRecordFromIapTableL(CCommsDbTableView* aView, TAccessPointRecord &aRecord);
467 //Get the connection preferences from an IAP name
468 TInt GetConnectionPreferencesL(TBuf<KCommsDbSvrMaxColumnNameLength> aIapName,
469 TCommDbConnPref &aConnPref);
472 // NOTE: iCleanup should be the first member of CLSI, since iPrivateHeap
473 // will be destroyed from within iCleanup destructor.
474 TCLSICleanup iCleanup;
482 //Lock for protecting Socket Session across threads
484 //Lock for protecting Comms Session across threads
487 //Private Heap which will be used by the library for all memory allocation
491 const static TInt KDirGran = 2;
492 RPointerArray<TAny> iOpenDirList;
495 const static TInt KTLDInfoListGran = 4;
496 const static TInt KPtrsGran = 2;
498 //Thread-TLS pointers mapping
502 TTLDInfo(TThreadId id, TAny* ptr) : iTid(id), iPtrs(CLocalSystemInterface::KPtrsGran)
506 void Close(RHeap* pHeap)
508 TInt nptrs = iPtrs.Count();
509 for (TInt j = 0; j < nptrs; ++j)
511 pHeap->Free(iPtrs[j]);
516 RPointerArray<TAny> iPtrs;
519 //Array of Thread-TLS pointers mappings
520 RArray<TTLDInfo> iTLDInfoList;
522 //Protect the array from concurrent access
523 RFastLock iTLDListLock;
525 //The default connection to be used for all network apis.
526 RConnection iDefConnection;
531 friend class RFileDesTransferSession;
536 * Return global backend object to libraries
538 IMPORT_C CLocalSystemInterface* Backend();
543 // LIBC-BACKEND specific Symbian Error Codes
544 const TInt KErrMaxFdOpened = -1025;
545 const TInt KErrDirectoryOpen = -1026;
549 // Directory enumeration
551 NONSHARABLE_STRUCT(__EPOC32_WDIR) : public CBase // aka "class __EPOC32_WDIR with everything public"
558 TInt Open(const TDesC& aPath);
559 TInt Open(const wchar_t *_path,int*);
560 virtual TInt UpdateNarrow();
563 TInt iIndex; // counting down, 0 means "finished"
564 struct wdirent iCurrent;
566 TBuf16<KMaxFileName> iCurrentName;
567 /* *****************************************************************
568 Overloading new and delete operators so that they will
569 allocate and deallocare memory from/to the private heap of backend
570 ********************************************************************/
571 inline TAny* operator new(TUint aSize, TAny* aBase) __NO_THROW
573 Mem::FillZ(aBase, aSize); return aBase;
576 inline TAny* operator new(TUint aSize) __NO_THROW
578 return Backend()->Alloc(aSize);
581 inline TAny* operator new(TUint aSize, TLeave)
583 TAny* ptr = Backend()->Alloc(aSize);
586 User::Leave(KErrNoMemory);
591 inline TAny* operator new(TUint aSize, TUint aExtraSize) __NO_THROW
593 return Backend()->Alloc(aSize + aExtraSize);
596 inline TAny* operator new(TUint aSize, TLeave, TUint aExtraSize)
598 TAny* ptr = Backend()->Alloc(aSize + aExtraSize);
601 User::Leave(KErrNoMemory);
606 inline void operator delete(TAny *aPtr) __NO_THROW
608 Backend()->Free( aPtr );
612 NONSHARABLE_STRUCT(__EPOC32_DIR) : public __EPOC32_WDIR
618 virtual TInt UpdateNarrow();
619 struct dirent iCurrentNarrow;
620 TBuf8<KMaxFileName> iCurrentNarrowName;
623 NONSHARABLE_STRUCT (_iconv_t)
629 class TUSockAddr : public TSockAddr
631 Utility class for converting struct sockaddr to and from EPOC32 TSockAddr
636 TUSockAddr() : TSockAddr(), iError(0) {}
638 TUSockAddr(TAny* addr); // constructor form of Prepare
639 IMPORT_C TUSockAddr(const TAny* addr, TUint len); // constructor form of Set
641 void Prepare(TAny* addr);
642 void Set(const TAny* addr, TUint len);
644 IMPORT_C void Get(TAny* addr, unsigned long* len);
646 TInt iError; // To store error status of TUSockAddr functions, refers errno.h. Notebly not Symbian error codes.