summaryrefslogtreecommitdiffstats
path: root/winsup
Commit message (Collapse)AuthorAgeFilesLines
* * cygcheck.cc (dump_sysinfo): Evaluate and print state ofCorinna Vinschen2009-01-292-0/+18
| | | | obcaseinsensitive kernel flag.
* * fhandler.cc (fhandler_base::wait_overlapped): Set bytes to -1 on EINTR orChristopher Faylor2009-01-273-4/+15
| | | | | | | | real error. (fhandler_base::write_overlapped): Assume that bytes_written will contain proper error value. * pipe.cc (fhandler_pipe::fhandler_pipe): Set uninterruptible_io since signals are handled by pipe functions now.
* * shared.cc (shared_name): New function for WCHAR names.Corinna Vinschen2009-01-264-16/+34
| | | | | | | | (open_shared): Take name parameter as WCHAR. Accommodate throughout. * shared_info.h ((CURR_SHARED_MAGIC): Redefine. (shared_name): Add declaration for function taking a WCHAR name. (open_shared): Change declaration according to above change. * pinfo.cc (pinfo::init) : Accommodate above change.
* * grp.cc (getgrgid_r): Simplify code by using stpcpy.Corinna Vinschen2009-01-263-52/+35
| | | | | | (getgrnam_r): Ditto. * passwd.cc (getpwuid_r32): Simplify code by using stpcpy. (getpwnam_r): Ditto.
* * uinfo.cc (pwdgrp::load): Open file with FILE_OPEN_FOR_BACKUP_INTENTCorinna Vinschen2009-01-262-1/+8
| | | | flag.
* * mount.cc (mount_info::from_fstab): Open fstab file withCorinna Vinschen2009-01-242-1/+8
| | | | FILE_OPEN_FOR_BACKUP_INTENT flag.
* * pathnames.sgml: Add requirement for world-readability of specialCorinna Vinschen2009-01-242-0/+11
| | | | /etc files.
* * pathnames.sgml: Add section about accessing /etc files.Corinna Vinschen2009-01-242-2/+44
|
* * smallprint.cc (__small_vsprintf): Use already available buffer tmpCorinna Vinschen2009-01-232-8/+10
| | | | in wfillin case.
* * select.cc (peek_serial): Add hack to allow proper operation with com0comChristopher Faylor2009-01-222-0/+9
| | | | driver.
* ChangeLog:Corinna Vinschen2009-01-2124-2353/+2563
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * configure.in: Remove --enable-server option. Allways add the cygserver directory to $SUBDIRS. * configure: Regenerate. cygwin/ChangeLog: Remove USE_SERVER define. Accommodate throughout. * configure.in: Remove --enable-server option. * configure: Regenerate. * environ.cc: Remove CYGWIN=server setting. cygserver/ChangeLog: * client.cc (allow_server): Remove variable. (client_request_get_version::client_request_get_version): Drop checking allow_server. utils/ChangeLog: * passwd.c: Remove CYGWIN=server requirement from usage text. doc/ChangeLog: * cygserver.sgml: Remove the "How to use the Cygserver services" section. * cygwinenv.sgml: Move "(no)server" to the removed options section. * faq-programming.xml: Remove CYGWIN=server requirement for running the Cygwin testsuite. * ntsec.sgml: Ditto for using `passwd -R'.
* * fhandler_procnet.cc: Reorganize global procnet content data into aCorinna Vinschen2009-01-205-39/+43
| | | | | | | | new struct virt_tab_t. Accommodate throughout. * fhandler.h: Fix copyright dates. * fhandler_process.cc: Ditto. * fhandler_registry.cc: Ditto.
* * devices.h (FH_PROCESSFD): New device type.Corinna Vinschen2009-01-2010-324/+445
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * dtable.cc (build_fh_pc): Add case for FH_PROCESSFD. * fhandler.h (class fhandler_virtual): Drop bufalloc member. * fhandler_virtual.h: New header. * fhandler_proc.cc: Remove types proc_type_t and proc_tab_t in favor of types virt_type_t and virt_tab_t from fhandler_virtual.h. Change prototypes of format_XXX functions accordingly. (proc_tab): Drop size member info. (fhandler_proc::fill_filebuf): Don't allocate filebuf here. Allocate it in the format_XXX functions. * fhandler_process.cc: Reorganize global process content data into a new struct virt_tab_t. Accommodate throughout. (format_process_winexename): New function. (format_process_winpid): New function. (format_process_exename): New function. (format_process_root): New function. (format_process_cwd): New function. (format_process_cmdline): New function. (format_process_ppid): New function. (format_process_uid): New function. (format_process_pgid): New function. (format_process_sid): New function. (format_process_gid): New function. (format_process_ctty): New function. (format_process_fd): New function. * fhandler_procnet.cc (fhandler_procnet::fill_filebuf): Don't use bufalloc. * fhandler_registry.cc (fhandler_registry::fill_filebuf): Define bufalloc locally. * fhandler_virtual.cc (fhandler_virtual::fhandler_virtual): Drop initialization of bufalloc. (fhandler_virtual::dup): Drop copying bufalloc.
* * thread.h (struct pthread_rwlock::RWLOCK_READER): Add counter n.Corinna Vinschen2009-01-203-4/+26
| | | | | | | | * thread.cc (pthread_rwlock::rdlock): If a thread already owns a read lock, just count the number of locks for it, per SUSv4. (pthread_rwlock::tryrdlock): Ditto. (pthread_rwlock::unlock): If a thread has more than one concurrent read locks, just count down.
* * autoload.cc (WSAIoctl): Reintroduce.Corinna Vinschen2009-01-207-65/+177
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | (WSASendMsg): Define. * fhandler.h (class fhandler_socket): Change definition of recv_internal and send_internal to take WSAMSG pointer as parameter. * fhandler_socket.cc (WSAID_WSARECVMSG): Define. (LPFN_WSARECVMSG): Define. (WSASendMsg): Declare. (get_ext_funcptr): New function to fetch address of WSARecvMsg. (fhandler_socket::recv_internal): Take just a LPWSAMSG parameter. Change code accordingly. If control information is requested, fetch address of WSARecvMsg and use that instead of WSARecvFrom. (fhandler_socket::recvfrom): Change return type to ssize_t as declared in fhandler.h. Accommodate changes to recv_internal. (fhandler_socket::recvmsg): Ditto. Make sure that control information is only requested if system, address family, and socket type support it. (fhandler_socket::send_internal): Take just a LPWSAMSG parameter and the flags. Change code accordingly. If control information is provided, use WSASendMsg instead of WSASendTo. (fhandler_socket::sendto): Drop useless comment. Accommodate changes to send_internal. (fhandler_socket::sendmsg): Ditto. Make sure that control information is only provided if system, address family, and socket type support it. * wincap.h (wincaps::has_recvmsg): New element. (wincaps::has_sendmsg): New element * wincap.cc: Implement above elements throughout. * include/cygwin/socket.h (CMSG_ALIGN): Phrase in terms of alignment of type struct cmsghdr.
* * include/winbase.h (enum _DEP_SYSTEM_POLICY_TYPE): Fix version guard.Corinna Vinschen2009-01-192-1/+5
|
* Remove conflict marker.Andreas Schwab2009-01-191-46/+45
|
* * mmap.cc (mmap64): Fix condition checking if anonymous mapping beyondCorinna Vinschen2009-01-172-1/+8
| | | | EOF is required.
* 2009-01-11 Henry Nestler <henry@bigfoot.de>Chris Sutcliffe2009-01-172-4/+10
| | | | | * lib/ddk/ntoskrnl.def: Enable ZwQueryEaFile, ZwSetEaFile, NtQueryEaFile, NtSetEaFile.
* * Makefile.in: Fix copyright date.Corinna Vinschen2009-01-173-19/+28
| | | | | | | | * cygcheck.cc (scan_registry): Take additional parameter and add code to avoid recursion in Wow6432Node subkey. Rename variable cygnus to cygwin. Scan for "Cygwin" instead of for "cygnus" substring. (dump_sysinfo): Drop unused calls to scan_registry. Drop scanning HKEY_CURRENT_CONFIG.
* * fhandler_proc.cc: Reorganize global proc content data into a newCorinna Vinschen2009-01-173-139/+104
| | | | | | | | | | struct proc_tab_t. Accommodate throughout. (format_proc_version): New function. (format_proc_loadavg): New function. (format_proc_self): New function. * resource.cc (getrlimit): Return correct rlim_max value for RLIMIT_NOFILE.
* * Fix copyright dates.Corinna Vinschen2009-01-167-6/+11
|
* * cygcheck.cc (dump_sysinfo): Raise size of osname. Add Windows 7Corinna Vinschen2009-01-162-32/+60
| | | | | and Windows 2008 R2 as recognized OSes. Update products array to the latest documented list.
* * libc/getopt.c (parse_long_options): Use fix from NetBSD's getoptCorinna Vinschen2009-01-132-9/+24
| | | | to avoid false ambiguities.
* * syscalls.cc (enum bin_status): New type.Corinna Vinschen2009-01-122-41/+123
| | | | | | | | | | | (try_to_bin): Return bin_status. Rename win32_path to pc. Rename h to fh. Rename fh to tmp_fh. Add code to set delete dispostion and more code to replace file moved to bin by another, temporary file. Add comments to explain why. (unlink_nt): Replace move_to_bin with bin_stat. Only set bin_stat to move_to_bin for non-remote files. As a last resort, call try_to_bin if setting delete-on-close failed. Only re-set R/O DOS attribute and only close handle if it's still valid.
* * errno.cc (errmap): Set errno to ENOENT instead of ENOSHARE throughout.Corinna Vinschen2009-01-113-7/+15
| | | | | | | * path.cc (path_conv::check): Set to and check for ENOENT instead of ENOSHARE. * path.cc (symlink_info::check): Fix Samba 3.2.x comment.
* 2009-01-10 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>Chris Sutcliffe2009-01-102-3/+6
| | | | * include/_mingw.h: Increment version to 3.15.2.
* * mount.cc (mount_info::from_fstab_line): Always convert driveCorinna Vinschen2009-01-093-24/+34
| | | | | | | | | letter in native path to uppercase. * path.cc (normalize_win32_path): Ditto. (path_prefix_p): Revert previous patch. * path.cc (symlink_info::check): Check for STATUS_INVALID_PARAMETER return code to circumvent weird behaviour of Samba 3.2.x shares.
* * include/sys/cygwin.h (CW_SETERRNO): Define.Christopher Faylor2009-01-097-7/+39
| | | | | | | | | * external.cc (CW_SETERRNO): Implement. * include/cygwin/version.h: Bump CYGWIN_VERSION_API_MINOR to 192 to reflect the above change. * path.cc (path_prefix_p): Treat X: as equivalent to x:. * mkglobals_h: Remove unneeded #define. * spawn.cc (spawn_guts): Avoid overly wordy initialization to zero.
* * ldd.cc: New file. First stab at implementing ldd-like functionality forChristopher Faylor2009-01-093-1/+275
| | | | | | Cygwin. * Makefile.in (CYGWIN_BINS): Add ldd. (ldd.exe): Use -lpsapi.
* * libc/fts.c (fts_build): Use DT_DIR case on Cygwin.Corinna Vinschen2009-01-082-3/+10
| | | | | (fts_ufslinks): Fix using wrong structure member in Cygwin-specific code.
* * ntdll.h: Reorder NT status flags. Fix a case difference. AddCorinna Vinschen2009-01-073-15/+57
| | | | | | | | | | STATUS_CANNOT_DELETE flag. * syscalls.cc (unlink_nt): Change initial NtOpenFile to request FILE_SHARE_DELETE sharing mode. Change comment accordingly. If setting delete disposition failed with STATUS_CANNOT_DELETE, try to delete using delete-on-close. Explain why. Rearrange setting R/O DOS attribute after trying to delete. Simplify comment.
* * fhandler_disk_file.cc (fhandler_disk_file::link): Only add .exe ifCorinna Vinschen2009-01-073-1/+11
| | | | | | original file has .exe as well. * path.cc (path_conv::is_binary): Only recognize Windows 32 and 64 bit apps as binaries.
* * include/winbase.h (SCS_64BIT_BINARY): Define.Corinna Vinschen2009-01-072-0/+5
|
* * cygcheck.cc (dump_sysinfo_services): Quote the path for popen.Pierre Humblet2009-01-062-1/+5
|
* Fix MinGW-Bug [2445962]; (reported by Keishi Suenaga).Keith Marshall2009-01-043-2/+51
|
* * Makefile.in (CFLAGS): Look in cygwin's build directory for header files.Christopher Faylor2009-01-032-2/+7
|
* correctChristopher Faylor2009-01-031-2/+2
|
* Remove unneeded header files from source files throughout. Update copyrightsChristopher Faylor2009-01-0359-308/+410
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | where appropriate. * globals.cc: New file for generic global variables. * mkglobals_h: New file to generate globals.h. * mkstatic: New Script used to build a (currently non-working) static libcygwin_s.a. * Makefile.in: Add unused rule to build a non-working libcygwin_s.a. (DLL_OFILES): Add globals.o. Make all objects rely on globals.h. (globals.h): New target. Generate globals.h. * cygtls.h: Honor new CYGTLS_HANDLE define to control when the HANDLE operator is allowed in _cygtls. * dcrt0.cc: Move most globals to globals.cc. * init.cc: Ditto. * environ.cc (strip_title_path): Remove now-unneeded extern. * fhandler_serial.cc (fhandler_serial::open): Ditto. * pinfo.cc: Ditto. (commune_process): Ditto. * shared.cc: Ditto. * glob.cc: Ditto. * strace.cc: Ditto. * exceptions.cc: Define CYGTLS_HANDLE before including winsup.h. * path.cc (stat_suffixes): Move here. * security.h: Add forward class path_conv declaration. * smallprint.cc (__small_vsprintf): Make a true c++ function. (__small_sprintf): Ditto. (small_printf): Ditto. (console_printf): Ditto. (__small_vswprintf): Ditto. (__small_swprintf): Ditto. * spawn.cc (spawn_guts): Remove _stdcall decoration in favor of regparm. (hExeced): Move to globals.cc * strfuncs.cc (current_codepage): Ditto. (active_codepage): Ditto. * sync.cc (lock_process::locker): Move here from dcrt0.cc. * syscalls.cc (stat_suffixes): Move to path.cc. * tty.cc (tty::create_master): Uncapitalize fatal warning for consistency. * winsup.h: Include globals.h to declare most of the grab bag list of globals which were previously defined here. * mount.h: Move USER_* defines back to shared_info.h. * speclib: Force temporary directory cleanup.
* Year-end rollover.Christopher Faylor2009-01-032-3342/+3341
|
* * speclib: Rewrite completely in perl. Avoid multiple nm calls.Christopher Faylor2009-01-022-51/+94
|
* * include/cygwin/version.h: Bump CYGWIN_VERSION_API_MINOR to 191.Christopher Faylor2008-12-312-1/+6
|
* * glob_pattern_p.cc: New file.Christopher Faylor2008-12-316-16/+53
| | | | | | * Makefile.in (DLL_OFILES): Add glob_pattern_p.o. * glob.h: Add declaration for glob_pattern_p. * pinfo.cc (pinfo::thisproc): Remove __stdcall attribute.
* Correct mishandling of invalid characters in printf() format specs.Keith Marshall2008-12-312-4/+22
|
* * include/bits/wordsize.h: New linux-compatibility header.Christopher Faylor2008-12-312-0/+10
|
* * cygcheck.cc (pretty_id): Quote the path for popen.Pierre Humblet2008-12-312-5/+11
| | | | (dump_sysinfo_services): Ditto.
* * exceptions.cc (try_to_debug): Avoid creating a huge buffer on the stack.Christopher Faylor2008-12-302-3/+7
|
* * mount.cc: Change comment.Christopher Faylor2008-12-256-334/+365
| | | | | | | | | | | | (smb_extended_info): Move here from path.cc. (fs_info::update): Ditto. (mount_info::create_root_entry): Delay conversion to slashes and use passed in buffer to figure out fs type. * path.cc (smb_extended_info): Move. (fs_info::update): Ditto. * mount.h: New file. Move mount information here. * path.h: (fs_info::update): Move. * shared_info.h (mount_item): Ditto.
* * path.cc (symlink_info::check_shortcut): Ensure that symlink handle is closedChristopher Faylor2008-12-242-2/+6
| | | | on successful return.
* * fhandler.h (fhandler_base_setup_overlapped): Add new argument.Christopher Faylor2008-12-234-143/+55
| | | | | | | | | | | | | | | | | | | | | | | (fhandler_base::get_overlapped_buffer): Declare new function. (fhandler_base::set_overlapped): Ditto. (fhandler_pipe::overlapped): New variable. (fhandler_pipe::get_overlapped): Rework to return contents of overlapped variable. (fhandler_pipe::set_overlapped): Set overlapped variable based on argument. (fhandler_fifo::get_overlapped_buffer): Return pointer to io_status. * fhandler.cc (handler_base::setup_overlapped): Set to overlapped pointer to NULL if new doit parameter is false. Otherwise set up overlapped event as usual. (fhandler_base::wait_overlapped): Return inres if this isn't an overlapped operation. (fhandler_base::read_overlapped): Remove inappropriate asserts. * pipe.cc (fhandler_pipe::fhandler_pipe): Zero overlapped element. (struct pipesync): Delete. (getov_result): Ditto. (pipe_handler): Ditto. (pipesync::pipesync): Ditto. (fhandler_pipe::init): Don't set up pipesync thread. Just pass opened_properly flag along to overlapped setup.